added: #version_CVS
authorClaus Gittinger <cg@exept.de>
Sat, 20 Aug 2011 13:47:12 +0200
changeset 246 190bb2979dad
parent 245 ba7317557a9c
child 247 c134a51a2583
added: #version_CVS
MCMockDependency.st
--- a/MCMockDependency.st	Sat Aug 20 13:47:02 2011 +0200
+++ b/MCMockDependency.st	Sat Aug 20 13:47:12 2011 +0200
@@ -22,15 +22,15 @@
 
 initializeWithTree: expr
 	expr isSymbol
-		ifTrue: [name _ expr.
-				children _ Array new.
-				hasResolution _ true.]
-		ifFalse: [name _ expr first.
+		ifTrue: [name := expr.
+				children := Array new.
+				hasResolution := true.]
+		ifFalse: [name := expr first.
 				expr second isSymbol
-					ifTrue: [hasResolution _ false.
-							children _ Array new]
-					ifFalse: [hasResolution _ true.
-							children _ expr second]]
+					ifTrue: [hasResolution := false.
+							children := Array new]
+					ifFalse: [hasResolution := true.
+							children := expr second]]
 !
 
 name
@@ -87,5 +87,13 @@
 !MCMockDependency class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMockDependency.st,v 1.1 2006-11-22 13:19:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMockDependency.st,v 1.2 2011-08-20 11:47:12 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMockDependency.st,v 1.2 2011-08-20 11:47:12 cg Exp $'
+!
+
+version_SVN
+    ^ '§Id: MCMockDependency.st 5 2010-08-29 07:30:29Z vranyj1 §'
 ! !