comments
authorClaus Gittinger <cg@exept.de>
Thu, 16 May 2002 20:12:53 +0200
changeset 1274 7d4a3391a81a
parent 1273 3a9541cd8fef
child 1275 91a0eead9e0e
comments
Parser.st
--- a/Parser.st	Thu May 16 20:10:53 2002 +0200
+++ b/Parser.st	Thu May 16 20:12:53 2002 +0200
@@ -4959,7 +4959,10 @@
     "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."
+     Right now, only a subset is supported - Strings, ByteArrays and Characters.
+     WARNING: this is only supported to allow filing in dolphin code.
+     since stc cannot handle this (at the moment), you should rewrite the code
+     if you ever plan to stc-compile it into a shared library"
 
     |pos expr val|
 
@@ -5374,7 +5377,13 @@
 !
 
 primary_squeakComputedArray
-    "parse a squeak computed array literal; return a node-tree, or raise an Error."
+    "parse a squeak computed array literal; return a node-tree, or raise an Error.
+     In squeak, these are written as: { expr1 . expr2 . ... exprN )
+     and create a literalArray containing the exprI values.
+     WARNING: this is only supported to allow filing in squeak code.
+     since stc cannot handle this (at the moment), you should rewrite the code
+     if you ever plan to stc-compile it into a shared library"
+
 
     |pos exprList|
 
@@ -6554,6 +6563,6 @@
 !Parser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.333 2002-05-16 18:10:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.334 2002-05-16 18:12:53 cg Exp $'
 ! !
 Parser initialize!