Class: SyntaxTree::Backtick

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

Overview

Backtick represents the use of the ‘ operator. It’s usually found being used for an XStringLiteral, but could also be found as the name of a method being defined.

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

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

Returns a new instance of Backtick.



1372
1373
1374
1375
1376
# File 'lib/syntax_tree/node.rb', line 1372

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



1370
1371
1372
# File 'lib/syntax_tree/node.rb', line 1370

def comments
  @comments
end

#valueObject (readonly)

String

the backtick in the string



1367
1368
1369
# File 'lib/syntax_tree/node.rb', line 1367

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



1378
1379
1380
# File 'lib/syntax_tree/node.rb', line 1378

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

#child_nodesObject Also known as: deconstruct



1382
1383
1384
# File 'lib/syntax_tree/node.rb', line 1382

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



1388
1389
1390
# File 'lib/syntax_tree/node.rb', line 1388

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

#format(q) ⇒ Object



1392
1393
1394
# File 'lib/syntax_tree/node.rb', line 1392

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