# File lib/types/array.rb, line 50
      def initialize(type, elements=nil, descriptor=nil)
        @type, @descriptor = type, descriptor
        raise ArgumentError, "no type specified for array" if @type.nil?
        super elements if elements
      end