*** empty log message ***
authorca
Wed, 30 Jun 2004 17:30:53 +0200
changeset 1528 855c084e2f67
parent 1527 7ab05c80445b
child 1529 806c5c44cce8
*** empty log message ***
ParseNode.st
PrimaryNode.st
--- a/ParseNode.st	Wed Jun 30 17:23:24 2004 +0200
+++ b/ParseNode.st	Wed Jun 30 17:30:53 2004 +0200
@@ -248,6 +248,13 @@
     ^ false
 !
 
+isImmutable
+    "not used with ST/X - 
+     for JavaScript nodes return true here."
+
+    ^ true
+!
+
 isMessage
     "return true, if this is a node for a message expression"
 
@@ -299,5 +306,5 @@
 !ParseNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.36 2004-03-29 13:41:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParseNode.st,v 1.37 2004-06-30 15:30:48 ca Exp $'
 ! !
--- a/PrimaryNode.st	Wed Jun 30 17:23:24 2004 +0200
+++ b/PrimaryNode.st	Wed Jun 30 17:30:53 2004 +0200
@@ -88,13 +88,6 @@
 
 !PrimaryNode methodsFor:'queries'!
 
-isImmutable
-    "not used with ST/X - 
-     for JavaScript nodes return true here."
-
-    ^ true
-!
-
 isPrimary
     "return true, if this is a node for a primary (i.e. non-send)"
 
@@ -104,5 +97,5 @@
 !PrimaryNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.22 2003-03-28 14:39:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.23 2004-06-30 15:30:53 ca Exp $'
 ! !