Class: SyntaxTree::StringDVar

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

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

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#pretty_print, #to_json

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

#commentsObject (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

#variableObject (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_nodesObject 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