Sha256: 9035279a50a6f79bca74abe7db47fc99fa8cc17c691dc2891f7fc93b963c31da

Contents?: true

Size: 250 Bytes

Versions: 23

Compression:

Stored size: 250 Bytes

Contents

module WebIDL
  module Ast
    class TypeDef < Node

      attr_reader :type, :name

      def initialize(parent, type, name)
        @parent = parent
        @type   = type
        @name   = name
      end

    end # TypeDef
  end # Ast
end # WebIDL

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
webidl-0.0.3 lib/webidl/ast/typedef.rb
webidl-0.0.2 lib/webidl/ast/typedef.rb
webidl-0.0.1 lib/webidl/ast/typedef.rb