aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/actor.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/concurrency/actor.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/lux/control/concurrency/actor.lux b/stdlib/source/lux/control/concurrency/actor.lux
index aa30efa76..97c080273 100644
--- a/stdlib/source/lux/control/concurrency/actor.lux
+++ b/stdlib/source/lux/control/concurrency/actor.lux
@@ -7,7 +7,7 @@
["." function]
["." try (#+ Try)]
["." exception (#+ exception:)]
- ["." io (#+ IO io) ("#@." monad)]
+ ["." io (#+ IO io)]
["<>" parser
["<c>" code (#+ Parser)]]]
[data
@@ -17,7 +17,7 @@
[text
["%" format (#+ format)]]
[collection
- ["." list ("#@." monoid monad fold)]]]
+ ["." list ("#\." monoid monad fold)]]]
[macro
["." code]
[syntax (#+ syntax:)
@@ -30,7 +30,7 @@
["." abstract (#+ abstract: :representation :abstraction)]]]
[//
["." atom (#+ Atom atom)]
- ["." promise (#+ Promise Resolver) ("#@." monad)]
+ ["." promise (#+ Promise Resolver) ("#\." monad)]
["." frp (#+ Channel)]])
(exception: #export poisoned)
@@ -200,7 +200,7 @@
(def: (default-on-stop cause state)
(All [s] (-> Text s (Promise Any)))
- (promise@wrap []))
+ (promise\wrap []))
(def: #export default
(All [s] (Behavior s s))
@@ -312,7 +312,7 @@
(do meta.monad
[g!type (meta.gensym (format name "-abstract-type"))
#let [g!actor (code.local-identifier name)
- g!vars (list@map code.local-identifier vars)]]
+ g!vars (list\map code.local-identifier vars)]]
(wrap (list (` ((~! abstract:) (~+ (csw.export export)) ((~ g!type) (~+ g!vars))
(~ state-type)
@@ -376,9 +376,9 @@
#let [g!type (code.local-identifier (get@ #abstract.name actor-scope))
g!message (code.local-identifier (get@ #name signature))
g!actor-vars (get@ #abstract.type-vars actor-scope)
- g!all-vars (|> (get@ #vars signature) (list@map code.local-identifier) (list@compose g!actor-vars))
- g!inputsC (|> (get@ #inputs signature) (list@map product.left))
- g!inputsT (|> (get@ #inputs signature) (list@map product.right))
+ g!all-vars (|> (get@ #vars signature) (list\map code.local-identifier) (list\compose g!actor-vars))
+ g!inputsC (|> (get@ #inputs signature) (list\map product.left))
+ g!inputsT (|> (get@ #inputs signature) (list\map product.right))
g!state (|> signature (get@ #state) code.local-identifier)
g!self (|> signature (get@ #self) code.local-identifier)]]
(wrap (list (` (def: (~+ (csw.export export)) ((~ g!message) (~+ g!inputsC))