class Prism::Location

def pretty_print(q)

Implement the pretty print interface for Location.
def pretty_print(q)
  q.text("(#{start_line},#{start_column})-(#{end_line},#{end_column})")
end