comment
authorClaus Gittinger <cg@exept.de>
Tue, 14 Mar 2006 18:19:15 +0100
changeset 1720 2b5cee213f78
parent 1719 3a774d5c643e
child 1721 70a996f7b6b7
comment
ParseNode.st
--- 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 $'
 ! !