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