diff options
author | Eduardo Julian | 2017-10-16 23:24:21 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-16 23:24:21 -0400 |
commit | 6ffd0692d840298850307497f5275c44d0ff8f5d (patch) | |
tree | 0f93440bfc7aea35ba4583fa23828cac782bbdbc /stdlib/source/lux/meta/syntax/common/reader.lux | |
parent | b5e5cceb9f985a31581a76d71301b393d88f34a8 (diff) |
- Re-named "Lux" type to "Meta".
- Moved lux/type/* under lux/meta/*.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/meta/syntax/common/reader.lux (renamed from stdlib/source/lux/macro/syntax/common/reader.lux) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/macro/syntax/common/reader.lux b/stdlib/source/lux/meta/syntax/common/reader.lux index aa5743f76..579cf0273 100644 --- a/stdlib/source/lux/macro/syntax/common/reader.lux +++ b/stdlib/source/lux/meta/syntax/common/reader.lux @@ -6,8 +6,8 @@ [ident "ident/" Eq<Ident>] [product] [maybe]) - [macro] - (macro ["s" syntax #+ syntax: Syntax])) + [meta] + (meta ["s" syntax #+ syntax: Syntax])) [.. #*]) ## Exports @@ -109,7 +109,7 @@ (do p;Monad<Parser> [definition-raw s;any me-definition-raw (s;on compiler - (macro;expand-all definition-raw))] + (meta;expand-all definition-raw))] (s;local me-definition-raw (s;form (do @ [_ (s;this (' lux;_lux_def)) |