123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809 |
- smalltalk.addPackage('Kernel-Methods', {});
- smalltalk.addClass('BlockClosure', smalltalk.Object, [], 'Kernel-Methods');
- smalltalk.addMethod(
- "_applyTo_arguments_",
- smalltalk.method({
- selector: "applyTo:arguments:",
- fn: function (anObject, aCollection) {
- var self = this;
- return self.apply(anObject, aCollection);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_compiledSource",
- smalltalk.method({
- selector: "compiledSource",
- fn: function () {
- var self = this;
- return self.toString();
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_ensure_",
- smalltalk.method({
- selector: "ensure:",
- fn: function (aBlock){
- var self=this;
- try{return self()}finally{aBlock._value()};
- ;
- return self}
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_fork",
- smalltalk.method({
- selector: "fork",
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.ForkPool || ForkPool),"_default",[]),"_fork_",[self]);
- return self}
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_new",
- smalltalk.method({
- selector: "new",
- fn: function () {
- var self = this;
- return new self;
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_newValue_",
- smalltalk.method({
- selector: "newValue:",
- fn: function (anObject) {
- var self = this;
- return new self(anObject);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_newValue_value_",
- smalltalk.method({
- selector: "newValue:value:",
- fn: function (anObject, anObject2) {
- var self = this;
- return new self(anObject, anObject2);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_newValue_value_value_",
- smalltalk.method({
- selector: "newValue:value:value:",
- fn: function (anObject, anObject2, anObject3) {
- var self = this;
- return new self(anObject, anObject2);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_numArgs",
- smalltalk.method({
- selector: "numArgs",
- fn: function () {
- var self = this;
- return self.length;
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_on_do_",
- smalltalk.method({
- selector: "on:do:",
- fn: function (anErrorClass, aBlock) {
- var self = this;
- var $2, $1;
- $1 = smalltalk.send(self, "_try_catch_", [self, function (error) {$2 = smalltalk.send(error, "_isKindOf_", [anErrorClass]);if (smalltalk.assert($2)) {return smalltalk.send(aBlock, "_value_", [error]);} else {return smalltalk.send(error, "_signal", []);}}]);
- return $1;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_timeToRun",
- smalltalk.method({
- selector: "timeToRun",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.Date || Date, "_millisecondsToRun_", [self]);
- return $1;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_value",
- smalltalk.method({
- selector: "value",
- fn: function () {
- var self = this;
- return self();
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_value_",
- smalltalk.method({
- selector: "value:",
- fn: function (anArg) {
- var self = this;
- return self(anArg);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_value_value_",
- smalltalk.method({
- selector: "value:value:",
- fn: function (firstArg, secondArg) {
- var self = this;
- return self(firstArg, secondArg);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_value_value_value_",
- smalltalk.method({
- selector: "value:value:value:",
- fn: function (firstArg, secondArg, thirdArg) {
- var self = this;
- return self(firstArg, secondArg, thirdArg);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_valueWithInterval_",
- smalltalk.method({
- selector: "valueWithInterval:",
- fn: function (aNumber){
- var self=this;
- var interval = setInterval(self, aNumber);
- return smalltalk.Timeout._on_(interval);
- ;
- ;
- return self}
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_valueWithPossibleArguments_",
- smalltalk.method({
- selector: "valueWithPossibleArguments:",
- fn: function (aCollection) {
- var self = this;
- return self.apply(null, aCollection);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_valueWithTimeout_",
- smalltalk.method({
- selector: "valueWithTimeout:",
- fn: function (aNumber){
- var self=this;
- var timeout = setTimeout(self, aNumber);
- return smalltalk.Timeout._on_(timeout);
- ;
- ;
- return self}
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_whileFalse",
- smalltalk.method({
- selector: "whileFalse",
- fn: function () {
- var self = this;
- smalltalk.send(self, "_whileFalse_", [function () {}]);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_whileFalse_",
- smalltalk.method({
- selector: "whileFalse:",
- fn: function (aBlock) {
- var self = this;
- while (!self()) {
- aBlock();
- }
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_whileTrue",
- smalltalk.method({
- selector: "whileTrue",
- fn: function () {
- var self = this;
- smalltalk.send(self, "_whileTrue_", [function () {}]);
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addMethod(
- "_whileTrue_",
- smalltalk.method({
- selector: "whileTrue:",
- fn: function (aBlock) {
- var self = this;
- while (self()) {
- aBlock();
- }
- return self;
- }
- }),
- smalltalk.BlockClosure);
- smalltalk.addClass('CompiledMethod', smalltalk.Object, [], 'Kernel-Methods');
- smalltalk.addMethod(
- "_arguments",
- smalltalk.method({
- selector: "arguments",
- fn: function () {
- var self = this;
- return self.args || [];
- return self;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_category",
- smalltalk.method({
- selector: "category",
- fn: function () {
- var self = this;
- var $2, $1;
- $2 = smalltalk.send(self, "_basicAt_", ["category"]);
- if (($receiver = $2) == nil || $receiver == undefined) {
- $1 = "";
- } else {
- $1 = $2;
- }
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_category_",
- smalltalk.method({
- selector: "category:",
- fn: function (aString){
- var self=this;
- var $1;
- var oldCategory;
- oldCategory=smalltalk.send(self,"_category",[]);
- smalltalk.send(self,"_basicAt_put_",["category",aString]);
- $1=smalltalk.send(self,"_methodClass",[]);
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- smalltalk.send(smalltalk.send(smalltalk.send(self,"_methodClass",[]),"_organization",[]),"_addElement_",[aString]);
- smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self,"_methodClass",[]),"_methods",[]),"_select_",[(function(each){
- return smalltalk.send(smalltalk.send(each,"_category",[]),"__eq",[oldCategory]);
- })]),"_ifEmpty_",[(function(){
- return smalltalk.send(smalltalk.send(smalltalk.send(self,"_methodClass",[]),"_organization",[]),"_removeElement_",[oldCategory]);
- })]);
- };
- return self}
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_fn",
- smalltalk.method({
- selector: "fn",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(self, "_basicAt_", ["fn"]);
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_fn_",
- smalltalk.method({
- selector: "fn:",
- fn: function (aBlock) {
- var self = this;
- smalltalk.send(self, "_basicAt_put_", ["fn", aBlock]);
- return self;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_messageSends",
- smalltalk.method({
- selector: "messageSends",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(self, "_basicAt_", ["messageSends"]);
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_methodClass",
- smalltalk.method({
- selector: "methodClass",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(self, "_basicAt_", ["methodClass"]);
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_protocol",
- smalltalk.method({
- selector: "protocol",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(self, "_category", []);
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_referencedClasses",
- smalltalk.method({
- selector: "referencedClasses",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(self, "_basicAt_", ["referencedClasses"]);
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_selector",
- smalltalk.method({
- selector: "selector",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(self, "_basicAt_", ["selector"]);
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_selector_",
- smalltalk.method({
- selector: "selector:",
- fn: function (aString) {
- var self = this;
- smalltalk.send(self, "_basicAt_put_", ["selector", aString]);
- return self;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_source",
- smalltalk.method({
- selector: "source",
- fn: function () {
- var self = this;
- var $2, $1;
- $2 = smalltalk.send(self, "_basicAt_", ["source"]);
- if (($receiver = $2) == nil || $receiver == undefined) {
- $1 = "";
- } else {
- $1 = $2;
- }
- return $1;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addMethod(
- "_source_",
- smalltalk.method({
- selector: "source:",
- fn: function (aString) {
- var self = this;
- smalltalk.send(self, "_basicAt_put_", ["source", aString]);
- return self;
- }
- }),
- smalltalk.CompiledMethod);
- smalltalk.addClass('ForkPool', smalltalk.Object, ['poolSize', 'maxPoolSize', 'queue', 'worker'], 'Kernel-Methods');
- smalltalk.addMethod(
- "_addWorker",
- smalltalk.method({
- selector: "addWorker",
- fn: function (){
- var self=this;
- smalltalk.send(self["@worker"],"_valueWithTimeout_",[(0)]);
- self["@poolSize"]=smalltalk.send(self["@poolSize"],"__plus",[(1)]);
- return self}
- }),
- smalltalk.ForkPool);
- smalltalk.addMethod(
- "_defaultMaxPoolSize",
- smalltalk.method({
- selector: "defaultMaxPoolSize",
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self,"_class",[]),"_defaultMaxPoolSize",[]);
- return $1;
- }
- }),
- smalltalk.ForkPool);
- smalltalk.addMethod(
- "_fork_",
- smalltalk.method({
- selector: "fork:",
- fn: function (aBlock){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@poolSize"],"__lt",[smalltalk.send(self,"_maxPoolSize",[])]);
- if(smalltalk.assert($1)){
- smalltalk.send(self,"_addWorker",[]);
- };
- smalltalk.send(self["@queue"],"_back_",[aBlock]);
- return self}
- }),
- smalltalk.ForkPool);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_initialize",[],smalltalk.Object);
- self["@poolSize"]=(0);
- self["@queue"]=smalltalk.send((smalltalk.Queue || Queue),"_new",[]);
- self["@worker"]=smalltalk.send(self,"_makeWorker",[]);
- return self}
- }),
- smalltalk.ForkPool);
- smalltalk.addMethod(
- "_makeWorker",
- smalltalk.method({
- selector: "makeWorker",
- fn: function (){
- var self=this;
- var $2,$1;
- var sentinel;
- sentinel=smalltalk.send((smalltalk.Object || Object),"_new",[]);
- $1=(function(){
- var block;
- self["@poolSize"]=smalltalk.send(self["@poolSize"],"__minus",[(1)]);
- self["@poolSize"];
- block=smalltalk.send(self["@queue"],"_frontIfAbsent_",[(function(){
- return sentinel;
- })]);
- block;
- $2=smalltalk.send(block,"__eq_eq",[sentinel]);
- if(! smalltalk.assert($2)){
- return smalltalk.send((function(){
- return smalltalk.send(block,"_value",[]);
- }),"_ensure_",[(function(){
- return smalltalk.send(self,"_addWorker",[]);
- })]);
- };
- });
- return $1;
- }
- }),
- smalltalk.ForkPool);
- smalltalk.addMethod(
- "_maxPoolSize",
- smalltalk.method({
- selector: "maxPoolSize",
- fn: function (){
- var self=this;
- var $2,$1;
- $2=self["@maxPoolSize"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_defaultMaxPoolSize",[]);
- } else {
- $1=$2;
- };
- return $1;
- }
- }),
- smalltalk.ForkPool);
- smalltalk.addMethod(
- "_maxPoolSize_",
- smalltalk.method({
- selector: "maxPoolSize:",
- fn: function (anInteger){
- var self=this;
- self["@maxPoolSize"]=anInteger;
- return self}
- }),
- smalltalk.ForkPool);
- smalltalk.ForkPool.klass.iVarNames = ['default'];
- smalltalk.addMethod(
- "_default",
- smalltalk.method({
- selector: "default",
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@default"]) == nil || $receiver == undefined){
- self["@default"]=smalltalk.send(self,"_new",[]);
- $1=self["@default"];
- } else {
- $1=self["@default"];
- };
- return $1;
- }
- }),
- smalltalk.ForkPool.klass);
- smalltalk.addMethod(
- "_defaultMaxPoolSize",
- smalltalk.method({
- selector: "defaultMaxPoolSize",
- fn: function (){
- var self=this;
- return (100);
- }
- }),
- smalltalk.ForkPool.klass);
- smalltalk.addMethod(
- "_resetDefault",
- smalltalk.method({
- selector: "resetDefault",
- fn: function (){
- var self=this;
- self["@default"]=nil;
- return self}
- }),
- smalltalk.ForkPool.klass);
- smalltalk.addClass('Message', smalltalk.Object, ['selector', 'arguments'], 'Kernel-Methods');
- smalltalk.addMethod(
- "_arguments",
- smalltalk.method({
- selector: "arguments",
- fn: function () {
- var self = this;
- return self['@arguments'];
- }
- }),
- smalltalk.Message);
- smalltalk.addMethod(
- "_arguments_",
- smalltalk.method({
- selector: "arguments:",
- fn: function (anArray) {
- var self = this;
- self['@arguments'] = anArray;
- return self;
- }
- }),
- smalltalk.Message);
- smalltalk.addMethod(
- "_printString",
- smalltalk.method({
- selector: "printString",
- fn: function () {
- var self = this;
- var $2, $1;
- $1 = smalltalk.send(smalltalk.String || String, "_streamContents_", [function (aStream) {smalltalk.send(aStream, "_nextPutAll_", [smalltalk.send(self, "_printString", [], smalltalk.Object)]);smalltalk.send(aStream, "_nextPutAll_", ["("]);smalltalk.send(aStream, "_nextPutAll_", [self['@selector']]);$2 = smalltalk.send(aStream, "_nextPutAll_", [")"]);return $2;}]);
- return $1;
- }
- }),
- smalltalk.Message);
- smalltalk.addMethod(
- "_selector",
- smalltalk.method({
- selector: "selector",
- fn: function () {
- var self = this;
- return self['@selector'];
- }
- }),
- smalltalk.Message);
- smalltalk.addMethod(
- "_selector_",
- smalltalk.method({
- selector: "selector:",
- fn: function (aString) {
- var self = this;
- self['@selector'] = aString;
- return self;
- }
- }),
- smalltalk.Message);
- smalltalk.addMethod(
- "_sendTo_",
- smalltalk.method({
- selector: "sendTo:",
- fn: function (anObject) {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.send(smalltalk.Smalltalk || Smalltalk, "_current", []), "_send_to_arguments_", [smalltalk.send(self, "_selector", []), anObject, smalltalk.send(self, "_arguments", [])]);
- return $1;
- }
- }),
- smalltalk.Message);
- smalltalk.addMethod(
- "_selector_arguments_",
- smalltalk.method({
- selector: "selector:arguments:",
- fn: function (aString, anArray) {
- var self = this;
- var $2, $3, $1;
- $2 = smalltalk.send(self, "_new", []);
- smalltalk.send($2, "_selector_", [aString]);
- smalltalk.send($2, "_arguments_", [anArray]);
- $3 = smalltalk.send($2, "_yourself", []);
- $1 = $3;
- return $1;
- }
- }),
- smalltalk.Message.klass);
- smalltalk.addClass('MethodContext', smalltalk.Object, [], 'Kernel-Methods');
- smalltalk.addMethod(
- "_asString",
- smalltalk.method({
- selector: "asString",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_receiver", []), "_class", []), "_printString", []), "__comma", [" >> "]), "__comma", [smalltalk.send(self, "_selector", [])]);
- return $1;
- }
- }),
- smalltalk.MethodContext);
- smalltalk.addMethod(
- "_home",
- smalltalk.method({
- selector: "home",
- fn: function () {
- var self = this;
- return self.homeContext;
- return self;
- }
- }),
- smalltalk.MethodContext);
- smalltalk.addMethod(
- "_pc",
- smalltalk.method({
- selector: "pc",
- fn: function () {
- var self = this;
- return self.pc;
- return self;
- }
- }),
- smalltalk.MethodContext);
- smalltalk.addMethod(
- "_printString",
- smalltalk.method({
- selector: "printString",
- fn: function () {
- var self = this;
- var $1;
- $1 = smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_printString", [], smalltalk.Object), "__comma", ["("]), "__comma", [smalltalk.send(self, "_asString", [])]), "__comma", [")"]);
- return $1;
- }
- }),
- smalltalk.MethodContext);
- smalltalk.addMethod(
- "_receiver",
- smalltalk.method({
- selector: "receiver",
- fn: function () {
- var self = this;
- return self.receiver;
- return self;
- }
- }),
- smalltalk.MethodContext);
- smalltalk.addMethod(
- "_selector",
- smalltalk.method({
- selector: "selector",
- fn: function () {
- var self = this;
- return smalltalk.convertSelector(self.selector);
- return self;
- }
- }),
- smalltalk.MethodContext);
- smalltalk.addMethod(
- "_temps",
- smalltalk.method({
- selector: "temps",
- fn: function () {
- var self = this;
- return self.temps;
- return self;
- }
- }),
- smalltalk.MethodContext);
|