Browse Source

Recompile to fix compiler error with super.

Herbert Vojčík 11 năm trước cách đây
mục cha
commit
0b8aeeaeac
2 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 2 2
      js/SUnit.deploy.js
  2. 2 2
      js/SUnit.js

+ 2 - 2
js/SUnit.deploy.js

@@ -465,7 +465,7 @@ smalltalk.method({
 selector: "initialize",
 fn: function (){
 var self=this;
-smalltalk.send(self,"_initialize",[],smalltalk.TabWidget);
+smalltalk.send(self,"_initialize",[],smalltalk.Object);
 self["@announcer"]=smalltalk.send((smalltalk.Announcer || Announcer),"_new",[]);
 self["@result"]=smalltalk.send((smalltalk.TestResult || TestResult),"_new",[]);
 return self}
@@ -531,7 +531,7 @@ selector: "on:",
 fn: function (aCollection){
 var self=this;
 var $1;
-$1=smalltalk.send(smalltalk.send(self,"_new",[],smalltalk.TabWidget.klass),"_suite_",[aCollection]);
+$1=smalltalk.send(smalltalk.send(self,"_new",[],smalltalk.Object.klass),"_suite_",[aCollection]);
 return $1;
 }
 }),

+ 2 - 2
js/SUnit.js

@@ -641,7 +641,7 @@ selector: "initialize",
 category: 'initialization',
 fn: function (){
 var self=this;
-smalltalk.send(self,"_initialize",[],smalltalk.TabWidget);
+smalltalk.send(self,"_initialize",[],smalltalk.Object);
 self["@announcer"]=smalltalk.send((smalltalk.Announcer || Announcer),"_new",[]);
 self["@result"]=smalltalk.send((smalltalk.TestResult || TestResult),"_new",[]);
 return self},
@@ -732,7 +732,7 @@ category: 'instance creation',
 fn: function (aCollection){
 var self=this;
 var $1;
-$1=smalltalk.send(smalltalk.send(self,"_new",[],smalltalk.TabWidget.klass),"_suite_",[aCollection]);
+$1=smalltalk.send(smalltalk.send(self,"_new",[],smalltalk.Object.klass),"_suite_",[aCollection]);
 return $1;
 },
 args: ["aCollection"],