diff options
author | Eduardo Julian | 2019-04-19 01:13:00 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-04-19 01:13:00 -0400 |
commit | 692f9751f36fbfc4a5f1148c7b1fadc03495fa6b (patch) | |
tree | 66f543bc153f50ab63b0aa78e5cc9a110b7107fe /stdlib/source/lux/data/format/json.lux | |
parent | 7ac0905fd80dce045d6608c4a3c449c466ae43ab (diff) |
Moved the text lexers under "lux/control/parser/".
Diffstat (limited to 'stdlib/source/lux/data/format/json.lux')
-rw-r--r-- | stdlib/source/lux/data/format/json.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux index 34fcf4dfb..beb5eca8d 100644 --- a/stdlib/source/lux/data/format/json.lux +++ b/stdlib/source/lux/data/format/json.lux @@ -7,7 +7,8 @@ codec] [control pipe - ["p" parser (#+ Parser) ("#@." monad)] + ["p" parser (#+ Parser) ("#@." monad) + ["l" text]] ["ex" exception (#+ exception:)]] [data ["." bit] @@ -17,8 +18,7 @@ ["." product] [number ["." frac ("#@." decimal)]] - ["." text ("#@." equivalence monoid) - ["l" lexer]] + ["." text ("#@." equivalence monoid)] [collection ["." list ("#@." fold monad)] ["." row (#+ Row row) ("#@." monad)] |