Class: RubyParserStuff::Keyword::KWtable
- Inherits:
-
Object
- Object
- RubyParserStuff::Keyword::KWtable
- Defined in:
- lib/ruby_parser_extras.rb
Instance Attribute Summary collapse
-
#id0 ⇒ Object
Returns the value of attribute id0.
-
#id1 ⇒ Object
Returns the value of attribute id1.
-
#name ⇒ Object
Returns the value of attribute name.
-
#state ⇒ Object
Returns the value of attribute state.
Instance Method Summary collapse
-
#initialize(name, id = [], state = nil) ⇒ KWtable
constructor
A new instance of KWtable.
Constructor Details
#initialize(name, id = [], state = nil) ⇒ KWtable
Returns a new instance of KWtable.
1705 1706 1707 1708 1709 |
# File 'lib/ruby_parser_extras.rb', line 1705 def initialize(name, id=[], state=nil) @name = name @id0, @id1 = id @state = state end |
Instance Attribute Details
#id0 ⇒ Object
Returns the value of attribute id0.
1704 1705 1706 |
# File 'lib/ruby_parser_extras.rb', line 1704 def id0 @id0 end |
#id1 ⇒ Object
Returns the value of attribute id1.
1704 1705 1706 |
# File 'lib/ruby_parser_extras.rb', line 1704 def id1 @id1 end |
#name ⇒ Object
Returns the value of attribute name.
1704 1705 1706 |
# File 'lib/ruby_parser_extras.rb', line 1704 def name @name end |
#state ⇒ Object
Returns the value of attribute state.
1704 1705 1706 |
# File 'lib/ruby_parser_extras.rb', line 1704 def state @state end |