1
0
ソースを参照

SequenceableCollection reparented, by hand.

Herbert Vojčík 12 年 前
コミット
c342fc391a
4 ファイル変更501 行追加252 行削除
  1. 249 125
      js/Kernel-Collections.deploy.js
  2. 249 125
      js/Kernel-Collections.js
  3. 2 1
      js/boot.js
  4. 1 1
      st/Kernel-Collections.st

ファイルの差分が大きいため隠しています
+ 249 - 125
js/Kernel-Collections.deploy.js


ファイルの差分が大きいため隠しています
+ 249 - 125
js/Kernel-Collections.js


+ 2 - 1
js/boot.js

@@ -822,7 +822,8 @@ smalltalk.wrapClassName("Date", "Kernel", Date, smalltalk.Object);
 smalltalk.wrapClassName("UndefinedObject", "Kernel", SmalltalkNil, smalltalk.Object, false);
 
 smalltalk.addClass("Collection", smalltalk.Object, null, "Kernel");
-smalltalk.addClass("SequenceableCollection", smalltalk.Collection, null, "Kernel");
+smalltalk.addClass("IndexableCollection", smalltalk.Collection, null, "Kernel");
+smalltalk.addClass("SequenceableCollection", smalltalk.IndexableCollection, null, "Kernel");
 smalltalk.addClass("CharacterArray", smalltalk.SequenceableCollection, null, "Kernel");
 smalltalk.wrapClassName("String", "Kernel", String, smalltalk.CharacterArray);
 smalltalk.wrapClassName("Symbol", "Kernel", SmalltalkSymbol, smalltalk.CharacterArray, false);

+ 1 - 1
st/Kernel-Collections.st

@@ -643,7 +643,7 @@ includesKey: aKey
 	< return self._positionOfKey_(aKey) >>= 0; >
 ! !
 
-Collection subclass: #SequenceableCollection
+IndexableCollection subclass: #SequenceableCollection
 	instanceVariableNames: ''
 	package: 'Kernel-Collections'!
 

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません