Browse Source

Merge branch 'master' into ast-interpreter

Conflicts:
	js/Kernel-Objects.deploy.js
	js/Kernel-Objects.js
Nicolas Petton 12 years ago
parent
commit
676ed4501c
3 changed files with 189 additions and 279 deletions
  1. 93 138
      js/Kernel-Objects.deploy.js
  2. 91 139
      js/Kernel-Objects.js
  3. 5 2
      st/Kernel-Objects.st

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


File diff suppressed because it is too large
+ 91 - 139
js/Kernel-Objects.js


+ 5 - 2
st/Kernel-Objects.st

@@ -946,8 +946,7 @@ deepCopy
 !Number methodsFor: 'enumerating'!
 
 timesRepeat: aBlock
-	| integer count |
-	integer := self truncated.
+	| count |
 	count := 1.
 	[count > self] whileFalse: [
 	    aBlock value.
@@ -1652,3 +1651,7 @@ new
 	    self error: 'You cannot create new instances of UndefinedObject. Use nil'
 ! !
 
+nil subclass: #[object Object]
+	instanceVariableNames: ''
+	package: 'Kernel-Objects'!
+

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