| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310 | (function(smalltalk,nil,_st){smalltalk.addPackage('Kernel-Methods');smalltalk.addClass('BlockClosure', smalltalk.Object, [], 'Kernel-Methods');smalltalk.addMethod(smalltalk.method({selector: "applyTo:arguments:",fn: function (anObject,aCollection){var self=this;return smalltalk.withContext(function($ctx1) { return self.apply(anObject, aCollection);return self}, function($ctx1) {$ctx1.fill(self,"applyTo:arguments:",{anObject:anObject,aCollection:aCollection},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "asCompiledMethod:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { return smalltalk.method({selector:aString, fn:self});;return self}, function($ctx1) {$ctx1.fill(self,"asCompiledMethod:",{aString:aString},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "compiledSource",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.toString();return self}, function($ctx1) {$ctx1.fill(self,"compiledSource",{},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "currySelf",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 		return function () {			var args = [ this ];			args.push.apply(args, arguments);			return self.apply(null, args);		}	;return self}, function($ctx1) {$ctx1.fill(self,"currySelf",{},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "ensure:",fn: function (aBlock){var self=this;return smalltalk.withContext(function($ctx1) { try{return self._value()}finally{aBlock._value()};return self}, function($ctx1) {$ctx1.fill(self,"ensure:",{aBlock:aBlock},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "fork",fn: function (){var self=this;function $ForkPool(){return smalltalk.ForkPool||(typeof ForkPool=="undefined"?nil:ForkPool)}return smalltalk.withContext(function($ctx1) { _st(_st($ForkPool())._default())._fork_(self);return self}, function($ctx1) {$ctx1.fill(self,"fork",{},smalltalk.BlockClosure)})},messageSends: ["fork:", "default"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "new",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return new self();return self}, function($ctx1) {$ctx1.fill(self,"new",{},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "newValue:",fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._newWithValues_([anObject]);return $1;}, function($ctx1) {$ctx1.fill(self,"newValue:",{anObject:anObject},smalltalk.BlockClosure)})},messageSends: ["newWithValues:"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "newValue:value:",fn: function (anObject,anObject2){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._newWithValues_([anObject,anObject2]);return $1;}, function($ctx1) {$ctx1.fill(self,"newValue:value:",{anObject:anObject,anObject2:anObject2},smalltalk.BlockClosure)})},messageSends: ["newWithValues:"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "newValue:value:value:",fn: function (anObject,anObject2,anObject3){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._newWithValues_([anObject,anObject2,anObject3]);return $1;}, function($ctx1) {$ctx1.fill(self,"newValue:value:value:",{anObject:anObject,anObject2:anObject2,anObject3:anObject3},smalltalk.BlockClosure)})},messageSends: ["newWithValues:"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "newWithValues:",fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx1) { 	var constructor = function() {};	constructor.prototype = self.prototype;	var object = new constructor;	var result = self.apply(object, aCollection);	return typeof result === "object" ? result : object;;return self}, function($ctx1) {$ctx1.fill(self,"newWithValues:",{aCollection:aCollection},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "numArgs",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.length;return self}, function($ctx1) {$ctx1.fill(self,"numArgs",{},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "on:do:",fn: function (anErrorClass,aBlock){var self=this;function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}return smalltalk.withContext(function($ctx1) { var $2,$1;$1=self._try_catch_(self,(function(error){var smalltalkError;return smalltalk.withContext(function($ctx2) {smalltalkError=_st(_st($Smalltalk())._current())._asSmalltalkException_(error);smalltalkError;$2=_st(smalltalkError)._isKindOf_(anErrorClass);if(smalltalk.assert($2)){return _st(aBlock)._value_(smalltalkError);} else {return _st(smalltalkError)._resignal();};}, function($ctx2) {$ctx2.fillBlock({error:error,smalltalkError:smalltalkError},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"on:do:",{anErrorClass:anErrorClass,aBlock:aBlock},smalltalk.BlockClosure)})},messageSends: ["try:catch:", "asSmalltalkException:", "current", "ifTrue:ifFalse:", "value:", "resignal", "isKindOf:"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "receiver",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return nil;}, function($ctx1) {$ctx1.fill(self,"receiver",{},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "timeToRun",fn: function (){var self=this;function $Date(){return smalltalk.Date||(typeof Date=="undefined"?nil:Date)}return smalltalk.withContext(function($ctx1) { var $1;$1=_st($Date())._millisecondsToRun_(self);return $1;}, function($ctx1) {$ctx1.fill(self,"timeToRun",{},smalltalk.BlockClosure)})},messageSends: ["millisecondsToRun:"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "value",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self();;return self}, function($ctx1) {$ctx1.fill(self,"value",{},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "value:",fn: function (anArg){var self=this;return smalltalk.withContext(function($ctx1) { return self(anArg);;return self}, function($ctx1) {$ctx1.fill(self,"value:",{anArg:anArg},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "value:value:",fn: function (firstArg,secondArg){var self=this;return smalltalk.withContext(function($ctx1) { return self(firstArg, secondArg);;return self}, function($ctx1) {$ctx1.fill(self,"value:value:",{firstArg:firstArg,secondArg:secondArg},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "value:value:value:",fn: function (firstArg,secondArg,thirdArg){var self=this;return smalltalk.withContext(function($ctx1) { return self(firstArg, secondArg, thirdArg);;return self}, function($ctx1) {$ctx1.fill(self,"value:value:value:",{firstArg:firstArg,secondArg:secondArg,thirdArg:thirdArg},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "valueWithInterval:",fn: function (aNumber){var self=this;return smalltalk.withContext(function($ctx1) { 		var interval = setInterval(self, aNumber);		return smalltalk.Timeout._on_(interval);	;return self}, function($ctx1) {$ctx1.fill(self,"valueWithInterval:",{aNumber:aNumber},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "valueWithPossibleArguments:",fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx1) { return self.apply(null, aCollection);;return self}, function($ctx1) {$ctx1.fill(self,"valueWithPossibleArguments:",{aCollection:aCollection},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "valueWithTimeout:",fn: function (aNumber){var self=this;return smalltalk.withContext(function($ctx1) { 		var timeout = setTimeout(self, aNumber);		return smalltalk.Timeout._on_(timeout);	;return self}, function($ctx1) {$ctx1.fill(self,"valueWithTimeout:",{aNumber:aNumber},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "whileFalse",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { self._whileFalse_((function(){return smalltalk.withContext(function($ctx2) {}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"whileFalse",{},smalltalk.BlockClosure)})},messageSends: ["whileFalse:"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "whileFalse:",fn: function (aBlock){var self=this;return smalltalk.withContext(function($ctx1) { while(!smalltalk.assert(self._value())) {aBlock._value()};return self}, function($ctx1) {$ctx1.fill(self,"whileFalse:",{aBlock:aBlock},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "whileTrue",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { self._whileTrue_((function(){return smalltalk.withContext(function($ctx2) {}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"whileTrue",{},smalltalk.BlockClosure)})},messageSends: ["whileTrue:"]}),smalltalk.BlockClosure);smalltalk.addMethod(smalltalk.method({selector: "whileTrue:",fn: function (aBlock){var self=this;return smalltalk.withContext(function($ctx1) { while(smalltalk.assert(self._value())) {aBlock._value()};return self}, function($ctx1) {$ctx1.fill(self,"whileTrue:",{aBlock:aBlock},smalltalk.BlockClosure)})},messageSends: []}),smalltalk.BlockClosure);smalltalk.addClass('CompiledMethod', smalltalk.Object, [], 'Kernel-Methods');smalltalk.addMethod(smalltalk.method({selector: "arguments",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.args || [];return self}, function($ctx1) {$ctx1.fill(self,"arguments",{},smalltalk.CompiledMethod)})},messageSends: []}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "category",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self._basicAt_("category");if(($receiver = $2) == nil || $receiver == undefined){$1=self._defaultCategory();} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.CompiledMethod)})},messageSends: ["ifNil:", "defaultCategory", "basicAt:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "category:",fn: function (aString){var self=this;var oldProtocol;function $MethodMoved(){return smalltalk.MethodMoved||(typeof MethodMoved=="undefined"?nil:MethodMoved)}function $SystemAnnouncer(){return smalltalk.SystemAnnouncer||(typeof SystemAnnouncer=="undefined"?nil:SystemAnnouncer)}return smalltalk.withContext(function($ctx1) { var $1,$2,$3;oldProtocol=self._protocol();self._basicAt_put_("category",aString);$1=_st($MethodMoved())._new();_st($1)._method_(self);_st($1)._oldProtocol_(oldProtocol);$2=_st($1)._yourself();_st(_st($SystemAnnouncer())._current())._announce_($2);$3=self._methodClass();if(($receiver = $3) == nil || $receiver == undefined){$3;} else {_st(_st(self._methodClass())._organization())._addElement_(aString);_st(_st(_st(self._methodClass())._methods())._select_((function(each){return smalltalk.withContext(function($ctx2) {return _st(_st(each)._protocol()).__eq(oldProtocol);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._ifEmpty_((function(){return smalltalk.withContext(function($ctx2) {return _st(_st(self._methodClass())._organization())._removeElement_(oldProtocol);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));};return self}, function($ctx1) {$ctx1.fill(self,"category:",{aString:aString,oldProtocol:oldProtocol},smalltalk.CompiledMethod)})},messageSends: ["protocol", "basicAt:put:", "announce:", "method:", "new", "oldProtocol:", "yourself", "current", "ifNotNil:", "addElement:", "organization", "methodClass", "ifEmpty:", "removeElement:", "select:", "=", "methods"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "defaultCategory",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return "as yet unclassified";}, function($ctx1) {$ctx1.fill(self,"defaultCategory",{},smalltalk.CompiledMethod)})},messageSends: []}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "fn",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._basicAt_("fn");return $1;}, function($ctx1) {$ctx1.fill(self,"fn",{},smalltalk.CompiledMethod)})},messageSends: ["basicAt:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "fn:",fn: function (aBlock){var self=this;return smalltalk.withContext(function($ctx1) { self._basicAt_put_("fn",aBlock);return self}, function($ctx1) {$ctx1.fill(self,"fn:",{aBlock:aBlock},smalltalk.CompiledMethod)})},messageSends: ["basicAt:put:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "isCompiledMethod",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return true;}, function($ctx1) {$ctx1.fill(self,"isCompiledMethod",{},smalltalk.CompiledMethod)})},messageSends: []}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "isOverridden",fn: function (){var self=this;var selector;return smalltalk.withContext(function($ctx1) { var $1;var $early={};try {selector=self._selector();_st(self._methodClass())._allSubclassesDo_((function(each){return smalltalk.withContext(function($ctx2) {$1=_st(each)._includesSelector_(selector);if(smalltalk.assert($1)){throw $early=[true];};}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return false;}catch(e) {if(e===$early)return e[0]; throw e}}, function($ctx1) {$ctx1.fill(self,"isOverridden",{selector:selector},smalltalk.CompiledMethod)})},messageSends: ["selector", "allSubclassesDo:", "ifTrue:", "includesSelector:", "methodClass"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "isOverride",fn: function (){var self=this;var superclass;return smalltalk.withContext(function($ctx1) { var $1,$2;superclass=_st(self._methodClass())._superclass();$1=superclass;if(($receiver = $1) == nil || $receiver == undefined){return false;} else {$1;};$2=_st(_st(_st(self._methodClass())._superclass())._lookupSelector_(self._selector()))._notNil();return $2;}, function($ctx1) {$ctx1.fill(self,"isOverride",{superclass:superclass},smalltalk.CompiledMethod)})},messageSends: ["superclass", "methodClass", "ifNil:", "notNil", "lookupSelector:", "selector"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "messageSends",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._basicAt_("messageSends");return $1;}, function($ctx1) {$ctx1.fill(self,"messageSends",{},smalltalk.CompiledMethod)})},messageSends: ["basicAt:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "methodClass",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._basicAt_("methodClass");return $1;}, function($ctx1) {$ctx1.fill(self,"methodClass",{},smalltalk.CompiledMethod)})},messageSends: ["basicAt:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "protocol",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._category();return $1;}, function($ctx1) {$ctx1.fill(self,"protocol",{},smalltalk.CompiledMethod)})},messageSends: ["category"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "protocol:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { self._category_(aString);return self}, function($ctx1) {$ctx1.fill(self,"protocol:",{aString:aString},smalltalk.CompiledMethod)})},messageSends: ["category:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "referencedClasses",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._basicAt_("referencedClasses");return $1;}, function($ctx1) {$ctx1.fill(self,"referencedClasses",{},smalltalk.CompiledMethod)})},messageSends: ["basicAt:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "selector",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self._basicAt_("selector");return $1;}, function($ctx1) {$ctx1.fill(self,"selector",{},smalltalk.CompiledMethod)})},messageSends: ["basicAt:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "selector:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { self._basicAt_put_("selector",aString);return self}, function($ctx1) {$ctx1.fill(self,"selector:",{aString:aString},smalltalk.CompiledMethod)})},messageSends: ["basicAt:put:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "source",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self._basicAt_("source");if(($receiver = $2) == nil || $receiver == undefined){$1="";} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"source",{},smalltalk.CompiledMethod)})},messageSends: ["ifNil:", "basicAt:"]}),smalltalk.CompiledMethod);smalltalk.addMethod(smalltalk.method({selector: "source:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { self._basicAt_put_("source",aString);return self}, function($ctx1) {$ctx1.fill(self,"source:",{aString:aString},smalltalk.CompiledMethod)})},messageSends: ["basicAt:put:"]}),smalltalk.CompiledMethod);smalltalk.addClass('ForkPool', smalltalk.Object, ['poolSize', 'maxPoolSize', 'queue', 'worker'], 'Kernel-Methods');smalltalk.addMethod(smalltalk.method({selector: "addWorker",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { _st(self["@worker"])._valueWithTimeout_((0));self["@poolSize"]=_st(self["@poolSize"]).__plus((1));return self}, function($ctx1) {$ctx1.fill(self,"addWorker",{},smalltalk.ForkPool)})},messageSends: ["valueWithTimeout:", "+"]}),smalltalk.ForkPool);smalltalk.addMethod(smalltalk.method({selector: "defaultMaxPoolSize",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self._class())._defaultMaxPoolSize();return $1;}, function($ctx1) {$ctx1.fill(self,"defaultMaxPoolSize",{},smalltalk.ForkPool)})},messageSends: ["defaultMaxPoolSize", "class"]}),smalltalk.ForkPool);smalltalk.addMethod(smalltalk.method({selector: "fork:",fn: function (aBlock){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self["@poolSize"]).__lt(self._maxPoolSize());if(smalltalk.assert($1)){self._addWorker();};_st(self["@queue"])._nextPut_(aBlock);return self}, function($ctx1) {$ctx1.fill(self,"fork:",{aBlock:aBlock},smalltalk.ForkPool)})},messageSends: ["ifTrue:", "addWorker", "<", "maxPoolSize", "nextPut:"]}),smalltalk.ForkPool);smalltalk.addMethod(smalltalk.method({selector: "initialize",fn: function (){var self=this;function $Queue(){return smalltalk.Queue||(typeof Queue=="undefined"?nil:Queue)}return smalltalk.withContext(function($ctx1) { smalltalk.ForkPool.superclass.fn.prototype._initialize.apply(_st(self), []);self["@poolSize"]=(0);self["@queue"]=_st($Queue())._new();self["@worker"]=self._makeWorker();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.ForkPool)})},messageSends: ["initialize", "new", "makeWorker"]}),smalltalk.ForkPool);smalltalk.addMethod(smalltalk.method({selector: "makeWorker",fn: function (){var self=this;var sentinel;function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}return smalltalk.withContext(function($ctx1) { var $2,$1;sentinel=_st($Object())._new();$1=(function(){var block;return smalltalk.withContext(function($ctx2) {self["@poolSize"]=_st(self["@poolSize"]).__minus((1));self["@poolSize"];block=_st(self["@queue"])._nextIfAbsent_((function(){return smalltalk.withContext(function($ctx3) {return sentinel;}, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}));block;$2=_st(block).__eq_eq(sentinel);if(! smalltalk.assert($2)){return _st((function(){return smalltalk.withContext(function($ctx3) {return _st(block)._value();}, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}))._ensure_((function(){return smalltalk.withContext(function($ctx3) {return self._addWorker();}, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}));};}, function($ctx2) {$ctx2.fillBlock({block:block},$ctx1)})});return $1;}, function($ctx1) {$ctx1.fill(self,"makeWorker",{sentinel:sentinel},smalltalk.ForkPool)})},messageSends: ["new", "-", "nextIfAbsent:", "ifFalse:", "ensure:", "addWorker", "value", "=="]}),smalltalk.ForkPool);smalltalk.addMethod(smalltalk.method({selector: "maxPoolSize",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@maxPoolSize"];if(($receiver = $2) == nil || $receiver == undefined){$1=self._defaultMaxPoolSize();} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"maxPoolSize",{},smalltalk.ForkPool)})},messageSends: ["ifNil:", "defaultMaxPoolSize"]}),smalltalk.ForkPool);smalltalk.addMethod(smalltalk.method({selector: "maxPoolSize:",fn: function (anInteger){var self=this;return smalltalk.withContext(function($ctx1) { self["@maxPoolSize"]=anInteger;return self}, function($ctx1) {$ctx1.fill(self,"maxPoolSize:",{anInteger:anInteger},smalltalk.ForkPool)})},messageSends: []}),smalltalk.ForkPool);smalltalk.ForkPool.klass.iVarNames = ['default'];smalltalk.addMethod(smalltalk.method({selector: "default",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self["@default"];if(($receiver = $2) == nil || $receiver == undefined){self["@default"]=self._new();$1=self["@default"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"default",{},smalltalk.ForkPool.klass)})},messageSends: ["ifNil:", "new"]}),smalltalk.ForkPool.klass);smalltalk.addMethod(smalltalk.method({selector: "defaultMaxPoolSize",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return (100);}, function($ctx1) {$ctx1.fill(self,"defaultMaxPoolSize",{},smalltalk.ForkPool.klass)})},messageSends: []}),smalltalk.ForkPool.klass);smalltalk.addMethod(smalltalk.method({selector: "resetDefault",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { self["@default"]=nil;return self}, function($ctx1) {$ctx1.fill(self,"resetDefault",{},smalltalk.ForkPool.klass)})},messageSends: []}),smalltalk.ForkPool.klass);smalltalk.addClass('Message', smalltalk.Object, ['selector', 'arguments'], 'Kernel-Methods');smalltalk.addMethod(smalltalk.method({selector: "arguments",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@arguments"];return $1;}, function($ctx1) {$ctx1.fill(self,"arguments",{},smalltalk.Message)})},messageSends: []}),smalltalk.Message);smalltalk.addMethod(smalltalk.method({selector: "arguments:",fn: function (anArray){var self=this;return smalltalk.withContext(function($ctx1) { self["@arguments"]=anArray;return self}, function($ctx1) {$ctx1.fill(self,"arguments:",{anArray:anArray},smalltalk.Message)})},messageSends: []}),smalltalk.Message);smalltalk.addMethod(smalltalk.method({selector: "printOn:",fn: function (aStream){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;smalltalk.Message.superclass.fn.prototype._printOn_.apply(_st(self), [aStream]);$1=aStream;_st($1)._nextPutAll_("(");_st($1)._nextPutAll_(self._selector());$2=_st($1)._nextPutAll_(")");return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.Message)})},messageSends: ["printOn:", "nextPutAll:", "selector"]}),smalltalk.Message);smalltalk.addMethod(smalltalk.method({selector: "selector",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@selector"];return $1;}, function($ctx1) {$ctx1.fill(self,"selector",{},smalltalk.Message)})},messageSends: []}),smalltalk.Message);smalltalk.addMethod(smalltalk.method({selector: "selector:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { self["@selector"]=aString;return self}, function($ctx1) {$ctx1.fill(self,"selector:",{aString:aString},smalltalk.Message)})},messageSends: []}),smalltalk.Message);smalltalk.addMethod(smalltalk.method({selector: "sendTo:",fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(anObject)._perform_withArguments_(self._selector(),self._arguments());return $1;}, function($ctx1) {$ctx1.fill(self,"sendTo:",{anObject:anObject},smalltalk.Message)})},messageSends: ["perform:withArguments:", "selector", "arguments"]}),smalltalk.Message);smalltalk.addMethod(smalltalk.method({selector: "selector:arguments:",fn: function (aString,anArray){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$3,$1;$2=self._new();_st($2)._selector_(aString);_st($2)._arguments_(anArray);$3=_st($2)._yourself();$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"selector:arguments:",{aString:aString,anArray:anArray},smalltalk.Message.klass)})},messageSends: ["selector:", "new", "arguments:", "yourself"]}),smalltalk.Message.klass);smalltalk.addClass('MessageSend', smalltalk.Object, ['receiver', 'message'], 'Kernel-Methods');smalltalk.addMethod(smalltalk.method({selector: "arguments",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self["@message"])._arguments();return $1;}, function($ctx1) {$ctx1.fill(self,"arguments",{},smalltalk.MessageSend)})},messageSends: ["arguments"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "arguments:",fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx1) { _st(self["@message"])._arguments_(aCollection);return self}, function($ctx1) {$ctx1.fill(self,"arguments:",{aCollection:aCollection},smalltalk.MessageSend)})},messageSends: ["arguments:"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "initialize",fn: function (){var self=this;function $Message(){return smalltalk.Message||(typeof Message=="undefined"?nil:Message)}return smalltalk.withContext(function($ctx1) { smalltalk.MessageSend.superclass.fn.prototype._initialize.apply(_st(self), []);self["@message"]=_st($Message())._new();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.MessageSend)})},messageSends: ["initialize", "new"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "printOn:",fn: function (aStream){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;smalltalk.MessageSend.superclass.fn.prototype._printOn_.apply(_st(self), [aStream]);$1=aStream;_st($1)._nextPutAll_("(");_st($1)._nextPutAll_(self._receiver());_st($1)._nextPutAll_(" >> ");_st($1)._nextPutAll_(self._selector());$2=_st($1)._nextPutAll_(")");return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.MessageSend)})},messageSends: ["printOn:", "nextPutAll:", "receiver", "selector"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "receiver",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=self["@receiver"];return $1;}, function($ctx1) {$ctx1.fill(self,"receiver",{},smalltalk.MessageSend)})},messageSends: []}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "receiver:",fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { self["@receiver"]=anObject;return self}, function($ctx1) {$ctx1.fill(self,"receiver:",{anObject:anObject},smalltalk.MessageSend)})},messageSends: []}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "selector",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self["@message"])._selector();return $1;}, function($ctx1) {$ctx1.fill(self,"selector",{},smalltalk.MessageSend)})},messageSends: ["selector"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "selector:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { _st(self["@message"])._selector_(aString);return self}, function($ctx1) {$ctx1.fill(self,"selector:",{aString:aString},smalltalk.MessageSend)})},messageSends: ["selector:"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "value",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self["@message"])._sendTo_(self._receiver());return $1;}, function($ctx1) {$ctx1.fill(self,"value",{},smalltalk.MessageSend)})},messageSends: ["sendTo:", "receiver"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "value:",fn: function (anObject){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$3,$1;$2=self["@message"];_st($2)._arguments_([anObject]);$3=_st($2)._sendTo_(self._receiver());$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"value:",{anObject:anObject},smalltalk.MessageSend)})},messageSends: ["arguments:", "sendTo:", "receiver"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "value:value:",fn: function (firstArgument,secondArgument){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$3,$1;$2=self["@message"];_st($2)._arguments_([firstArgument,secondArgument]);$3=_st($2)._sendTo_(self._receiver());$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"value:value:",{firstArgument:firstArgument,secondArgument:secondArgument},smalltalk.MessageSend)})},messageSends: ["arguments:", "sendTo:", "receiver"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "value:value:value:",fn: function (firstArgument,secondArgument,thirdArgument){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$3,$1;$2=self["@message"];_st($2)._arguments_([firstArgument,secondArgument,thirdArgument]);$3=_st($2)._sendTo_(self._receiver());$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"value:value:value:",{firstArgument:firstArgument,secondArgument:secondArgument,thirdArgument:thirdArgument},smalltalk.MessageSend)})},messageSends: ["arguments:", "sendTo:", "receiver"]}),smalltalk.MessageSend);smalltalk.addMethod(smalltalk.method({selector: "valueWithPossibleArguments:",fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx1) { var $1;self._arguments_(aCollection);$1=self._value();return $1;}, function($ctx1) {$ctx1.fill(self,"valueWithPossibleArguments:",{aCollection:aCollection},smalltalk.MessageSend)})},messageSends: ["arguments:", "value"]}),smalltalk.MessageSend);smalltalk.addClass('MethodContext', smalltalk.Object, [], 'Kernel-Methods');smalltalk.addMethod(smalltalk.method({selector: "asString",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self._isBlockContext();if(smalltalk.assert($2)){$1=_st("a block (in ".__comma(_st(self._methodContext())._asString())).__comma(")");} else {$1=_st(_st(_st(_st(self._receiver())._class())._name()).__comma(" >> ")).__comma(self._selector());};return $1;}, function($ctx1) {$ctx1.fill(self,"asString",{},smalltalk.MethodContext)})},messageSends: ["ifTrue:ifFalse:", ",", "asString", "methodContext", "selector", "name", "class", "receiver", "isBlockContext"]}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "home",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.homeContext;return self}, function($ctx1) {$ctx1.fill(self,"home",{},smalltalk.MethodContext)})},messageSends: []}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "isBlockContext",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;$1=_st(self._selector())._isNil();return $1;}, function($ctx1) {$ctx1.fill(self,"isBlockContext",{},smalltalk.MethodContext)})},messageSends: ["isNil", "selector"]}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "locals",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.locals || {};return self}, function($ctx1) {$ctx1.fill(self,"locals",{},smalltalk.MethodContext)})},messageSends: []}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "method",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $2,$1;$2=self._methodContext();if(($receiver = $2) == nil || $receiver == undefined){$1=$2;} else {$1=_st(_st(_st(self._methodContext())._receiver())._class())._lookupSelector_(_st(self._methodContext())._selector());};return $1;}, function($ctx1) {$ctx1.fill(self,"method",{},smalltalk.MethodContext)})},messageSends: ["ifNotNil:", "lookupSelector:", "selector", "methodContext", "class", "receiver"]}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "methodContext",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2,$4,$3;$1=self._isBlockContext();if(! smalltalk.assert($1)){$2=self;return $2;};$4=self._home();if(($receiver = $4) == nil || $receiver == undefined){$3=$4;} else {var home;home=$receiver;$3=_st(home)._methodContext();};return $3;}, function($ctx1) {$ctx1.fill(self,"methodContext",{},smalltalk.MethodContext)})},messageSends: ["ifFalse:", "isBlockContext", "ifNotNil:", "methodContext", "home"]}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "outerContext",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.outerContext || self.homeContext;return self}, function($ctx1) {$ctx1.fill(self,"outerContext",{},smalltalk.MethodContext)})},messageSends: []}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "pc",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.pc;return self}, function($ctx1) {$ctx1.fill(self,"pc",{},smalltalk.MethodContext)})},messageSends: []}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "printOn:",fn: function (aStream){var self=this;return smalltalk.withContext(function($ctx1) { var $1,$2;smalltalk.MethodContext.superclass.fn.prototype._printOn_.apply(_st(self), [aStream]);$1=aStream;_st($1)._nextPutAll_("(");_st($1)._nextPutAll_(self._asString());$2=_st($1)._nextPutAll_(")");return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.MethodContext)})},messageSends: ["printOn:", "nextPutAll:", "asString"]}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "receiver",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { return self.receiver;return self}, function($ctx1) {$ctx1.fill(self,"receiver",{},smalltalk.MethodContext)})},messageSends: []}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "selector",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 		if(self.selector) {			return smalltalk.convertSelector(self.selector);		} else {			return nil;		}	;return self}, function($ctx1) {$ctx1.fill(self,"selector",{},smalltalk.MethodContext)})},messageSends: []}),smalltalk.MethodContext);smalltalk.addMethod(smalltalk.method({selector: "temps",fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { var $1;self._deprecatedAPI();$1=self._locals();return $1;}, function($ctx1) {$ctx1.fill(self,"temps",{},smalltalk.MethodContext)})},messageSends: ["deprecatedAPI", "locals"]}),smalltalk.MethodContext);smalltalk.addClass('NativeFunction', smalltalk.Object, [], 'Kernel-Methods');smalltalk.addMethod(smalltalk.method({selector: "constructor:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 		var native=eval(aString);		return new native();	;return self}, function($ctx1) {$ctx1.fill(self,"constructor:",{aString:aString},smalltalk.NativeFunction.klass)})},messageSends: []}),smalltalk.NativeFunction.klass);smalltalk.addMethod(smalltalk.method({selector: "constructor:value:",fn: function (aString,anObject){var self=this;return smalltalk.withContext(function($ctx1) { 		var native=eval(aString);		return new native(anObject);	;return self}, function($ctx1) {$ctx1.fill(self,"constructor:value:",{aString:aString,anObject:anObject},smalltalk.NativeFunction.klass)})},messageSends: []}),smalltalk.NativeFunction.klass);smalltalk.addMethod(smalltalk.method({selector: "constructor:value:value:",fn: function (aString,anObject,anObject2){var self=this;return smalltalk.withContext(function($ctx1) { 		var native=eval(aString);		return new native(anObject,anObject2);	;return self}, function($ctx1) {$ctx1.fill(self,"constructor:value:value:",{aString:aString,anObject:anObject,anObject2:anObject2},smalltalk.NativeFunction.klass)})},messageSends: []}),smalltalk.NativeFunction.klass);smalltalk.addMethod(smalltalk.method({selector: "constructor:value:value:value:",fn: function (aString,anObject,anObject2,anObject3){var self=this;return smalltalk.withContext(function($ctx1) { 		var native=eval(aString);		return new native(anObject,anObject2, anObject3);	;return self}, function($ctx1) {$ctx1.fill(self,"constructor:value:value:value:",{aString:aString,anObject:anObject,anObject2:anObject2,anObject3:anObject3},smalltalk.NativeFunction.klass)})},messageSends: []}),smalltalk.NativeFunction.klass);smalltalk.addMethod(smalltalk.method({selector: "exists:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 		if(aString in window) {			return true		} else {			return false		}	;return self}, function($ctx1) {$ctx1.fill(self,"exists:",{aString:aString},smalltalk.NativeFunction.klass)})},messageSends: []}),smalltalk.NativeFunction.klass);})(global_smalltalk,global_nil,global__st);
 |