class Prism::Translation::Parser::Compiler

def visit_match_predicate_node(node)

^^^^^^^^^^
foo in bar
def visit_match_predicate_node(node)
  builder.match_pattern_p(
    visit(node.value),
    token(node.operator_loc),
    within_pattern { |compiler| node.pattern.accept(compiler) }
  )
end