Browse Source

Fixed failing unit tests (issue #203)

Nicolas Petton 12 years ago
parent
commit
471228c124
6 changed files with 478 additions and 443 deletions
  1. 112 112
      js/Kernel-Collections.deploy.js
  2. 112 112
      js/Kernel-Collections.js
  3. 121 110
      js/Kernel-Objects.deploy.js
  4. 125 109
      js/Kernel-Objects.js
  5. 4 0
      st/Kernel-Collections.st
  6. 4 0
      st/Kernel-Objects.st

File diff suppressed because it is too large
+ 112 - 112
js/Kernel-Collections.deploy.js


File diff suppressed because it is too large
+ 112 - 112
js/Kernel-Collections.js


File diff suppressed because it is too large
+ 121 - 110
js/Kernel-Objects.deploy.js


File diff suppressed because it is too large
+ 125 - 109
js/Kernel-Objects.js


+ 4 - 0
st/Kernel-Collections.st

@@ -951,6 +951,10 @@ unescaped
 	<return String(self) === String(aString)>
 !
 
+== aString
+	^self = aString
+!
+
 > aString
 	<return String(self) >> aString._asString()>
 !

+ 4 - 0
st/Kernel-Objects.st

@@ -342,6 +342,10 @@ Boolean instances are weither `true` or `false`.!
 = aBoolean
 	aBoolean class = self class ifFalse: [^false].
 	<return Boolean(self == true) == aBoolean>
+!
+
+== aBoolean
+	^self = aBoolean
 ! !
 
 !Boolean methodsFor: 'controlling'!

Some files were not shown because too many files changed in this diff