Class: RubyParserStuff::Keyword::KWtable

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby_parser_extras.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, id = [], state = nil) ⇒ KWtable

Returns a new instance of KWtable.



1106
1107
1108
1109
1110
# File 'lib/ruby_parser_extras.rb', line 1106

def initialize(name, id=[], state=nil)
  @name  = name
  @id0, @id1 = id
  @state = state
end

Instance Attribute Details

#id0Object

Returns the value of attribute id0.



1105
1106
1107
# File 'lib/ruby_parser_extras.rb', line 1105

def id0
  @id0
end

#id1Object

Returns the value of attribute id1.



1105
1106
1107
# File 'lib/ruby_parser_extras.rb', line 1105

def id1
  @id1
end

#nameObject

Returns the value of attribute name.



1105
1106
1107
# File 'lib/ruby_parser_extras.rb', line 1105

def name
  @name
end

#stateObject

Returns the value of attribute state.



1105
1106
1107
# File 'lib/ruby_parser_extras.rb', line 1105

def state
  @state
end