dolphin compile-time constant strings
authorClaus Gittinger <cg@exept.de>
Thu, 16 May 2002 20:10:53 +0200
changeset 1273 3a9541cd8fef
parent 1272 2a429e2293d1
child 1274 7d4a3391a81a
dolphin compile-time constant strings
Parser.st
--- a/Parser.st	Thu May 16 20:09:32 2002 +0200
+++ b/Parser.st	Thu May 16 20:10:53 2002 +0200
@@ -4956,7 +4956,10 @@
 !
 
 primary_dolphinComputedLiteral
-    "parse a dolphin computed literal; return a node-tree, or raise an Error."
+    "parse a dolphin computed literal; return a node-tree, or raise an Error.
+     In dolphin, these are written as: ##( expression )
+     and create a literal constant for the expressions value.
+     Right now, only a subset is supported - Strings, ByteArrays and Characters."
 
     |pos expr val|
 
@@ -6551,6 +6554,6 @@
 !Parser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.332 2002-05-16 18:09:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.333 2002-05-16 18:10:53 cg Exp $'
 ! !
 Parser initialize!