aboutsummaryrefslogtreecommitdiff
path: root/src/interp/cparse.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/cparse.boot')
-rw-r--r--src/interp/cparse.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/cparse.boot b/src/interp/cparse.boot
index 010c84e4..0c8465fd 100644
--- a/src/interp/cparse.boot
+++ b/src/interp/cparse.boot
@@ -108,7 +108,7 @@ npPush x ==
++ name on the parsing tree stack, otherwise treat the token
++ has a name.
npPushId() ==
- a := GETL($ttok,'INFGENERIC)
+ a := property($ttok,'INFGENERIC)
$ttok := if a then a else $ttok
$stack := [tokConstruct("id",$ttok,tokPosn $stok),:$stack]
npNext()
@@ -296,8 +296,8 @@ npLeftAssoc(operations,parser) ==
++ Parse an infix operator name.
npInfixOp() ==
- $stok.first.first = "key" and
- GETL($ttok,"INFGENERIC") and npPushId()
+ $stok.first.first is "key" and
+ property($ttok,"INFGENERIC") and npPushId()
++ Parse an infix operator, either quoted or backquoted.
npInfixOperator() ==