changed:5 methods
authorClaus Gittinger <cg@exept.de>
Thu, 23 Aug 2012 23:07:40 +0200
changeset 2904 021381917b28
parent 2903 482f5086773d
child 2905 83aff4beafc7
changed:5 methods
MethodFinder.st
--- a/MethodFinder.st	Mon Aug 13 16:22:38 2012 +0200
+++ b/MethodFinder.st	Thu Aug 23 23:07:40 2012 +0200
@@ -224,7 +224,7 @@
 
         "replace data2 with const in expressions"
         subTest expressions do: [:exp |
-                expressions add: (exp copyReplaceAll: 'data2' with: const printString)].
+                expressions add: (exp copyReplaceString: "copyReplaceAll:" 'data2' withString: "with:" const printString)].
         selector addAll: subTest selectors.
         ^ true
 !
@@ -253,7 +253,7 @@
 
         "replace data2 with const in expressions"
         subTest expressions do: [:exp |
-                expressions add: (exp copyReplaceAll: 'data2' with: const printString)].
+                expressions add: (exp copyReplaceString: "copyReplaceAll:" 'data2' withString: "with:" const printString)].
         selector addAll: subTest selectors.
         ^ true
 !
@@ -276,7 +276,7 @@
 
         "replace data2 with const in expressions"
         subTest expressions do: [:exp |
-                expressions add: (exp copyReplaceAll: 'data2' with: const printString)].
+                expressions add: (exp copyReplaceString: "copyReplaceAll:" 'data2' withString: "with:" const printString)].
         selector addAll: subTest selectors.
         ^ true
 !
@@ -307,7 +307,7 @@
 
         "replace data2 with const in expressions"
         subTest expressions do: [:exp |
-                expressions add: (exp copyReplaceAll: 'data2' with: const printString)].
+                expressions add: (exp copyReplaceString: "copyReplaceAll:" 'data2' withString: "with:" const printString)].
         selector addAll: subTest selectors.
         ^ true
 !
@@ -323,7 +323,7 @@
 
         "replace data2 with const in expressions"
         subTest expressions do: [:exp |
-                expressions add: (exp copyReplaceAll: 'data2' with: const printString)].
+                expressions add: (exp copyReplaceString: "copyReplaceAll:" 'data2' withString: "with:" const printString)].
         selector addAll: subTest selectors.
         ^ true
 ! !
@@ -1630,9 +1630,9 @@
 !MethodFinder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/MethodFinder.st,v 1.29 2012-08-03 20:28:03 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodFinder.st,v 1.30 2012-08-23 21:07:40 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/MethodFinder.st,v 1.29 2012-08-03 20:28:03 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodFinder.st,v 1.30 2012-08-23 21:07:40 cg Exp $'
 ! !