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.boot5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/boot/parser.boot b/src/boot/parser.boot
index 909568b9..107a355f 100644
--- a/src/boot/parser.boot
+++ b/src/boot/parser.boot
@@ -1079,7 +1079,10 @@ bpAssignLHS()==
bpEqKey "COLON" => -- variable declaration
bpApplication() or bpTrap()
bpPush bfLocal(bpPop2(),bpPop1())
- bpArgumentList() and (bpEqPeek "DOT" or bpTrap())
+ bpArgumentList() and
+ (bpEqPeek "DOT"
+ or (bpEqPeek "BEC" and bpPush bfPlace bpPop1())
+ or bpTrap())
bpEqKey "DOT" => -- field path
bpList(function bpPrimary,"DOT") and
bpChecknull() and