2021-06-29 23:28:22 -04:00
|
|
|
module ErrorHighlight
|
|
|
|
class DefaultFormatter
|
2021-10-26 22:25:58 -04:00
|
|
|
def self.message_for(spot)
|
2021-06-29 23:28:22 -04:00
|
|
|
# currently only a one-line code snippet is supported
|
|
|
|
if spot[:first_lineno] == spot[:last_lineno]
|
2021-07-13 03:47:35 -04:00
|
|
|
indent = spot[:snippet][0...spot[:first_column]].gsub(/[^\t]/, " ")
|
|
|
|
marker = indent + "^" * (spot[:last_column] - spot[:first_column])
|
2021-06-29 23:28:22 -04:00
|
|
|
|
|
|
|
"\n\n#{ spot[:snippet] }#{ marker }"
|
|
|
|
else
|
|
|
|
""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.formatter
|
2021-10-26 22:25:58 -04:00
|
|
|
Ractor.current[:__error_highlight_formatter__] || DefaultFormatter
|
2021-06-29 23:28:22 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.formatter=(formatter)
|
2021-10-26 22:25:58 -04:00
|
|
|
Ractor.current[:__error_highlight_formatter__] = formatter
|
2021-06-29 23:28:22 -04:00
|
|
|
end
|
|
|
|
end
|