Method: WebIDL::Ast::Dictionary#initialize
- Defined in:
- lib/webidl/ast/dictionary.rb
#initialize(parent, name) ⇒ Dictionary
Returns a new instance of Dictionary.
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/webidl/ast/dictionary.rb', line 15 def initialize(parent, name) super(parent) @name = name @members = [] @inherits = [] @implements = [] @extended_attributes = [] @partial = false end |