diff options
author | Eduardo Julian | 2018-07-20 22:46:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-20 22:46:38 -0400 |
commit | 518a7467c4e0ef904afa8c59cff3594d6f63c552 (patch) | |
tree | 509598d219a780d14a8fe6ccd46545f701a1cd17 /stdlib/source/lux/concurrency/actor.lux | |
parent | b1315d6dc1e4bed4a3bf35e8c6f67d88c2aa7b55 (diff) |
No longer giving default aliases to un-prefixed imports.
Diffstat (limited to 'stdlib/source/lux/concurrency/actor.lux')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux index cb35b0706..971bbe01e 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -3,14 +3,16 @@ [control monad ["p" parser] ["ex" exception (#+ exception:)]] - [io (#- run) ("io/" Monad<IO>)] + ["." io (#- run) ("io/" Monad<IO>)] [data - [product] + ["." product] ["e" error] - text/format - [collection [list ("list/" Monoid<List> Monad<List> Fold<List>)]]] - [macro (#+ with-gensyms Monad<Meta>) - [code] + [text + format] + [collection + ["." list ("list/" Monoid<List> Monad<List> Fold<List>)]]] + ["." macro (#+ with-gensyms Monad<Meta>) + ["." code] ["s" syntax (#+ syntax: Syntax)] [syntax ["cs" common] @@ -20,9 +22,9 @@ [type abstract]] [// - [atom (#+ Atom atom)] - [promise (#+ Promise promise) ("promise/" Monad<Promise>)] - [task (#+ Task)]]) + ["." atom (#+ Atom atom)] + ["." promise (#+ Promise promise) ("promise/" Monad<Promise>)] + ["." task (#+ Task)]]) (exception: #export poisoned) |