diff options
author | Eduardo Julian | 2019-05-21 23:40:48 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-05-21 23:40:48 -0400 |
commit | 7406fbf75e7f81b466c02ed07d65e62c86e3230a (patch) | |
tree | 0a667b90ef38dff1f314462c51e94951fbfa69ac /stdlib/source/lux/host.old.lux | |
parent | eb59547eae1753c9aed1ee887e44c825c1b32c05 (diff) |
Fixes & tweaks in tests (and relevant code) due to latest changes in the stdlib.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/host.old.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/host.old.lux b/stdlib/source/lux/host.old.lux index f220d00b9..9c866a66a 100644 --- a/stdlib/source/lux/host.old.lux +++ b/stdlib/source/lux/host.old.lux @@ -559,7 +559,7 @@ (def: (parser->replacer p ast) (-> (Parser Code) (-> Code Code)) - (case (p.run (list ast) p) + (case (p.run p (list ast)) (#.Right [#.Nil ast']) ast' |