class SyntaxTree::Backtick
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.
Attributes
value[R]
- String
-
the backtick in the string
Public Class Methods
new(value:, location:)
click to toggle source
# File lib/syntax_tree/node.rb, line 1685 def initialize(value:, location:) @value = value @location = location @comments = [] end
Public Instance Methods
===(other)
click to toggle source
# File lib/syntax_tree/node.rb, line 1720 def ===(other) other.is_a?(Backtick) && value === other.value end
accept(visitor)
click to toggle source
# File lib/syntax_tree/node.rb, line 1691 def accept(visitor) visitor.visit_backtick(self) end
child_nodes()
click to toggle source
# File lib/syntax_tree/node.rb, line 1695 def child_nodes [] end
Also aliased as: deconstruct
copy(value: nil, location: nil)
click to toggle source
# File lib/syntax_tree/node.rb, line 1699 def copy(value: nil, location: nil) node = Backtick.new( value: value || self.value, location: location || self.location ) node.comments.concat(comments.map(&:copy)) node end
deconstruct_keys(_keys)
click to toggle source
# File lib/syntax_tree/node.rb, line 1712 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end
format(q)
click to toggle source
# File lib/syntax_tree/node.rb, line 1716 def format(q) q.text(value) end