diff options
author | Eduardo Julian | 2019-05-22 20:50:29 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-05-22 20:50:29 -0400 |
commit | 92dede233083d2a534b0530e582afa3b1ff1025f (patch) | |
tree | 99ac73c5182ee3d0988041cc9718f66e8c1bfd79 /stdlib/source/lux/control/parser/code.lux | |
parent | 0bc505930accb00f74724f384ee42c9a4dd32beb (diff) |
Removed the (magical) "imports" annotations tag.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/control/parser/code.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/parser/code.lux b/stdlib/source/lux/control/parser/code.lux index 1e1287467..25009b447 100644 --- a/stdlib/source/lux/control/parser/code.lux +++ b/stdlib/source/lux/control/parser/code.lux @@ -166,8 +166,8 @@ (#error.Success [input value]) ))) -(def: #export (run inputs syntax) - (All [a] (-> (List Code) (Parser a) (Error a))) +(def: #export (run syntax inputs) + (All [a] (-> (Parser a) (List Code) (Error a))) (case (syntax inputs) (#error.Failure error) (#error.Failure error) @@ -187,5 +187,5 @@ (All [a] (-> (List Code) (Parser a) (Parser a))) (function (_ real) (do error.monad - [value (run inputs syntax)] + [value (run syntax inputs)] (wrap [real value])))) |