aboutsummaryrefslogtreecommitdiff
path: root/src/boot/parser.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/parser.boot')
-rw-r--r--src/boot/parser.boot8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/boot/parser.boot b/src/boot/parser.boot
index e754375d..9525c6db 100644
--- a/src/boot/parser.boot
+++ b/src/boot/parser.boot
@@ -734,11 +734,15 @@ bpLeave() ==
++ Return:
++ RETURN Assign
+++ Leave
+++ Throw
+++ And
bpReturn()==
(bpEqKey "RETURN" and (bpAssign() or bpTrap()) and
bpPush bfReturnNoName bpPop1())
- or bpThrow()
- or bpAnd()
+ or bpLeave()
+ or bpThrow()
+ or bpAnd()
bpLogical()== bpLeftAssoc('(OR),function bpReturn)