class Prism::CallTargetNode

def call_operator_loc

^
foo.bar = 1

Represents the location of the call operator.
def call_operator_loc
  location = @call_operator_loc
  return location if location.is_a?(Location)
  @call_operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end