diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/parser/lux/data/binary.lux | 8 | ||||
-rw-r--r-- | stdlib/source/parser/lux/data/text.lux | 8 | ||||
-rw-r--r-- | stdlib/source/parser/lux/meta/type.lux | 6 | ||||
-rw-r--r-- | stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux | 6 |
4 files changed, 14 insertions, 14 deletions
diff --git a/stdlib/source/parser/lux/data/binary.lux b/stdlib/source/parser/lux/data/binary.lux index 5cb5e0e93..8cd81ed6d 100644 --- a/stdlib/source/parser/lux/data/binary.lux +++ b/stdlib/source/parser/lux/data/binary.lux @@ -22,15 +22,15 @@ ["[0]" set (.only Set)] [array [\\unsafe (.only)]]]] - [macro - ["^" pattern] - ["[0]" template]] [math [number ["n" nat] ["[0]" frac]]] [meta - [type (.only sharing)]]]]) + [type (.only sharing)] + [macro + ["^" pattern] + ["[0]" template]]]]]) (.type .public Offset Nat) diff --git a/stdlib/source/parser/lux/data/text.lux b/stdlib/source/parser/lux/data/text.lux index a85ef474a..31a12ed16 100644 --- a/stdlib/source/parser/lux/data/text.lux +++ b/stdlib/source/parser/lux/data/text.lux @@ -13,14 +13,14 @@ ["[0]" product] [collection ["[0]" list (.use "[1]#[0]" mix)]]] - [macro - ["^" pattern] - ["[0]" template]] [math [number ["n" nat (.use "[1]#[0]" decimal)]]] [meta - ["[0]" code]]]]) + ["[0]" code] + [macro + ["^" pattern] + ["[0]" template]]]]]) (type .public Offset Nat) diff --git a/stdlib/source/parser/lux/meta/type.lux b/stdlib/source/parser/lux/meta/type.lux index f1acda29d..2b03a75e1 100644 --- a/stdlib/source/parser/lux/meta/type.lux +++ b/stdlib/source/parser/lux/meta/type.lux @@ -14,13 +14,13 @@ [collection ["[0]" list (.use "[1]#[0]" functor)] ["[0]" dictionary (.only Dictionary)]]] - [macro - ["^" pattern]] [math [number ["n" nat (.use "[1]#[0]" decimal)]]] [meta - ["[0]" code]]]] + ["[0]" code] + [macro + ["^" pattern]]]]] [\\library ["[0]" / (.use "[1]#[0]" equivalence) ["[0]" check]]]) diff --git a/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux b/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux index 32ee998eb..7c7e8b855 100644 --- a/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux +++ b/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux @@ -13,8 +13,6 @@ ["%" \\format (.only format)]] [collection ["[0]" list (.use "[1]#[0]" functor)]]] - [macro - ["[0]" template]] [math [number ["[0]" i64] @@ -23,7 +21,9 @@ ["[0]" rev] ["[0]" frac]]] [meta - ["[0]" symbol]] + ["[0]" symbol] + [macro + ["[0]" template]]] [tool [compiler [arity (.only Arity)] |