class Prism::Translation::Parser::Compiler

def visit_yield_node(node)

^^^^^^^
yield 1

^^^^^
yield
def visit_yield_node(node)
  builder.keyword_cmd(
    :yield,
    token(node.keyword_loc),
    token(node.lparen_loc),
    visit(node.arguments) || [],
    token(node.rparen_loc)
  )
end