Class: SyntaxTree::StringDVar
Overview
StringDVar represents shorthand interpolation of a variable into a string. It allows you to take an instance variable, class variable, or global variable and omit the braces when interpolating.
"#@variable"
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#variable ⇒ Object
readonly
- Backref | VarRef
-
the variable being interpolated.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(variable:, location:, comments: []) ⇒ StringDVar
constructor
A new instance of StringDVar.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(variable:, location:, comments: []) ⇒ StringDVar
Returns a new instance of StringDVar.
8350 8351 8352 8353 8354 |
# File 'lib/syntax_tree/node.rb', line 8350 def initialize(variable:, location:, comments: []) @variable = variable @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
8348 8349 8350 |
# File 'lib/syntax_tree/node.rb', line 8348 def comments @comments end |
#variable ⇒ Object (readonly)
- Backref | VarRef
-
the variable being interpolated
8345 8346 8347 |
# File 'lib/syntax_tree/node.rb', line 8345 def variable @variable end |
Instance Method Details
#accept(visitor) ⇒ Object
8356 8357 8358 |
# File 'lib/syntax_tree/node.rb', line 8356 def accept(visitor) visitor.visit_string_dvar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
8360 8361 8362 |
# File 'lib/syntax_tree/node.rb', line 8360 def child_nodes [variable] end |
#deconstruct_keys(_keys) ⇒ Object
8366 8367 8368 |
# File 'lib/syntax_tree/node.rb', line 8366 def deconstruct_keys(_keys) { variable: variable, location: location, comments: comments } end |
#format(q) ⇒ Object
8370 8371 8372 8373 8374 |
# File 'lib/syntax_tree/node.rb', line 8370 def format(q) q.text('#{') q.format(variable) q.text("}") end |