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
Constructor Details
#initialize(variable:, location:, comments: []) ⇒ StringDVar
Returns a new instance of StringDVar.
8065 8066 8067 8068 8069 |
# File 'lib/syntax_tree/node.rb', line 8065 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
8063 8064 8065 |
# File 'lib/syntax_tree/node.rb', line 8063 def comments @comments end |
#variable ⇒ Object (readonly)
- Backref | VarRef
-
the variable being interpolated
8060 8061 8062 |
# File 'lib/syntax_tree/node.rb', line 8060 def variable @variable end |
Instance Method Details
#accept(visitor) ⇒ Object
8071 8072 8073 |
# File 'lib/syntax_tree/node.rb', line 8071 def accept(visitor) visitor.visit_string_dvar(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
8075 8076 8077 |
# File 'lib/syntax_tree/node.rb', line 8075 def child_nodes [variable] end |
#deconstruct_keys(keys) ⇒ Object
8081 8082 8083 |
# File 'lib/syntax_tree/node.rb', line 8081 def deconstruct_keys(keys) { variable: variable, location: location, comments: comments } end |
#format(q) ⇒ Object
8085 8086 8087 8088 8089 |
# File 'lib/syntax_tree/node.rb', line 8085 def format(q) q.text('#{') q.format(variable) q.text("}") end |