Class: SyntaxTree::EmbVar
Overview
EmbVar represents the use of shorthand interpolation for an instance, class, or global variable into a parent node that accepts string content (like a string or regular expression).
"#@variable"
In the example above, an EmbVar node represents the # because it forces
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the # used in the string.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
-
#initialize(value:, location:) ⇒ EmbVar
constructor
A new instance of EmbVar.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ EmbVar
Returns a new instance of EmbVar.
4252 4253 4254 4255 |
# File 'lib/syntax_tree/node.rb', line 4252 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the # used in the string
4250 4251 4252 |
# File 'lib/syntax_tree/node.rb', line 4250 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
4257 4258 4259 |
# File 'lib/syntax_tree/node.rb', line 4257 def accept(visitor) visitor.visit_embvar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4261 4262 4263 |
# File 'lib/syntax_tree/node.rb', line 4261 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
4267 4268 4269 |
# File 'lib/syntax_tree/node.rb', line 4267 def deconstruct_keys(_keys) { value: value, location: location } end |