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.



1704
1705
1706
1707
1708
# File 'lib/ruby_parser_extras.rb', line 1704

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

Instance Attribute Details

#id0Object

Returns the value of attribute id0.



1703
1704
1705
# File 'lib/ruby_parser_extras.rb', line 1703

def id0
  @id0
end

#id1Object

Returns the value of attribute id1.



1703
1704
1705
# File 'lib/ruby_parser_extras.rb', line 1703

def id1
  @id1
end

#nameObject

Returns the value of attribute name.



1703
1704
1705
# File 'lib/ruby_parser_extras.rb', line 1703

def name
  @name
end

#stateObject

Returns the value of attribute state.



1703
1704
1705
# File 'lib/ruby_parser_extras.rb', line 1703

def state
  @state
end