Class: SyntaxTree::EmbExprBeg

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

Overview

EmbExprBeg represents the beginning token for using interpolation inside of a parent node that accepts string content (like a string or regular expression).

"Hello, #{person}!"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value:, location:) ⇒ EmbExprBeg

Returns a new instance of EmbExprBeg.



5237
5238
5239
5240
# File 'lib/syntax_tree.rb', line 5237

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

Instance Attribute Details

#locationObject (readonly)

Location

the location of this node



5235
5236
5237
# File 'lib/syntax_tree.rb', line 5235

def location
  @location
end

#valueObject (readonly)

String

the #{ used in the string



5232
5233
5234
# File 'lib/syntax_tree.rb', line 5232

def value
  @value
end