Class: SyntaxTree::SymBeg

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

Overview

SymBeg represents the beginning of a symbol literal.

:symbol

SymBeg is also used for dynamic symbols, as in:

:"symbol"

Finally, SymBeg is also used for symbols using the %s syntax, as in:

s[symbol]

The value of this node is a string. In most cases (as in the first example above) it will contain just “:”. In the case of dynamic symbols it will contain “:‘” or “:"”. In the case of %s symbols, it will contain the start of the symbol including the %s and the delimiter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value:, location:) ⇒ SymBeg

Returns a new instance of SymBeg.



10942
10943
10944
10945
# File 'lib/syntax_tree.rb', line 10942

def initialize(value:, location:)
  @value = value
  @location = location
end

Instance Attribute Details

#locationObject (readonly)

Location

the location of this node



10940
10941
10942
# File 'lib/syntax_tree.rb', line 10940

def location
  @location
end

#valueObject (readonly)

String

the beginning of the symbol



10937
10938
10939
# File 'lib/syntax_tree.rb', line 10937

def value
  @value
end