diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-01-19 19:38:12 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-01-19 19:38:29 -0800 |
| commit | 0538b869be2af79f19d21dfe51d8a24d4fe7eb61 (patch) | |
| tree | 3152e53b57d4c938279e8c150227a74ada54a9f4 | |
| parent | 6ffd38b5117f00339a5da04c1a5d0c5092e42d3c (diff) | |
Added error line column to error messages.
| -rw-r--r-- | pretty_errors.lua | 2 | ||||
| -rw-r--r-- | pretty_errors.moon | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pretty_errors.lua b/pretty_errors.lua index afb1793..addb42b 100644 --- a/pretty_errors.lua +++ b/pretty_errors.lua @@ -25,7 +25,7 @@ format_error = function(err) else pointer = (" "):rep(err_linepos + #fmt_str:format(0) - 1) .. "⬆" end - local err_msg = "\027[33;41;1m" .. tostring(err.title or "Error") .. " at " .. tostring(err.filename or '???') .. ":" .. tostring(err_linenum) .. "\027[0m" + local err_msg = "\027[33;41;1m" .. tostring(err.title or "Error") .. " at " .. tostring(err.filename or '???') .. ":" .. tostring(err_linenum) .. "," .. tostring(err_linepos) .. "\027[0m" for i = err_linenum - context, err_linenum - 1 do do local line = string2.line(err.source, i) diff --git a/pretty_errors.moon b/pretty_errors.moon index dcffae2..e83f0fb 100644 --- a/pretty_errors.moon +++ b/pretty_errors.moon @@ -23,7 +23,7 @@ format_error = (err)-> (" ")\rep(err_linepos+#fmt_str\format(0)-1).."╚#{("═")\rep(err_size-2)}╝" else (" ")\rep(err_linepos+#fmt_str\format(0)-1).."⬆" - err_msg = "\027[33;41;1m#{err.title or "Error"} at #{err.filename or '???'}:#{err_linenum}\027[0m" + err_msg = "\027[33;41;1m#{err.title or "Error"} at #{err.filename or '???'}:#{err_linenum},#{err_linepos}\027[0m" for i=err_linenum-context,err_linenum-1 if line = string2.line(err.source, i) err_msg ..= "\n\027[2m#{fmt_str\format(i)}\027[0m#{line}\027[0m" |
