class SyntaxTree::Backtick

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

def ===(other)

def ===(other)
  other.is_a?(Backtick) && value === other.value
end

def accept(visitor)

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

def child_nodes

def child_nodes
  []
end

def copy(value: nil, location: nil)

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

def deconstruct_keys(_keys)

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

def format(q)

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

def initialize(value:, location:)

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