class Prism::Translation::Parser::Compiler

def visit_call_target_node(node)

^^^^^^^
foo.bar, = 1
def visit_call_target_node(node)
  call_operator_loc = node.call_operator_loc
  builder.attr_asgn(
    visit(node.receiver),
    call_operator_loc.nil? ? nil : [{ "." => :dot, "&." => :anddot, "::" => "::" }.fetch(call_operator_loc.slice), srange(call_operator_loc)],
    token(node.message_loc)
  )
end