aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/concurrency/actor.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/concurrency/actor.lux22
1 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux
index 7d5c41583..bdf0758c3 100644
--- a/stdlib/source/lux/concurrency/actor.lux
+++ b/stdlib/source/lux/concurrency/actor.lux
@@ -7,12 +7,12 @@
(data text/format
(coll [list "list/" Monoid<List> Monad<List> Fold<List>])
[product])
- [meta #+ with-gensyms Monad<Meta>]
- (meta [code]
- ["s" syntax #+ syntax: Syntax]
- (syntax ["cs" common]
- (common ["csr" reader]
- ["csw" writer])))
+ [macro #+ with-gensyms Monad<Meta>]
+ (macro [code]
+ ["s" syntax #+ syntax: Syntax]
+ (syntax ["cs" common]
+ (common ["csr" reader]
+ ["csw" writer])))
(type opaque)
(lang [type]))
(.. ["A" atom]
@@ -152,14 +152,14 @@
(def: #hidden (<resolve> name)
(-> Ident (Meta Ident))
(do Monad<Meta>
- [name (meta;normalize name)
- [_ annotations _] (meta;find-def name)]
- (case (meta;get-tag-ann (ident-for <tag>) annotations)
+ [name (macro;normalize name)
+ [_ annotations _] (macro;find-def name)]
+ (case (macro;get-tag-ann (ident-for <tag>) annotations)
(#;Some actor-name)
(wrap actor-name)
_
- (meta;fail (format "Definition is not " <desc> ".")))))]
+ (macro;fail (format "Definition is not " <desc> ".")))))]
[with-actor resolve-actor #;;actor "an actor"]
[with-message resolve-message #;;message "a message"]
@@ -224,7 +224,7 @@
(wrap output)))))}
(with-gensyms [g!message g!self g!state g!init g!error g!return g!output]
(do @
- [module meta;current-module-name
+ [module macro;current-module-name
#let [g!type (code;local-symbol (state-name _name))
g!behavior (code;local-symbol (behavior-name _name))
g!actor (code;local-symbol _name)