ParseNode.st
changeset 1720 2b5cee213f78
parent 1588 4c3183dfaa5f
child 1725 728ba29d1872
--- a/ParseNode.st	Mon Mar 13 16:53:21 2006 +0100
+++ b/ParseNode.st	Tue Mar 14 18:19:15 2006 +0100
@@ -56,6 +56,11 @@
 codeLineNumber:nr on:aStream for:aCompiler
     "generate lineNumber information"
 
+    "/ caveat: (currently) there is no separate lineNumber or symbol table;
+    "/ the line numbers are coded right into the instruction stream.
+    "/ This might change in the future.
+    "/ (It is not a problem speed wise: the Jitter just skips them.)
+
     nr > 0 ifTrue:[
         nr <= 255 ifTrue:[
             aStream nextPut:#lineno.
@@ -335,5 +340,5 @@
 !ParseNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.39 2005-04-20 14:41:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.40 2006-03-14 17:19:15 cg Exp $'
 ! !