aboutsummaryrefslogtreecommitdiff
path: root/src/boot/strap/tokens.clisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-05-28 14:12:41 +0000
committerdos-reis <gdr@axiomatics.org>2010-05-28 14:12:41 +0000
commit460eba8d1a5ea8feef28282e70ba2d22fa1fcdc6 (patch)
treeddd3aed51b69201221c396bf9e11465c8fb782bb /src/boot/strap/tokens.clisp
parentaf089a02e32f424463e93e147b60222de0839f1e (diff)
downloadopen-axiom-460eba8d1a5ea8feef28282e70ba2d22fa1fcdc6.tar.gz
Add support for 'property' builtin function.
* interp/g-timer.boot: Rename property to prop to avoid conflict. * boot/parser.boot (bpAssignLHS): Allow functional places to assign to. * boot/ast.boot (bfPlace): New. (bfAssign): Handle %Place forms. * boot/tokens.boot: property is now translated to GET.
Diffstat (limited to 'src/boot/strap/tokens.clisp')
-rw-r--r--src/boot/strap/tokens.clisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/strap/tokens.clisp b/src/boot/strap/tokens.clisp
index c3c5105b..d498edb7 100644
--- a/src/boot/strap/tokens.clisp
+++ b/src/boot/strap/tokens.clisp
@@ -216,7 +216,7 @@
(LIST '|nil| NIL) (LIST '|not| 'NOT)
(LIST '|nreverse| 'NREVERSE) (LIST '|null| 'NULL)
(LIST '|or| 'OR) (LIST '|otherwise| 'T)
- (LIST '|readByte| 'READ-BYTE)
+ (LIST '|property| 'GET) (LIST '|readByte| 'READ-BYTE)
(LIST '|readInteger| 'PARSE-INTEGER)
(LIST '|readLine| 'READ-LINE)
(LIST '|removeDuplicates| 'REMDUP)