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/tool | |
parent | 7ac0905fd80dce045d6608c4a3c449c466ae43ab (diff) |
Moved the text lexers under "lux/control/parser/".
Diffstat (limited to 'stdlib/source/lux/tool')
-rw-r--r-- | stdlib/source/lux/tool/compiler/default/syntax.lux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/source/lux/tool/compiler/default/syntax.lux b/stdlib/source/lux/tool/compiler/default/syntax.lux index 4a3ee89d2..788a492cd 100644 --- a/stdlib/source/lux/tool/compiler/default/syntax.lux +++ b/stdlib/source/lux/tool/compiler/default/syntax.lux @@ -29,7 +29,9 @@ [abstract monad] [control - ["." exception (#+ exception:)]] + ["." exception (#+ exception:)] + [parser + [text (#+ Offset)]]] [data ["." maybe] ["." error (#+ Error)] @@ -39,7 +41,6 @@ ["." rev] ["." frac]] ["." text - [lexer (#+ Offset)] format] [collection ["." list] |