diff options
author | Eduardo Julian | 2017-05-04 20:50:50 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-05-04 20:50:50 -0400 |
commit | 5d401a09eeded0f3ecd9fb1ed3acdee30f99e197 (patch) | |
tree | 871f647d5319539d13573d47eedb099a7c5c631c /stdlib | |
parent | 63143bdb893f1465fe980f262782fbd5ad16b60a (diff) |
- Removed the "Debug" compiler mode.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux.lux | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/stdlib/source/lux.lux b/stdlib/source/lux.lux index b49d831b0..9de477162 100644 --- a/stdlib/source/lux.lux +++ b/stdlib/source/lux.lux @@ -580,25 +580,21 @@ default-def-meta-exported)) ## (type: Compiler-Mode -## #Release -## #Debug +## #Build ## #Eval ## #REPL) (_lux_def Compiler-Mode (#NamedT ["lux" "Compiler-Mode"] - (#SumT ## "lux;Release" + (#SumT ## Build #UnitT - (#SumT ## "lux;Debug" + (#SumT ## Eval #UnitT - (#SumT ## "lux;Eval" - #UnitT - ## "lux;REPL" - #UnitT)))) - (#Cons [["lux" "tags"] (#ListA (#Cons (#TextA "Release") - (#Cons (#TextA "Debug") - (#Cons (#TextA "Eval") - (#Cons (#TextA "REPL") - #Nil)))))] + ## REPL + #UnitT))) + (#Cons [["lux" "tags"] (#ListA (#Cons (#TextA "Build") + (#Cons (#TextA "Eval") + (#Cons (#TextA "REPL") + #Nil))))] (#Cons [["lux" "doc"] (#TextA "A sign that shows the conditions under which the compiler is running.")] default-def-meta-exported))) |