diff options
Diffstat (limited to 'stdlib/source/lux/tool/compiler/phase/extension/statement.lux')
-rw-r--r-- | stdlib/source/lux/tool/compiler/phase/extension/statement.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/tool/compiler/phase/extension/statement.lux b/stdlib/source/lux/tool/compiler/phase/extension/statement.lux index 629e5af59..61243a9bc 100644 --- a/stdlib/source/lux/tool/compiler/phase/extension/statement.lux +++ b/stdlib/source/lux/tool/compiler/phase/extension/statement.lux @@ -4,7 +4,8 @@ ["." monad (#+ do)]] [control [io (#+ IO)] - ["p" parser]] + ["p" parser + ["s" code (#+ Parser)]]] [data ["." product] ["." maybe] @@ -15,8 +16,7 @@ ["." list ("#;." functor)] ["." dictionary]]] ["." macro - ["." code] - ["s" syntax (#+ Syntax)]] + ["." code]] [type (#+ :share :by-example) ["." check]]] ["." // @@ -171,7 +171,7 @@ (///.throw //.invalid-syntax [extension-name %code inputsC+])))) (def: imports - (Syntax (List Import)) + (Parser (List Import)) (|> (s.tuple (p.and s.text s.text)) p.some s.tuple)) |