Skip to content

Add CLI arg for keep_line_number #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 11, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bin/moonc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ local help = [[Usage: %s [options] files/directories...
-l Perform lint on the file instead of compiling
-b Dump parse and compile time (doesn't write output)
-v Print version

-n Keep line numbers so that every output line maps a input line
-- Read from standard in, print to standard out
(Must be first and only argument)
]]
Expand Down Expand Up @@ -248,6 +248,7 @@ else
benchmark = opts.b,
show_posmap = opts.X,
show_parse_tree = opts.T,
keep_line_number = opts.n
})

if not success then
Expand Down