diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-01-27 16:39:56 -0800 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-01-27 16:40:29 -0800 |
| commit | 855fe23439bbcf3b1cb8a8798d055cb30fb610c1 (patch) | |
| tree | 1e03fecf3ad173643eed36252d9b846908681b4b /nomsu.moon | |
| parent | 90c56d31352a0eeccd382ef5921baf3af4971040 (diff) | |
Tweaked code to not rely on moonscript.
Diffstat (limited to 'nomsu.moon')
| -rwxr-xr-x | nomsu.moon | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1006,7 +1006,8 @@ if arg -- TODO: properly print out the calling site of nomsu code, not just the *called* code - import to_lua from require "moonscript.base" + ok, to_lua = pcall -> require('moonscript.base').to_lua + if not ok then to_lua = -> nil nomsu_file = io.open("nomsu.moon") nomsu_source = nomsu_file\read("*a") _, line_table = to_lua(nomsu_source) @@ -1038,7 +1039,7 @@ if arg else if calling_fn.istailcall and not name name = "<tail call>" - if calling_fn.short_src == "./nomsu.moon" + if calling_fn.short_src == "./nomsu.moon" and line_table char = line_table[calling_fn.currentline] line_num = 1 for _ in nomsu_source\sub(1,char)\gmatch("\n") do line_num += 1 |
