diff options
author | Eduardo Julian | 2019-04-19 19:54:42 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-04-19 19:54:42 -0400 |
commit | a4f162c79c70e57c856a0f924d3cbb27ab70babb (patch) | |
tree | 9876014b00a104cb06c384e91e43e4fabf43b63e /stdlib/source/test | |
parent | 9465270e1f800199ef98f878b6f457331bf7dcab (diff) |
Moved the JSON parser under "lux/control/parser/".
Diffstat (limited to 'stdlib/source/test')
-rw-r--r-- | stdlib/source/test/lux/macro/poly/json.lux | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/macro/poly/json.lux b/stdlib/source/test/lux/macro/poly/json.lux index 1209aa90a..78ed58a9a 100644 --- a/stdlib/source/test/lux/macro/poly/json.lux +++ b/stdlib/source/test/lux/macro/poly/json.lux @@ -4,7 +4,7 @@ ["_" test (#+ Test)] [abstract codec - [monad (#+ do Monad)] + [monad (#+ do)] [equivalence (#+ Equivalence)] {[0 #test] [/ @@ -12,7 +12,9 @@ ["$." codec]]}] [control pipe - ["p" parser]] + ["p" parser + ## TODO: Get rid of this import ASAP + [json (#+)]]] [data ["." error] ["." bit] |