Method: SyntaxTree::Backtick#pretty_print

Defined in:
lib/syntax_tree.rb

#pretty_print(q) ⇒ Object



2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
# File 'lib/syntax_tree.rb', line 2099

def pretty_print(q)
  q.group(2, "(", ")") do
    q.text("backtick")

    q.breakable
    q.pp(value)

    q.pp(Comment::List.new(comments))
  end
end