class: SmallSense::ParseTreeIndexEntry cvs_MAIN
authorStefan Vogel <sv@exept.de>
Fri, 06 Feb 2015 09:56:30 +0100
branchcvs_MAIN
changeset 326 7895231634e4
parent 325 64588262c596
child 327 a7d5ae5e6623
child 389 84f51edca848
class: SmallSense::ParseTreeIndexEntry added: #isClassVariable changed: #isInstanceVariable #version_CVS
SmallSense__ParseTreeIndexEntry.st
--- a/SmallSense__ParseTreeIndexEntry.st	Wed Feb 04 10:46:31 2015 +0100
+++ b/SmallSense__ParseTreeIndexEntry.st	Fri Feb 06 09:56:30 2015 +0100
@@ -223,6 +223,10 @@
 
 !ParseTreeIndexEntry methodsFor:'testing'!
 
+isClassVariable
+    ^ node isVariable and:[node isClassVariable]
+!
+
 isGlobal
     ^ node isGlobal
 
@@ -230,7 +234,7 @@
 !
 
 isInstanceVariable
-    ^node isVariable and:[node isInstance]
+    ^node isVariable and:[node isInstanceVariable]
 
     "Created: / 01-07-2013 / 21:54:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
@@ -264,6 +268,14 @@
 
 !ParseTreeIndexEntry class methodsFor:'documentation'!
 
+version
+    ^ '$Header: /cvs/stx/stx/goodies/smallsense/SmallSense__ParseTreeIndexEntry.st,v 1.2 2015-02-06 08:56:30 stefan Exp $'
+!
+
+version_CVS
+    ^ '$Path: stx/goodies/smallsense/SmallSense__ParseTreeIndexEntry.st, Version: 1.0, User: stefan, Time: 2015-02-06T09:56:01.970+01$'
+!
+
 version_HG
 
     ^ '$Changeset: <not expanded> $'