Sha256: b3ea5ce98a93376c577e3e3d98e35b00bdc26bb655fad6fb3f63c61374e3a881

Contents?: true

Size: 364 Bytes

Versions: 23

Compression:

Stored size: 364 Bytes

Contents

module WebIDL
  module Ast
    class Module < Node

      attr_reader :name
      attr_accessor :extended_attributes, :definitions

      def initialize(parent, name)
        @parent              = parent
        @name                = name
        @definitions         = []
        @extended_attributes = []
      end

    end # Attribute
  end # Ast
end # WebIDL

Version data entries

23 entries across 23 versions & 1 rubygems

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