From 4ee1a13e5251698f48424612168719bc0d56638e Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 14 Dec 2017 14:07:03 -0800 Subject: [PATCH] Changed flags from -f to force nonoptimized to -O to use optimized. --- nomsu.moon | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nomsu.moon b/nomsu.moon index 0aec352..9ca17e0 100755 --- a/nomsu.moon +++ b/nomsu.moon @@ -903,18 +903,18 @@ if arg parser = re.compile([[ args <- {| {:flags: flags? :} ({:input: input :} ";" ("-o;"{:output: output :} ";")?)? (";")? |} !. flags <- (({| ({flag} ";")* |}) -> set) - flag <- "-c" / "-i" / "-p" / "-f" / "--help" / "-h" + flag <- "-c" / "-i" / "-p" / "-O" / "--help" / "-h" input <- "-" / [^;]+ output <- "-" / [^;]+ ]], {set: utils.set}) args = concat(arg, ";")..";" args = parser\match(args) or {} if not args or not args.flags or args.flags["--help"] or args.flags["-h"] - print "Usage: lua nomsu.lua [-c] [-i] [-p] [-f] [--help] [input [-o output]]" + print "Usage: lua nomsu.lua [-c] [-i] [-p] [-O] [--help] [input [-o output]]" os.exit! c = NomsuCompiler() - c.skip_precompiled = args.flags["-f"] + c.skip_precompiled = not args.flags["-O"] if args.input -- Read a file or stdin and output either the printouts or the compiled lua if args.flags["-c"] and not args.output