-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathmoon.moon
99 lines (75 loc) · 2.05 KB
/
moon.moon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
argparse = require "argparse"
moonscript = require "moonscript.base"
util = require "moonscript.util"
errors = require "moonscript.errors"
unpack = util.unpack
argparser = argparse! name: "moon"
argparser\argument "script"
argparser\argument("args")\args "*"
argparser\option "-c --coverage", "Collect and print code coverage"
argparser\option "-d", "Disable stack trace rewriting"
argparser\option "-v --version", "Print version information"
base = 0
for flag in *arg
base += 1
break if flag\sub(1, 1) != "-"
args = {unpack arg, 1, base}
opts = argparser\parse args
print_err = (...) ->
msg = table.concat [tostring v for v in *{...}], "\t"
io.stderr\write msg .. "\n"
run = ->
if opts.version
require("moonscript.version").print_version!
os.exit!
script_fname = opts.script
args = {unpack arg, base + 1}
args[-1] = arg[0]
args[0] = opts.script
local moonscript_chunk, lua_parse_error
passed, err = pcall ->
moonscript_chunk, lua_parse_error = moonscript.loadfile script_fname, {
implicitly_return_root: false
}
unless passed
print_err err
os.exit 1
unless moonscript_chunk
if lua_parse_error
print_err lua_parse_error
else
print_err "Can't file file: #{script_fname}"
os.exit 1
util.getfenv(moonscript_chunk).arg = args
run_chunk = ->
moonscript.insert_loader!
moonscript_chunk unpack args
moonscript.remove_loader!
if opts.d
return run_chunk!
local err, trace, cov
if opts.coverage
print "starting coverage"
coverage = require "moonscript.cmd.coverage"
cov = coverage.CodeCoverage!
cov\start!
xpcall run_chunk, (_err) ->
err = _err
trace = debug.traceback "", 2
if err
truncated = errors.truncate_traceback util.trim trace
rewritten = errors.rewrite_traceback truncated, err
if rewritten
print_err rewritten
else
-- failed to rewrite, show original
print_err table.concat {
err,
util.trim trace
}, "\n"
os.exit 1
else
if cov
cov\stop!
cov\print_results!
run!