Class: Stark::Parser::AST::ConstIdentifier

Inherits:
Node
  • Object
show all
Defined in:
lib/stark/raw_parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ ConstIdentifier

Returns a new instance of ConstIdentifier.



371
372
373
# File 'lib/stark/raw_parser.rb', line 371

def initialize(value)
  @value = value
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



374
375
376
# File 'lib/stark/raw_parser.rb', line 374

def value
  @value
end