aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang
diff options
context:
space:
mode:
authorEduardo Julian2018-05-10 20:16:56 -0400
committerEduardo Julian2018-05-10 20:16:56 -0400
commit0594525aea5a62355838116a1408f7ce7a7ba0b4 (patch)
tree3c00ce0edbadc3eb1566e825579e51f24bd5eb88 /new-luxc/source/luxc/lang
parent022ada35548ef5e0e3b9614f9bb96de9d2137ced (diff)
- Adjusted new-luxc to latest changes.
Diffstat (limited to 'new-luxc/source/luxc/lang')
-rw-r--r--new-luxc/source/luxc/lang/translation.lux4
-rw-r--r--new-luxc/source/luxc/lang/translation/jvm/imports.jvm.lux2
2 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/lang/translation.lux b/new-luxc/source/luxc/lang/translation.lux
index 4cab6d682..99328a45f 100644
--- a/new-luxc/source/luxc/lang/translation.lux
+++ b/new-luxc/source/luxc/lang/translation.lux
@@ -9,7 +9,7 @@
[text "text/" Hash<Text>]
text/format
(coll [list "list/" Functor<List>]
- [dict]))
+ (dictionary ["dict" unordered])))
[macro]
(lang [syntax #+ Aliases]
(type ["tc" check]))
@@ -135,7 +135,7 @@
(function (_ compiler)
(case (action compiler)
(#e.Error error)
- (if (ex.match? syntax.End-Of-File error)
+ (if (ex.match? syntax.end-of-file error)
(#e.Success [compiler []])
(#e.Error error))
diff --git a/new-luxc/source/luxc/lang/translation/jvm/imports.jvm.lux b/new-luxc/source/luxc/lang/translation/jvm/imports.jvm.lux
index de75a4d75..61061c3af 100644
--- a/new-luxc/source/luxc/lang/translation/jvm/imports.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/jvm/imports.jvm.lux
@@ -12,7 +12,7 @@
[text "text/" Eq<Text>]
text/format
(coll [list "list/" Functor<List> Fold<List>]
- [dict #+ Dict]))
+ (dictionary ["dict" unordered #+ Dict])))
[macro]
(macro [code]
["s" syntax])