class: VariableNode
authorStefan Vogel <sv@exept.de>
Fri, 06 Feb 2015 11:36:04 +0100
changeset 3574 2fcbcae02707
parent 3573 1f32e1038e8e
child 3575 822e97641a38
class: VariableNode changed: #isInstance
VariableNode.st
--- a/VariableNode.st	Fri Feb 06 09:33:09 2015 +0100
+++ b/VariableNode.st	Fri Feb 06 11:36:04 2015 +0100
@@ -898,6 +898,7 @@
     "Modified: / 05-12-2011 / 18:43:56 / cg"
 ! !
 
+
 !VariableNode methodsFor:'printing & storing'!
 
 displayOn:aGCOrStream
@@ -1104,8 +1105,8 @@
 isInstance
     <resource: #obsolete>
 
-    "/ use isInstanceVariable
-    ^ (type == #InstanceVariable)
+    self obsoleteMethodWarning.
+    ^ self isInstanceVariable
 !
 
 isJavaPackageReference
@@ -1132,10 +1133,10 @@
 !VariableNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/VariableNode.st,v 1.102 2015-02-02 11:53:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/VariableNode.st,v 1.103 2015-02-06 10:36:04 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/VariableNode.st,v 1.102 2015-02-02 11:53:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/VariableNode.st,v 1.103 2015-02-06 10:36:04 stefan Exp $'
 ! !