diff options
author | Eduardo Julian | 2015-03-09 00:58:45 -0400 |
---|---|---|
committer | Eduardo Julian | 2015-03-09 00:58:45 -0400 |
commit | a386d0c4688b8749db3e4d612658774a24bc61a2 (patch) | |
tree | a6be02885ce4b180e67e00b1b6c5687d5361b4c9 /src/lux/analyser/base.clj | |
parent | 85065dcfae4ef55df519ce52ed0f6b48fea02e70 (diff) |
- Implemented record compilation, alongside get@' and set@'.
- Made a small change in float & double comparisons to make sure NaN < n.
Diffstat (limited to 'src/lux/analyser/base.clj')
-rw-r--r-- | src/lux/analyser/base.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lux/analyser/base.clj b/src/lux/analyser/base.clj index f9028673d..66451e97b 100644 --- a/src/lux/analyser/base.clj +++ b/src/lux/analyser/base.clj @@ -12,7 +12,7 @@ (return type) _ - (fail "[Analyser Error] Can't retrieve the type of a non-expression."))) + (fail (str "[Analyser Error] Can't retrieve the type of a non-expression: " (pr-str syntax+))))) (defn analyse-1 [analyse elem] (exec [output (analyse elem)] |