From 5d401a09eeded0f3ecd9fb1ed3acdee30f99e197 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 4 May 2017 20:50:50 -0400 Subject: - Removed the "Debug" compiler mode. --- stdlib/source/lux.lux | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'stdlib/source/lux.lux') 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))) -- cgit v1.2.3