aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/parser
diff options
context:
space:
mode:
authorEduardo Julian2022-07-02 16:32:00 -0400
committerEduardo Julian2022-07-02 16:32:00 -0400
commit7e4c9ba2e02f06fa621ffe24bc0ca046536429ef (patch)
tree9e4a4e228d136870f9b706cc804315db6b08d17c /stdlib/source/parser
parentb96beb587c11fcfbce86ce2d62351600cf6cad1b (diff)
Moved "lux/macro" to "lux/meta/macro".
Diffstat (limited to 'stdlib/source/parser')
-rw-r--r--stdlib/source/parser/lux/data/binary.lux8
-rw-r--r--stdlib/source/parser/lux/data/text.lux8
-rw-r--r--stdlib/source/parser/lux/meta/type.lux6
-rw-r--r--stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux6
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)]