Class: SyntaxTree::Backref

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

Overview

Backref represents a global variable referencing a matched value. It comes in the form of a $ followed by a positive integer.

$1

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ Backref

Returns a new instance of Backref.



1220
1221
1222
1223
1224
# File 'lib/syntax_tree/node.rb', line 1220

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



1218
1219
1220
# File 'lib/syntax_tree/node.rb', line 1218

def comments
  @comments
end

#valueObject (readonly)

String

the name of the global backreference variable



1215
1216
1217
# File 'lib/syntax_tree/node.rb', line 1215

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



1226
1227
1228
# File 'lib/syntax_tree/node.rb', line 1226

def accept(visitor)
  visitor.visit_backref(self)
end

#child_nodesObject Also known as: deconstruct



1230
1231
1232
# File 'lib/syntax_tree/node.rb', line 1230

def child_nodes
  []
end

#deconstruct_keys(keys) ⇒ Object



1236
1237
1238
# File 'lib/syntax_tree/node.rb', line 1236

def deconstruct_keys(keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



1240
1241
1242
# File 'lib/syntax_tree/node.rb', line 1240

def format(q)
  q.text(value)
end