diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/parser/lux/data/collection/tree.lux (renamed from stdlib/source/library/lux/control/parser/tree.lux) | 11 | ||||
-rw-r--r-- | stdlib/source/parser/lux/program.lux (renamed from stdlib/source/library/lux/control/parser/cli.lux) | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/stdlib/source/library/lux/control/parser/tree.lux b/stdlib/source/parser/lux/data/collection/tree.lux index e94e8a96c..5d10ce15b 100644 --- a/stdlib/source/library/lux/control/parser/tree.lux +++ b/stdlib/source/parser/lux/data/collection/tree.lux @@ -4,13 +4,12 @@ [abstract [monad (.only do)]] [control + ["//" parser] ["[0]" try (.only Try)] - ["[0]" exception (.only exception)]] - [data - [collection - [tree (.only Tree) - ["[0]" zipper (.only Zipper)]]]]]] - ["[0]" //]) + ["[0]" exception (.only exception)]]]] + [\\library + [/ (.only Tree) + ["[0]" zipper (.only Zipper)]]]) (type .public (Parser t a) (//.Parser (Zipper t) a)) diff --git a/stdlib/source/library/lux/control/parser/cli.lux b/stdlib/source/parser/lux/program.lux index 694cb93fc..e834136d8 100644 --- a/stdlib/source/library/lux/control/parser/cli.lux +++ b/stdlib/source/parser/lux/program.lux @@ -4,11 +4,11 @@ [abstract [monad (.only do)]] [control + ["//" parser] ["[0]" try (.only Try)]] [data ["[0]" text (.use "[1]#[0]" equivalence) - ["%" \\format (.only format)]]]]] - ["[0]" //]) + ["%" \\format (.only format)]]]]]) (type .public (Parser a) (//.Parser (List Text) a)) |