Class: SyntaxTree::EmbExprEnd
- Inherits:
-
Node
- Object
- Node
- SyntaxTree::EmbExprEnd
show all
- Defined in:
- lib/syntax_tree/node.rb
Overview
EmbExprEnd represents the ending 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
Attributes inherited from Node
#location
Instance Method Summary
collapse
Methods inherited from Node
#construct_keys, #end_char, #format, #pretty_print, #start_char, #to_json, #to_mermaid
Constructor Details
#initialize(value:, location:) ⇒ EmbExprEnd
Returns a new instance of EmbExprEnd.
5080
5081
5082
5083
|
# File 'lib/syntax_tree/node.rb', line 5080
def initialize(value:, location:)
@value = value
@location = location
end
|
Instance Attribute Details
#value ⇒ Object
- String
-
the } used in the string
5078
5079
5080
|
# File 'lib/syntax_tree/node.rb', line 5078
def value
@value
end
|
Instance Method Details
#===(other) ⇒ Object
5106
5107
5108
|
# File 'lib/syntax_tree/node.rb', line 5106
def ===(other)
other.is_a?(EmbExprEnd) && value === other.value
end
|
#accept(visitor) ⇒ Object
5085
5086
5087
|
# File 'lib/syntax_tree/node.rb', line 5085
def accept(visitor)
visitor.visit_embexpr_end(self)
end
|
#child_nodes ⇒ Object
Also known as:
deconstruct
5089
5090
5091
|
# File 'lib/syntax_tree/node.rb', line 5089
def child_nodes
[]
end
|
#copy(value: nil, location: nil) ⇒ Object
5093
5094
5095
5096
5097
5098
|
# File 'lib/syntax_tree/node.rb', line 5093
def copy(value: nil, location: nil)
EmbExprEnd.new(
value: value || self.value,
location: location || self.location
)
end
|
#deconstruct_keys(_keys) ⇒ Object
5102
5103
5104
|
# File 'lib/syntax_tree/node.rb', line 5102
def deconstruct_keys(_keys)
{ value: value, location: location }
end
|