diff options
author | Eduardo Julian | 2017-12-12 09:06:37 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-12-12 09:06:37 -0400 |
commit | 578220c6b1f1542607fd9423e16300beb33f32a3 (patch) | |
tree | 4f11c1e3069b5dec30740b2e99ce1a4f0d5728eb /stdlib/test | |
parent | ea32f6d5500b5affa7f5b11cdc05b48ad4fe7a46 (diff) |
- Agent-based concurrency is just actors listening to FRP channels, so special support for it was removed.
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux/concurrency/space.lux | 23 | ||||
-rw-r--r-- | stdlib/test/tests.lux | 2 |
2 files changed, 0 insertions, 25 deletions
diff --git a/stdlib/test/test/lux/concurrency/space.lux b/stdlib/test/test/lux/concurrency/space.lux deleted file mode 100644 index dd295501e..000000000 --- a/stdlib/test/test/lux/concurrency/space.lux +++ /dev/null @@ -1,23 +0,0 @@ -(.module: - lux - (lux (control [monad #+ do]) - (concurrency ["T" task] - ["A" actor #+ actor:] - ["S" space #+ on:]) - [io])) - -(type: Move - #Ping - #Pong) - -(A.actor: #export Player {} - {#hits Nat}) - -(on: Player Move (reply! who where what state self) - (do @ - [_ (S.emit (case what - #Ping #Pong - #Pong #Ping) - where - self)] - (wrap (update@ #hits n/inc state)))) diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux index 9a0fedbb8..899582b54 100644 --- a/stdlib/test/tests.lux +++ b/stdlib/test/tests.lux @@ -10,7 +10,6 @@ ["_." duration] ["_." date]) (concurrency ["_." actor] - ["_." space] ["_." atom] ["_." frp] ["_." promise] @@ -75,7 +74,6 @@ )) (lux (control [contract] [concatenative]) - (concurrency [space]) (data [env] [trace] [store] |