Class: SQLParser::Statement::Identifier
- Defined in:
- lib/rossoc/statement.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name) ⇒ Identifier
constructor
A new instance of Identifier.
Methods inherited from Node
Constructor Details
#initialize(name) ⇒ Identifier
351 352 353 |
# File 'lib/rossoc/statement.rb', line 351 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
355 356 357 |
# File 'lib/rossoc/statement.rb', line 355 def name @name end |