diff options
author | Eduardo Julian | 2018-05-10 20:16:56 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-05-10 20:16:56 -0400 |
commit | 0594525aea5a62355838116a1408f7ce7a7ba0b4 (patch) | |
tree | 3c00ce0edbadc3eb1566e825579e51f24bd5eb88 /new-luxc/source/luxc/lang/translation | |
parent | 022ada35548ef5e0e3b9614f9bb96de9d2137ced (diff) |
- Adjusted new-luxc to latest changes.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation.lux | 4 | ||||
-rw-r--r-- | new-luxc/source/luxc/lang/translation/jvm/imports.jvm.lux | 2 |
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]) |