class Prism::DotVisitor

def location_inspect(location)

Inspect a location to display the start and end line and column numbers.
def location_inspect(location)
  "(#{location.start_line},#{location.start_column})-(#{location.end_line},#{location.end_column})"
end