diff options
author | Eduardo Julian | 2019-04-19 21:55:30 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-04-19 21:55:30 -0400 |
commit | 1706aa26cfa898f5dcabb7bae0fb85400164c461 (patch) | |
tree | 1fe8d998d5540a733a2f491a9fd8e2c82db86523 /stdlib/source/lux/data/format/json.lux | |
parent | 0f6567496d90e08d6df6fcf5dfcee63603714605 (diff) |
Moved the code/syntax parser under "lux/control/parser/".
Diffstat (limited to 'stdlib/source/lux/data/format/json.lux')
-rw-r--r-- | stdlib/source/lux/data/format/json.lux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux index 417db04b6..1bbdc4ee0 100644 --- a/stdlib/source/lux/data/format/json.lux +++ b/stdlib/source/lux/data/format/json.lux @@ -8,7 +8,8 @@ [control pipe ["p" parser ("#@." monad) - ["l" text (#+ Parser)]]] + ["l" text (#+ Parser)] + ["s" code]]] [data ["." bit] ["." maybe] @@ -22,7 +23,7 @@ ["." row (#+ Row row) ("#@." monad)] ["." dictionary (#+ Dictionary)]]] ["." macro (#+ monad with-gensyms) - ["s" syntax (#+ syntax:)] + [syntax (#+ syntax:)] ["." code]]]) (template [<name> <type>] |