smalltalk.addPackage('Kernel-Collections'); smalltalk.addClass('Association', smalltalk.Object, ['key', 'value'], 'Kernel-Collections'); smalltalk.addMethod( "__eq", smalltalk.method({ selector: "=", fn: function (anAssociation){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(_st(self)._class()).__eq(_st(anAssociation)._class()))._and_((function(){ return smalltalk.withContext(function($ctx2) { return _st(_st(_st(self)._key()).__eq(_st(anAssociation)._key()))._and_((function(){ return smalltalk.withContext(function($ctx3) { return _st(_st(self)._value()).__eq(_st(anAssociation)._value()); }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})})); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"=",{anAssociation:anAssociation},smalltalk.Association)})}, messageSends: ["and:", "=", "value", "key", "class"]}), smalltalk.Association); smalltalk.addMethod( "_key", smalltalk.method({ selector: "key", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self["@key"]; return $1; }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.Association)})}, messageSends: []}), smalltalk.Association); smalltalk.addMethod( "_key_", smalltalk.method({ selector: "key:", fn: function (aKey){ var self=this; return smalltalk.withContext(function($ctx1) { self["@key"]=aKey; return self}, function($ctx1) {$ctx1.fill(self,"key:",{aKey:aKey},smalltalk.Association)})}, messageSends: []}), smalltalk.Association); smalltalk.addMethod( "_printString", smalltalk.method({ selector: "printString", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.String || String))._streamContents_((function(aStream){ return smalltalk.withContext(function($ctx2) { return _st(self)._storeOn_(aStream); }, function($ctx2) {$ctx2.fillBlock({aStream:aStream},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"printString",{},smalltalk.Association)})}, messageSends: ["streamContents:", "storeOn:"]}), smalltalk.Association); smalltalk.addMethod( "_storeOn_", smalltalk.method({ selector: "storeOn:", fn: function (aStream){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self["@key"])._storeOn_(aStream); _st(aStream)._nextPutAll_("->"); _st(self["@value"])._storeOn_(aStream); return self}, function($ctx1) {$ctx1.fill(self,"storeOn:",{aStream:aStream},smalltalk.Association)})}, messageSends: ["storeOn:", "nextPutAll:"]}), smalltalk.Association); smalltalk.addMethod( "_value", smalltalk.method({ selector: "value", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self["@value"]; return $1; }, function($ctx1) {$ctx1.fill(self,"value",{},smalltalk.Association)})}, messageSends: []}), smalltalk.Association); smalltalk.addMethod( "_value_", smalltalk.method({ selector: "value:", fn: function (aValue){ var self=this; return smalltalk.withContext(function($ctx1) { self["@value"]=aValue; return self}, function($ctx1) {$ctx1.fill(self,"value:",{aValue:aValue},smalltalk.Association)})}, messageSends: []}), smalltalk.Association); smalltalk.addMethod( "_key_value_", smalltalk.method({ selector: "key:value:", fn: function (aKey,aValue){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._new(); _st($2)._key_(aKey); _st($2)._value_(aValue); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"key:value:",{aKey:aKey,aValue:aValue},smalltalk.Association.klass)})}, messageSends: ["key:", "new", "value:", "yourself"]}), smalltalk.Association.klass); smalltalk.addClass('Collection', smalltalk.Object, [], 'Kernel-Collections'); smalltalk.addMethod( "__comma", smalltalk.method({ selector: ",", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._copy(); _st($2)._addAll_(aCollection); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,",",{aCollection:aCollection},smalltalk.Collection)})}, messageSends: ["addAll:", "copy", "yourself"]}), smalltalk.Collection); smalltalk.addMethod( "_add_", smalltalk.method({ selector: "add:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassResponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"add:",{anObject:anObject},smalltalk.Collection)})}, messageSends: ["subclassResponsibility"]}), smalltalk.Collection); smalltalk.addMethod( "_addAll_", smalltalk.method({ selector: "addAll:", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; _st(aCollection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(self)._add_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $1=aCollection; return $1; }, function($ctx1) {$ctx1.fill(self,"addAll:",{aCollection:aCollection},smalltalk.Collection)})}, messageSends: ["do:", "add:"]}), smalltalk.Collection); smalltalk.addMethod( "_asArray", smalltalk.method({ selector: "asArray", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.Array || Array))._withAll_(self); return $1; }, function($ctx1) {$ctx1.fill(self,"asArray",{},smalltalk.Collection)})}, messageSends: ["withAll:"]}), smalltalk.Collection); smalltalk.addMethod( "_asJSON", smalltalk.method({ selector: "asJSON", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asArray())._collect_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each)._asJSON(); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"asJSON",{},smalltalk.Collection)})}, messageSends: ["collect:", "asJSON", "asArray"]}), smalltalk.Collection); smalltalk.addMethod( "_asOrderedCollection", smalltalk.method({ selector: "asOrderedCollection", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._asArray(); return $1; }, function($ctx1) {$ctx1.fill(self,"asOrderedCollection",{},smalltalk.Collection)})}, messageSends: ["asArray"]}), smalltalk.Collection); smalltalk.addMethod( "_asSet", smalltalk.method({ selector: "asSet", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.Set || Set))._withAll_(self); return $1; }, function($ctx1) {$ctx1.fill(self,"asSet",{},smalltalk.Collection)})}, messageSends: ["withAll:"]}), smalltalk.Collection); smalltalk.addMethod( "_collect_", smalltalk.method({ selector: "collect:", fn: function (aBlock){ var self=this; var stream; return smalltalk.withContext(function($ctx1) { var $1; stream=_st(_st(_st(self)._class())._new())._writeStream(); _st(self)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(stream)._nextPut_(_st(aBlock)._value_(each)); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $1=_st(stream)._contents(); return $1; }, function($ctx1) {$ctx1.fill(self,"collect:",{aBlock:aBlock,stream:stream},smalltalk.Collection)})}, messageSends: ["writeStream", "new", "class", "do:", "nextPut:", "value:", "contents"]}), smalltalk.Collection); smalltalk.addMethod( "_copyWith_", smalltalk.method({ selector: "copyWith:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._copy(); _st($2)._add_(anObject); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"copyWith:",{anObject:anObject},smalltalk.Collection)})}, messageSends: ["add:", "copy", "yourself"]}), smalltalk.Collection); smalltalk.addMethod( "_copyWithAll_", smalltalk.method({ selector: "copyWithAll:", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._copy(); _st($2)._addAll_(aCollection); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"copyWithAll:",{aCollection:aCollection},smalltalk.Collection)})}, messageSends: ["addAll:", "copy", "yourself"]}), smalltalk.Collection); smalltalk.addMethod( "_copyWithoutAll_", smalltalk.method({ selector: "copyWithoutAll:", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._reject_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(aCollection)._includes_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"copyWithoutAll:",{aCollection:aCollection},smalltalk.Collection)})}, messageSends: ["reject:", "includes:"]}), smalltalk.Collection); smalltalk.addMethod( "_detect_", smalltalk.method({ selector: "detect:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._detect_ifNone_(aBlock,(function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._errorNotFound(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"detect:",{aBlock:aBlock},smalltalk.Collection)})}, messageSends: ["detect:ifNone:", "errorNotFound"]}), smalltalk.Collection); smalltalk.addMethod( "_detect_ifNone_", smalltalk.method({ selector: "detect:ifNone:", fn: function (aBlock,anotherBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassResponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"detect:ifNone:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.Collection)})}, messageSends: ["subclassResponsibility"]}), smalltalk.Collection); smalltalk.addMethod( "_do_", smalltalk.method({ selector: "do:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassResponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"do:",{aBlock:aBlock},smalltalk.Collection)})}, messageSends: ["subclassResponsibility"]}), smalltalk.Collection); smalltalk.addMethod( "_do_separatedBy_", smalltalk.method({ selector: "do:separatedBy:", fn: function (aBlock,anotherBlock){ var self=this; var actionBeforeElement; return smalltalk.withContext(function($ctx1) { actionBeforeElement=(function(){ return smalltalk.withContext(function($ctx2) { actionBeforeElement=anotherBlock; return actionBeforeElement; }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}); _st(self)._do_((function(each){ return smalltalk.withContext(function($ctx2) { _st(actionBeforeElement)._value(); return _st(aBlock)._value_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"do:separatedBy:",{aBlock:aBlock,anotherBlock:anotherBlock,actionBeforeElement:actionBeforeElement},smalltalk.Collection)})}, messageSends: ["do:", "value", "value:"]}), smalltalk.Collection); smalltalk.addMethod( "_errorNotFound", smalltalk.method({ selector: "errorNotFound", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._error_("Object is not in the collection"); return self}, function($ctx1) {$ctx1.fill(self,"errorNotFound",{},smalltalk.Collection)})}, messageSends: ["error:"]}), smalltalk.Collection); smalltalk.addMethod( "_ifEmpty_", smalltalk.method({ selector: "ifEmpty:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1; $2=_st(self)._isEmpty(); if(smalltalk.assert($2)){ $1=_st(aBlock)._value(); } else { $1=self; }; return $1; }, function($ctx1) {$ctx1.fill(self,"ifEmpty:",{aBlock:aBlock},smalltalk.Collection)})}, messageSends: ["ifTrue:ifFalse:", "value", "isEmpty"]}), smalltalk.Collection); smalltalk.addMethod( "_ifNotEmpty_", smalltalk.method({ selector: "ifNotEmpty:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._notEmpty(); _st($1)._ifTrue_(aBlock); return self}, function($ctx1) {$ctx1.fill(self,"ifNotEmpty:",{aBlock:aBlock},smalltalk.Collection)})}, messageSends: ["ifTrue:", "notEmpty"]}), smalltalk.Collection); smalltalk.addMethod( "_includes_", smalltalk.method({ selector: "includes:", fn: function (anObject){ var self=this; var sentinel; return smalltalk.withContext(function($ctx1) { var $1; sentinel=_st((smalltalk.Object || Object))._new(); $1=_st(_st(self)._detect_ifNone_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each).__eq(anObject); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){ return smalltalk.withContext(function($ctx2) { return sentinel; }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))).__tild_eq(sentinel); return $1; }, function($ctx1) {$ctx1.fill(self,"includes:",{anObject:anObject,sentinel:sentinel},smalltalk.Collection)})}, messageSends: ["new", "~=", "detect:ifNone:", "="]}), smalltalk.Collection); smalltalk.addMethod( "_inject_into_", smalltalk.method({ selector: "inject:into:", fn: function (anObject,aBlock){ var self=this; var result; return smalltalk.withContext(function($ctx1) { var $1; result=anObject; _st(self)._do_((function(each){ return smalltalk.withContext(function($ctx2) { result=_st(aBlock)._value_value_(result,each); return result; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $1=result; return $1; }, function($ctx1) {$ctx1.fill(self,"inject:into:",{anObject:anObject,aBlock:aBlock,result:result},smalltalk.Collection)})}, messageSends: ["do:", "value:value:"]}), smalltalk.Collection); smalltalk.addMethod( "_intersection_", smalltalk.method({ selector: "intersection:", fn: function (aCollection){ var self=this; var set,outputSet; return smalltalk.withContext(function($ctx1) { var $1,$2; set=_st(self)._asSet(); outputSet=_st((smalltalk.Set || Set))._new(); _st(aCollection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $1=_st(_st(set)._includes_(each))._and_((function(){ return smalltalk.withContext(function($ctx3) { return _st(_st(outputSet)._includes_(each))._not(); }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})})); if(smalltalk.assert($1)){ return _st(outputSet)._add_(each); }; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $2=_st(_st(self)._class())._withAll_(_st(outputSet)._asArray()); return $2; }, function($ctx1) {$ctx1.fill(self,"intersection:",{aCollection:aCollection,set:set,outputSet:outputSet},smalltalk.Collection)})}, messageSends: ["asSet", "new", "do:", "ifTrue:", "add:", "and:", "not", "includes:", "withAll:", "asArray", "class"]}), smalltalk.Collection); smalltalk.addMethod( "_isEmpty", smalltalk.method({ selector: "isEmpty", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._size()).__eq((0)); return $1; }, function($ctx1) {$ctx1.fill(self,"isEmpty",{},smalltalk.Collection)})}, messageSends: ["=", "size"]}), smalltalk.Collection); smalltalk.addMethod( "_notEmpty", smalltalk.method({ selector: "notEmpty", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._isEmpty())._not(); return $1; }, function($ctx1) {$ctx1.fill(self,"notEmpty",{},smalltalk.Collection)})}, messageSends: ["not", "isEmpty"]}), smalltalk.Collection); smalltalk.addMethod( "_occurrencesOf_", smalltalk.method({ selector: "occurrencesOf:", fn: function (anObject){ var self=this; var tally; return smalltalk.withContext(function($ctx1) { var $1,$2; tally=(0); _st(self)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $1=_st(anObject).__eq(each); if(smalltalk.assert($1)){ tally=_st(tally).__plus((1)); return tally; }; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $2=tally; return $2; }, function($ctx1) {$ctx1.fill(self,"occurrencesOf:",{anObject:anObject,tally:tally},smalltalk.Collection)})}, messageSends: ["do:", "ifTrue:", "+", "="]}), smalltalk.Collection); smalltalk.addMethod( "_printString", smalltalk.method({ selector: "printString", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.String || String))._streamContents_((function(aStream){ return smalltalk.withContext(function($ctx2) { _st(aStream)._nextPutAll_(_st(smalltalk.Object.fn.prototype._printString.apply(_st(self), [])).__comma(" (")); _st(self)._do_separatedBy_((function(each){ return smalltalk.withContext(function($ctx3) { return _st(aStream)._nextPutAll_(_st(each)._printString()); }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx1)})}),(function(){ return smalltalk.withContext(function($ctx3) { return _st(aStream)._nextPutAll_(" "); }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})})); return _st(aStream)._nextPutAll_(")"); }, function($ctx2) {$ctx2.fillBlock({aStream:aStream},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"printString",{},smalltalk.Collection)})}, messageSends: ["streamContents:", "nextPutAll:", ",", "printString", "do:separatedBy:"]}), smalltalk.Collection); smalltalk.addMethod( "_readStream", smalltalk.method({ selector: "readStream", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._stream(); return $1; }, function($ctx1) {$ctx1.fill(self,"readStream",{},smalltalk.Collection)})}, messageSends: ["stream"]}), smalltalk.Collection); smalltalk.addMethod( "_reject_", smalltalk.method({ selector: "reject:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._select_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(_st(aBlock)._value_(each)).__eq(false); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"reject:",{aBlock:aBlock},smalltalk.Collection)})}, messageSends: ["select:", "=", "value:"]}), smalltalk.Collection); smalltalk.addMethod( "_remove_", smalltalk.method({ selector: "remove:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._remove_ifAbsent_(anObject,(function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._errorNotFound(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"remove:",{anObject:anObject},smalltalk.Collection)})}, messageSends: ["remove:ifAbsent:", "errorNotFound"]}), smalltalk.Collection); smalltalk.addMethod( "_remove_ifAbsent_", smalltalk.method({ selector: "remove:ifAbsent:", fn: function (anObject,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassResponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"remove:ifAbsent:",{anObject:anObject,aBlock:aBlock},smalltalk.Collection)})}, messageSends: ["subclassResponsibility"]}), smalltalk.Collection); smalltalk.addMethod( "_select_", smalltalk.method({ selector: "select:", fn: function (aBlock){ var self=this; var stream; return smalltalk.withContext(function($ctx1) { var $1,$2; stream=_st(_st(_st(self)._class())._new())._writeStream(); _st(self)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $1=_st(aBlock)._value_(each); if(smalltalk.assert($1)){ return _st(stream)._nextPut_(each); }; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $2=_st(stream)._contents(); return $2; }, function($ctx1) {$ctx1.fill(self,"select:",{aBlock:aBlock,stream:stream},smalltalk.Collection)})}, messageSends: ["writeStream", "new", "class", "do:", "ifTrue:", "nextPut:", "value:", "contents"]}), smalltalk.Collection); smalltalk.addMethod( "_size", smalltalk.method({ selector: "size", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassResponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"size",{},smalltalk.Collection)})}, messageSends: ["subclassResponsibility"]}), smalltalk.Collection); smalltalk.addMethod( "_stream", smalltalk.method({ selector: "stream", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._streamClass())._on_(self); return $1; }, function($ctx1) {$ctx1.fill(self,"stream",{},smalltalk.Collection)})}, messageSends: ["on:", "streamClass"]}), smalltalk.Collection); smalltalk.addMethod( "_streamClass", smalltalk.method({ selector: "streamClass", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._class())._streamClass(); return $1; }, function($ctx1) {$ctx1.fill(self,"streamClass",{},smalltalk.Collection)})}, messageSends: ["streamClass", "class"]}), smalltalk.Collection); smalltalk.addMethod( "_writeStream", smalltalk.method({ selector: "writeStream", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._stream(); return $1; }, function($ctx1) {$ctx1.fill(self,"writeStream",{},smalltalk.Collection)})}, messageSends: ["stream"]}), smalltalk.Collection); smalltalk.addMethod( "_new_", smalltalk.method({ selector: "new:", fn: function (anInteger){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._new(); return $1; }, function($ctx1) {$ctx1.fill(self,"new:",{anInteger:anInteger},smalltalk.Collection.klass)})}, messageSends: ["new"]}), smalltalk.Collection.klass); smalltalk.addMethod( "_streamClass", smalltalk.method({ selector: "streamClass", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=(smalltalk.Stream || Stream); return $1; }, function($ctx1) {$ctx1.fill(self,"streamClass",{},smalltalk.Collection.klass)})}, messageSends: []}), smalltalk.Collection.klass); smalltalk.addMethod( "_with_", smalltalk.method({ selector: "with:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._new(); _st($2)._add_(anObject); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"with:",{anObject:anObject},smalltalk.Collection.klass)})}, messageSends: ["add:", "new", "yourself"]}), smalltalk.Collection.klass); smalltalk.addMethod( "_with_with_", smalltalk.method({ selector: "with:with:", fn: function (anObject,anotherObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._new(); _st($2)._add_(anObject); _st($2)._add_(anotherObject); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"with:with:",{anObject:anObject,anotherObject:anotherObject},smalltalk.Collection.klass)})}, messageSends: ["add:", "new", "yourself"]}), smalltalk.Collection.klass); smalltalk.addMethod( "_with_with_with_", smalltalk.method({ selector: "with:with:with:", fn: function (firstObject,secondObject,thirdObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._new(); _st($2)._add_(firstObject); _st($2)._add_(secondObject); _st($2)._add_(thirdObject); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"with:with:with:",{firstObject:firstObject,secondObject:secondObject,thirdObject:thirdObject},smalltalk.Collection.klass)})}, messageSends: ["add:", "new", "yourself"]}), smalltalk.Collection.klass); smalltalk.addMethod( "_withAll_", smalltalk.method({ selector: "withAll:", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._new(); _st($2)._addAll_(aCollection); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"withAll:",{aCollection:aCollection},smalltalk.Collection.klass)})}, messageSends: ["addAll:", "new", "yourself"]}), smalltalk.Collection.klass); smalltalk.addClass('IndexableCollection', smalltalk.Collection, [], 'Kernel-Collections'); smalltalk.addMethod( "_at_", smalltalk.method({ selector: "at:", fn: function (anIndex){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._at_ifAbsent_(anIndex,(function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._errorNotFound(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"at:",{anIndex:anIndex},smalltalk.IndexableCollection)})}, messageSends: ["at:ifAbsent:", "errorNotFound"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_at_ifAbsent_", smalltalk.method({ selector: "at:ifAbsent:", fn: function (anIndex,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassReponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"at:ifAbsent:",{anIndex:anIndex,aBlock:aBlock},smalltalk.IndexableCollection)})}, messageSends: ["subclassReponsibility"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_at_ifPresent_", smalltalk.method({ selector: "at:ifPresent:", fn: function (anIndex,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._at_ifPresent_ifAbsent_(anIndex,aBlock,(function(){ return smalltalk.withContext(function($ctx2) { return nil; }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"at:ifPresent:",{anIndex:anIndex,aBlock:aBlock},smalltalk.IndexableCollection)})}, messageSends: ["at:ifPresent:ifAbsent:"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_at_ifPresent_ifAbsent_", smalltalk.method({ selector: "at:ifPresent:ifAbsent:", fn: function (anIndex,aBlock,anotherBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassReponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"at:ifPresent:ifAbsent:",{anIndex:anIndex,aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.IndexableCollection)})}, messageSends: ["subclassReponsibility"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_at_put_", smalltalk.method({ selector: "at:put:", fn: function (anIndex,anObject){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassReponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"at:put:",{anIndex:anIndex,anObject:anObject},smalltalk.IndexableCollection)})}, messageSends: ["subclassReponsibility"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_indexOf_", smalltalk.method({ selector: "indexOf:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._indexOf_ifAbsent_(anObject,(function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._errorNotFound(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"indexOf:",{anObject:anObject},smalltalk.IndexableCollection)})}, messageSends: ["indexOf:ifAbsent:", "errorNotFound"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_indexOf_ifAbsent_", smalltalk.method({ selector: "indexOf:ifAbsent:", fn: function (anObject,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassResponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"indexOf:ifAbsent:",{anObject:anObject,aBlock:aBlock},smalltalk.IndexableCollection)})}, messageSends: ["subclassResponsibility"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_with_do_", smalltalk.method({ selector: "with:do:", fn: function (anotherCollection,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._withIndexDo_((function(each,index){ return smalltalk.withContext(function($ctx2) { return _st(aBlock)._value_value_(each,_st(anotherCollection)._at_(index)); }, function($ctx2) {$ctx2.fillBlock({each:each,index:index},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"with:do:",{anotherCollection:anotherCollection,aBlock:aBlock},smalltalk.IndexableCollection)})}, messageSends: ["withIndexDo:", "value:value:", "at:"]}), smalltalk.IndexableCollection); smalltalk.addMethod( "_withIndexDo_", smalltalk.method({ selector: "withIndexDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._subclassReponsibility(); return self}, function($ctx1) {$ctx1.fill(self,"withIndexDo:",{aBlock:aBlock},smalltalk.IndexableCollection)})}, messageSends: ["subclassReponsibility"]}), smalltalk.IndexableCollection); smalltalk.addClass('HashedCollection', smalltalk.IndexableCollection, [], 'Kernel-Collections'); smalltalk.addMethod( "__comma", smalltalk.method({ selector: ",", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._shouldNotImplement(); return self}, function($ctx1) {$ctx1.fill(self,",",{aCollection:aCollection},smalltalk.HashedCollection)})}, messageSends: ["shouldNotImplement"]}), smalltalk.HashedCollection); smalltalk.addMethod( "__eq", smalltalk.method({ selector: "=", fn: function (aHashedCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3; $1=_st(_st(self)._class()).__eq(_st(aHashedCollection)._class()); if(! smalltalk.assert($1)){ return false; }; $2=_st(_st(self)._size()).__eq(_st(aHashedCollection)._size()); if(! smalltalk.assert($2)){ return false; }; $3=_st(_st(self)._associations()).__eq(_st(aHashedCollection)._associations()); return $3; }, function($ctx1) {$ctx1.fill(self,"=",{aHashedCollection:aHashedCollection},smalltalk.HashedCollection)})}, messageSends: ["ifFalse:", "=", "class", "size", "associations"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_add_", smalltalk.method({ selector: "add:", fn: function (anAssociation){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._at_put_(_st(anAssociation)._key(),_st(anAssociation)._value()); return self}, function($ctx1) {$ctx1.fill(self,"add:",{anAssociation:anAssociation},smalltalk.HashedCollection)})}, messageSends: ["at:put:", "key", "value"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_addAll_", smalltalk.method({ selector: "addAll:", fn: function (aHashedCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; smalltalk.IndexableCollection.fn.prototype._addAll_.apply(_st(self), [_st(aHashedCollection)._associations()]); $1=aHashedCollection; return $1; }, function($ctx1) {$ctx1.fill(self,"addAll:",{aHashedCollection:aHashedCollection},smalltalk.HashedCollection)})}, messageSends: ["addAll:", "associations"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_asDictionary", smalltalk.method({ selector: "asDictionary", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.Dictionary || Dictionary))._fromPairs_(_st(self)._associations()); return $1; }, function($ctx1) {$ctx1.fill(self,"asDictionary",{},smalltalk.HashedCollection)})}, messageSends: ["fromPairs:", "associations"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_asJSON", smalltalk.method({ selector: "asJSON", fn: function (){ var self=this; var c; return smalltalk.withContext(function($ctx1) { var $1; c=_st(_st(self)._class())._new(); _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(c)._at_put_(key,_st(value)._asJSON()); }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); $1=c; return $1; }, function($ctx1) {$ctx1.fill(self,"asJSON",{c:c},smalltalk.HashedCollection)})}, messageSends: ["new", "class", "keysAndValuesDo:", "at:put:", "asJSON"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_associations", smalltalk.method({ selector: "associations", fn: function (){ var self=this; var associations; return smalltalk.withContext(function($ctx1) { var $1; associations=[]; _st(self)._associationsDo_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(associations)._add_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $1=associations; return $1; }, function($ctx1) {$ctx1.fill(self,"associations",{associations:associations},smalltalk.HashedCollection)})}, messageSends: ["associationsDo:", "add:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_associationsDo_", smalltalk.method({ selector: "associationsDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(aBlock)._value_(_st((smalltalk.Association || Association))._key_value_(key,value)); }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"associationsDo:",{aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["keysAndValuesDo:", "value:", "key:value:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_at_ifAbsent_", smalltalk.method({ selector: "at:ifAbsent:", fn: function (aKey,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1; $2=_st(self)._includesKey_(aKey); $1=_st($2)._ifTrue_ifFalse_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._basicAt_(aKey); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),aBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"at:ifAbsent:",{aKey:aKey,aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["ifTrue:ifFalse:", "basicAt:", "includesKey:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_at_ifAbsentPut_", smalltalk.method({ selector: "at:ifAbsentPut:", fn: function (aKey,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._at_ifAbsent_(aKey,(function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._at_put_(aKey,_st(aBlock)._value()); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"at:ifAbsentPut:",{aKey:aKey,aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["at:ifAbsent:", "at:put:", "value"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_at_ifPresent_ifAbsent_", smalltalk.method({ selector: "at:ifPresent:ifAbsent:", fn: function (aKey,aBlock,anotherBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1; $2=_st(self)._includesKey_(aKey); $1=_st($2)._ifTrue_ifFalse_((function(){ return smalltalk.withContext(function($ctx2) { return _st(aBlock)._value_(_st(self)._at_(aKey)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),anotherBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"at:ifPresent:ifAbsent:",{aKey:aKey,aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.HashedCollection)})}, messageSends: ["ifTrue:ifFalse:", "value:", "at:", "includesKey:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_at_put_", smalltalk.method({ selector: "at:put:", fn: function (aKey,aValue){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._basicAt_put_(aKey,aValue); return $1; }, function($ctx1) {$ctx1.fill(self,"at:put:",{aKey:aKey,aValue:aValue},smalltalk.HashedCollection)})}, messageSends: ["basicAt:put:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_collect_", smalltalk.method({ selector: "collect:", fn: function (aBlock){ var self=this; var newDict; return smalltalk.withContext(function($ctx1) { var $1; newDict=_st(_st(self)._class())._new(); _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(newDict)._at_put_(key,_st(aBlock)._value_(value)); }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); $1=newDict; return $1; }, function($ctx1) {$ctx1.fill(self,"collect:",{aBlock:aBlock,newDict:newDict},smalltalk.HashedCollection)})}, messageSends: ["new", "class", "keysAndValuesDo:", "at:put:", "value:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_deepCopy", smalltalk.method({ selector: "deepCopy", fn: function (){ var self=this; var copy; return smalltalk.withContext(function($ctx1) { var $1; copy=_st(_st(self)._class())._new(); _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(copy)._at_put_(key,_st(value)._deepCopy()); }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); $1=copy; return $1; }, function($ctx1) {$ctx1.fill(self,"deepCopy",{copy:copy},smalltalk.HashedCollection)})}, messageSends: ["new", "class", "keysAndValuesDo:", "at:put:", "deepCopy"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_detect_ifNone_", smalltalk.method({ selector: "detect:ifNone:", fn: function (aBlock,anotherBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._values())._detect_ifNone_(aBlock,anotherBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"detect:ifNone:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.HashedCollection)})}, messageSends: ["detect:ifNone:", "values"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_do_", smalltalk.method({ selector: "do:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._valuesDo_(aBlock); return self}, function($ctx1) {$ctx1.fill(self,"do:",{aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["valuesDo:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_includes_", smalltalk.method({ selector: "includes:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._values())._includes_(anObject); return $1; }, function($ctx1) {$ctx1.fill(self,"includes:",{anObject:anObject},smalltalk.HashedCollection)})}, messageSends: ["includes:", "values"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_includesKey_", smalltalk.method({ selector: "includesKey:", fn: function (aKey){ var self=this; return smalltalk.withContext(function($ctx1) { return self.hasOwnProperty(aKey); return self}, function($ctx1) {$ctx1.fill(self,"includesKey:",{aKey:aKey},smalltalk.HashedCollection)})}, messageSends: []}), smalltalk.HashedCollection); smalltalk.addMethod( "_indexOf_ifAbsent_", smalltalk.method({ selector: "indexOf:ifAbsent:", fn: function (anObject,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._keys())._detect_ifNone_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(_st(self)._at_(each)).__eq(anObject); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),aBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"indexOf:ifAbsent:",{anObject:anObject,aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["detect:ifNone:", "=", "at:", "keys"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_keys", smalltalk.method({ selector: "keys", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { if ('function'===typeof Object.keys) return Object.keys(self); var keys = []; for(var i in self) { if(self.hasOwnProperty(i)) { keys.push(i); } }; return keys; ; return self}, function($ctx1) {$ctx1.fill(self,"keys",{},smalltalk.HashedCollection)})}, messageSends: []}), smalltalk.HashedCollection); smalltalk.addMethod( "_keysAndValuesDo_", smalltalk.method({ selector: "keysAndValuesDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._keysDo_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(aBlock)._value_value_(each,_st(self)._at_(each)); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"keysAndValuesDo:",{aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["keysDo:", "value:value:", "at:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_keysDo_", smalltalk.method({ selector: "keysDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(_st(self)._keys())._do_(aBlock); return self}, function($ctx1) {$ctx1.fill(self,"keysDo:",{aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["do:", "keys"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_printString", smalltalk.method({ selector: "printString", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.String || String))._streamContents_((function(aStream){ return smalltalk.withContext(function($ctx2) { _st(aStream)._nextPutAll_(_st(_st("a ").__comma(_st(_st(self)._class())._name())).__comma("(")); _st(_st(self)._associations())._do_separatedBy_((function(each){ return smalltalk.withContext(function($ctx3) { return _st(each)._storeOn_(aStream); }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx1)})}),(function(){ return smalltalk.withContext(function($ctx3) { return _st(aStream)._nextPutAll_(" , "); }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})})); return _st(aStream)._nextPutAll_(")"); }, function($ctx2) {$ctx2.fillBlock({aStream:aStream},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"printString",{},smalltalk.HashedCollection)})}, messageSends: ["streamContents:", "nextPutAll:", ",", "name", "class", "do:separatedBy:", "storeOn:", "associations"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_remove_ifAbsent_", smalltalk.method({ selector: "remove:ifAbsent:", fn: function (aKey,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._removeKey_ifAbsent_(aKey,aBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"remove:ifAbsent:",{aKey:aKey,aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["removeKey:ifAbsent:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_removeKey_", smalltalk.method({ selector: "removeKey:", fn: function (aKey){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._remove_(aKey); return $1; }, function($ctx1) {$ctx1.fill(self,"removeKey:",{aKey:aKey},smalltalk.HashedCollection)})}, messageSends: ["remove:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_removeKey_ifAbsent_", smalltalk.method({ selector: "removeKey:ifAbsent:", fn: function (aKey,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1; $2=_st(self)._includesKey_(aKey); if(smalltalk.assert($2)){ $1=_st(self)._basicDelete_(aKey); } else { $1=_st(aBlock)._value(); }; return $1; }, function($ctx1) {$ctx1.fill(self,"removeKey:ifAbsent:",{aKey:aKey,aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["ifFalse:ifTrue:", "value", "basicDelete:", "includesKey:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_select_", smalltalk.method({ selector: "select:", fn: function (aBlock){ var self=this; var newDict; return smalltalk.withContext(function($ctx1) { var $1,$2; newDict=_st(_st(self)._class())._new(); _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { $1=_st(aBlock)._value_(value); if(smalltalk.assert($1)){ return _st(newDict)._at_put_(key,value); }; }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); $2=newDict; return $2; }, function($ctx1) {$ctx1.fill(self,"select:",{aBlock:aBlock,newDict:newDict},smalltalk.HashedCollection)})}, messageSends: ["new", "class", "keysAndValuesDo:", "ifTrue:", "at:put:", "value:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_shallowCopy", smalltalk.method({ selector: "shallowCopy", fn: function (){ var self=this; var copy; return smalltalk.withContext(function($ctx1) { var $1; copy=_st(_st(self)._class())._new(); _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(copy)._at_put_(key,value); }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); $1=copy; return $1; }, function($ctx1) {$ctx1.fill(self,"shallowCopy",{copy:copy},smalltalk.HashedCollection)})}, messageSends: ["new", "class", "keysAndValuesDo:", "at:put:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_size", smalltalk.method({ selector: "size", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._keys())._size(); return $1; }, function($ctx1) {$ctx1.fill(self,"size",{},smalltalk.HashedCollection)})}, messageSends: ["size", "keys"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_storeOn_", smalltalk.method({ selector: "storeOn:", fn: function (aStream){ var self=this; return smalltalk.withContext(function($ctx1) { _st(aStream)._nextPutAll_("#{"); _st(_st(self)._associations())._do_separatedBy_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each)._storeOn_(aStream); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){ return smalltalk.withContext(function($ctx2) { return _st(aStream)._nextPutAll_(". "); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); _st(aStream)._nextPutAll_("}"); return self}, function($ctx1) {$ctx1.fill(self,"storeOn:",{aStream:aStream},smalltalk.HashedCollection)})}, messageSends: ["nextPutAll:", "do:separatedBy:", "storeOn:", "associations"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_values", smalltalk.method({ selector: "values", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._keys())._collect_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(self)._at_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"values",{},smalltalk.HashedCollection)})}, messageSends: ["collect:", "at:", "keys"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_valuesDo_", smalltalk.method({ selector: "valuesDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(aBlock)._value_(value); }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"valuesDo:",{aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["keysAndValuesDo:", "value:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_withIndexDo_", smalltalk.method({ selector: "withIndexDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._keysAndValuesDo_((function(key,value){ return smalltalk.withContext(function($ctx2) { return _st(aBlock)._value_value_(value,key); }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"withIndexDo:",{aBlock:aBlock},smalltalk.HashedCollection)})}, messageSends: ["keysAndValuesDo:", "value:value:"]}), smalltalk.HashedCollection); smalltalk.addMethod( "_fromPairs_", smalltalk.method({ selector: "fromPairs:", fn: function (aCollection){ var self=this; var dict; return smalltalk.withContext(function($ctx1) { var $1; dict=_st(self)._new(); _st(aCollection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(dict)._add_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $1=dict; return $1; }, function($ctx1) {$ctx1.fill(self,"fromPairs:",{aCollection:aCollection,dict:dict},smalltalk.HashedCollection.klass)})}, messageSends: ["new", "do:", "add:"]}), smalltalk.HashedCollection.klass); smalltalk.addClass('Dictionary', smalltalk.HashedCollection, ['keys', 'values'], 'Kernel-Collections'); smalltalk.addMethod( "_asHashedCollection", smalltalk.method({ selector: "asHashedCollection", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.HashedCollection || HashedCollection))._fromPairs_(_st(self)._associations()); return $1; }, function($ctx1) {$ctx1.fill(self,"asHashedCollection",{},smalltalk.Dictionary)})}, messageSends: ["fromPairs:", "associations"]}), smalltalk.Dictionary); smalltalk.addMethod( "_asJSON", smalltalk.method({ selector: "asJSON", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asHashedCollection())._asJSON(); return $1; }, function($ctx1) {$ctx1.fill(self,"asJSON",{},smalltalk.Dictionary)})}, messageSends: ["asJSON", "asHashedCollection"]}), smalltalk.Dictionary); smalltalk.addMethod( "_at_ifAbsent_", smalltalk.method({ selector: "at:ifAbsent:", fn: function (aKey,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var index = self._positionOfKey_(aKey); return index >=0 ? self['@values'][index] : aBlock(); ; return self}, function($ctx1) {$ctx1.fill(self,"at:ifAbsent:",{aKey:aKey,aBlock:aBlock},smalltalk.Dictionary)})}, messageSends: []}), smalltalk.Dictionary); smalltalk.addMethod( "_at_put_", smalltalk.method({ selector: "at:put:", fn: function (aKey,aValue){ var self=this; return smalltalk.withContext(function($ctx1) { var index = self._positionOfKey_(aKey); if(index === -1) { var keys = self['@keys']; index = keys.length; keys.push(aKey); } return self['@values'][index] = aValue; ; return self}, function($ctx1) {$ctx1.fill(self,"at:put:",{aKey:aKey,aValue:aValue},smalltalk.Dictionary)})}, messageSends: []}), smalltalk.Dictionary); smalltalk.addMethod( "_includesKey_", smalltalk.method({ selector: "includesKey:", fn: function (aKey){ var self=this; return smalltalk.withContext(function($ctx1) { return self._positionOfKey_(aKey) >= 0; ; return self}, function($ctx1) {$ctx1.fill(self,"includesKey:",{aKey:aKey},smalltalk.Dictionary)})}, messageSends: []}), smalltalk.Dictionary); smalltalk.addMethod( "_indexOf_ifAbsent_", smalltalk.method({ selector: "indexOf:ifAbsent:", fn: function (anObject,aBlock){ var self=this; var index; return smalltalk.withContext(function($ctx1) { var $2,$1; index=_st(self["@values"])._indexOf_ifAbsent_(anObject,(function(){ return smalltalk.withContext(function($ctx2) { return (0); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); $2=_st(index).__eq((0)); if(smalltalk.assert($2)){ $1=_st(aBlock)._value(); } else { $1=_st(self["@keys"])._at_(index); }; return $1; }, function($ctx1) {$ctx1.fill(self,"indexOf:ifAbsent:",{anObject:anObject,aBlock:aBlock,index:index},smalltalk.Dictionary)})}, messageSends: ["indexOf:ifAbsent:", "ifTrue:ifFalse:", "value", "at:", "="]}), smalltalk.Dictionary); smalltalk.addMethod( "_initialize", smalltalk.method({ selector: "initialize", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { smalltalk.HashedCollection.fn.prototype._initialize.apply(_st(self), []); self["@keys"]=[]; self["@values"]=[]; return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.Dictionary)})}, messageSends: ["initialize"]}), smalltalk.Dictionary); smalltalk.addMethod( "_keys", smalltalk.method({ selector: "keys", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self["@keys"])._copy(); return $1; }, function($ctx1) {$ctx1.fill(self,"keys",{},smalltalk.Dictionary)})}, messageSends: ["copy"]}), smalltalk.Dictionary); smalltalk.addMethod( "_keysAndValuesDo_", smalltalk.method({ selector: "keysAndValuesDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self["@keys"])._with_do_(self["@values"],aBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"keysAndValuesDo:",{aBlock:aBlock},smalltalk.Dictionary)})}, messageSends: ["with:do:"]}), smalltalk.Dictionary); smalltalk.addMethod( "_keysDo_", smalltalk.method({ selector: "keysDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self["@keys"])._do_(aBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"keysDo:",{aBlock:aBlock},smalltalk.Dictionary)})}, messageSends: ["do:"]}), smalltalk.Dictionary); smalltalk.addMethod( "_positionOfKey_", smalltalk.method({ selector: "positionOfKey:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var keys = self['@keys']; for(var i=0;i", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { return String(self) > aString._asString(); return self}, function($ctx1) {$ctx1.fill(self,">",{aString:aString},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "__gt_eq", smalltalk.method({ selector: ">=", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { return String(self) >= aString._asString(); return self}, function($ctx1) {$ctx1.fill(self,">=",{aString:aString},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asJSON", smalltalk.method({ selector: "asJSON", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self; return $1; }, function($ctx1) {$ctx1.fill(self,"asJSON",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asJavaScriptSelector", smalltalk.method({ selector: "asJavaScriptSelector", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(_st(self)._asSelector())._replace_with_("^_",""))._replace_with_("_.*",""); return $1; }, function($ctx1) {$ctx1.fill(self,"asJavaScriptSelector",{},smalltalk.String)})}, messageSends: ["replace:with:", "asSelector"]}), smalltalk.String); smalltalk.addMethod( "_asJavascript", smalltalk.method({ selector: "asJavascript", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { if(self.search(/^[a-zA-Z0-9_:.$ ]*$/) == -1) return "\"" + self.replace(/[\x00-\x1f"\\\x7f-\x9f]/g, function(ch){var c=ch.charCodeAt(0);return "\\x"+("0"+c.toString(16)).slice(-2)}) + "\""; else return "\"" + self + "\""; ; return self}, function($ctx1) {$ctx1.fill(self,"asJavascript",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asLowercase", smalltalk.method({ selector: "asLowercase", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self.toLowerCase(); return self}, function($ctx1) {$ctx1.fill(self,"asLowercase",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asNumber", smalltalk.method({ selector: "asNumber", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return Number(self); return self}, function($ctx1) {$ctx1.fill(self,"asNumber",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asRegexp", smalltalk.method({ selector: "asRegexp", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.RegularExpression || RegularExpression))._fromString_(self); return $1; }, function($ctx1) {$ctx1.fill(self,"asRegexp",{},smalltalk.String)})}, messageSends: ["fromString:"]}), smalltalk.String); smalltalk.addMethod( "_asSelector", smalltalk.method({ selector: "asSelector", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return smalltalk.selector(self); return self}, function($ctx1) {$ctx1.fill(self,"asSelector",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asString", smalltalk.method({ selector: "asString", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self; return $1; }, function($ctx1) {$ctx1.fill(self,"asString",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asSymbol", smalltalk.method({ selector: "asSymbol", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st((smalltalk.Symbol || Symbol))._lookup_(self); return $1; }, function($ctx1) {$ctx1.fill(self,"asSymbol",{},smalltalk.String)})}, messageSends: ["lookup:"]}), smalltalk.String); smalltalk.addMethod( "_asUppercase", smalltalk.method({ selector: "asUppercase", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self.toUpperCase(); return self}, function($ctx1) {$ctx1.fill(self,"asUppercase",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_asciiValue", smalltalk.method({ selector: "asciiValue", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self.charCodeAt(0);; return self}, function($ctx1) {$ctx1.fill(self,"asciiValue",{},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_at_ifAbsent_", smalltalk.method({ selector: "at:ifAbsent:", fn: function (anIndex,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { return String(self).charAt(anIndex - 1) || aBlock(); return self}, function($ctx1) {$ctx1.fill(self,"at:ifAbsent:",{anIndex:anIndex,aBlock:aBlock},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_copyFrom_to_", smalltalk.method({ selector: "copyFrom:to:", fn: function (anIndex,anotherIndex){ var self=this; return smalltalk.withContext(function($ctx1) { return self.substring(anIndex - 1, anotherIndex); return self}, function($ctx1) {$ctx1.fill(self,"copyFrom:to:",{anIndex:anIndex,anotherIndex:anotherIndex},smalltalk.String)})}, messageSends: []}), smalltalk.String); smalltalk.addMethod( "_deepCopy", smalltalk.method({ selector: "deepCopy", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._shallowCopy(); return $1; }, function($ctx1) {$ctx1.fill(self,"deepCopy",{},smalltalk.String)})}, messageSends: ["shallowCopy"]}), smalltalk.String); smalltalk.addMethod( "_do_", smalltalk.method({ selector: "do:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { for(var i=0;i", fn: function (aSymbol){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString()).__gt(_st(aSymbol)._asString()); return $1; }, function($ctx1) {$ctx1.fill(self,">",{aSymbol:aSymbol},smalltalk.Symbol)})}, messageSends: [">", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "__gt_eq", smalltalk.method({ selector: ">=", fn: function (aSymbol){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString()).__gt_eq(_st(aSymbol)._asString()); return $1; }, function($ctx1) {$ctx1.fill(self,">=",{aSymbol:aSymbol},smalltalk.Symbol)})}, messageSends: [">=", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_asJSON", smalltalk.method({ selector: "asJSON", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString())._asJSON(); return $1; }, function($ctx1) {$ctx1.fill(self,"asJSON",{},smalltalk.Symbol)})}, messageSends: ["asJSON", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_asJavascript", smalltalk.method({ selector: "asJavascript", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st("smalltalk.symbolFor(").__comma(_st(_st(self)._asString())._asJavascript())).__comma(")"); return $1; }, function($ctx1) {$ctx1.fill(self,"asJavascript",{},smalltalk.Symbol)})}, messageSends: [",", "asJavascript", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_asSelector", smalltalk.method({ selector: "asSelector", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString())._asSelector(); return $1; }, function($ctx1) {$ctx1.fill(self,"asSelector",{},smalltalk.Symbol)})}, messageSends: ["asSelector", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_asString", smalltalk.method({ selector: "asString", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self.value; return self}, function($ctx1) {$ctx1.fill(self,"asString",{},smalltalk.Symbol)})}, messageSends: []}), smalltalk.Symbol); smalltalk.addMethod( "_asSuperSelector", smalltalk.method({ selector: "asSuperSelector", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString())._asSuperSelector(); return $1; }, function($ctx1) {$ctx1.fill(self,"asSuperSelector",{},smalltalk.Symbol)})}, messageSends: ["asSuperSelector", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_asSymbol", smalltalk.method({ selector: "asSymbol", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self; return $1; }, function($ctx1) {$ctx1.fill(self,"asSymbol",{},smalltalk.Symbol)})}, messageSends: []}), smalltalk.Symbol); smalltalk.addMethod( "_at_ifAbsent_", smalltalk.method({ selector: "at:ifAbsent:", fn: function (anIndex,aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString())._at_ifAbsent_(anIndex,aBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"at:ifAbsent:",{anIndex:anIndex,aBlock:aBlock},smalltalk.Symbol)})}, messageSends: ["at:ifAbsent:", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_collect_", smalltalk.method({ selector: "collect:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(_st(self)._asString())._collect_(aBlock))._asSymbol(); return $1; }, function($ctx1) {$ctx1.fill(self,"collect:",{aBlock:aBlock},smalltalk.Symbol)})}, messageSends: ["asSymbol", "collect:", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_copyFrom_to_", smalltalk.method({ selector: "copyFrom:to:", fn: function (anIndex,anotherIndex){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._class())._fromString_(_st(_st(self)._asString())._copyFrom_to_(anIndex,anotherIndex)); return $1; }, function($ctx1) {$ctx1.fill(self,"copyFrom:to:",{anIndex:anIndex,anotherIndex:anotherIndex},smalltalk.Symbol)})}, messageSends: ["fromString:", "copyFrom:to:", "asString", "class"]}), smalltalk.Symbol); smalltalk.addMethod( "_deepCopy", smalltalk.method({ selector: "deepCopy", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self; return $1; }, function($ctx1) {$ctx1.fill(self,"deepCopy",{},smalltalk.Symbol)})}, messageSends: []}), smalltalk.Symbol); smalltalk.addMethod( "_detect_", smalltalk.method({ selector: "detect:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString())._detect_(aBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"detect:",{aBlock:aBlock},smalltalk.Symbol)})}, messageSends: ["detect:", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_do_", smalltalk.method({ selector: "do:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(_st(self)._asString())._do_(aBlock); return self}, function($ctx1) {$ctx1.fill(self,"do:",{aBlock:aBlock},smalltalk.Symbol)})}, messageSends: ["do:", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_isSymbol", smalltalk.method({ selector: "isSymbol", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return true; }, function($ctx1) {$ctx1.fill(self,"isSymbol",{},smalltalk.Symbol)})}, messageSends: []}), smalltalk.Symbol); smalltalk.addMethod( "_printString", smalltalk.method({ selector: "printString", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st("#").__comma(_st(self)._asString()); return $1; }, function($ctx1) {$ctx1.fill(self,"printString",{},smalltalk.Symbol)})}, messageSends: [",", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_select_", smalltalk.method({ selector: "select:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(_st(self)._asString())._select_(aBlock))._asSymbol(); return $1; }, function($ctx1) {$ctx1.fill(self,"select:",{aBlock:aBlock},smalltalk.Symbol)})}, messageSends: ["asSymbol", "select:", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_shallowCopy", smalltalk.method({ selector: "shallowCopy", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self; return $1; }, function($ctx1) {$ctx1.fill(self,"shallowCopy",{},smalltalk.Symbol)})}, messageSends: []}), smalltalk.Symbol); smalltalk.addMethod( "_size", smalltalk.method({ selector: "size", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._asString())._size(); return $1; }, function($ctx1) {$ctx1.fill(self,"size",{},smalltalk.Symbol)})}, messageSends: ["size", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_value_", smalltalk.method({ selector: "value:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(anObject)._perform_(self); return $1; }, function($ctx1) {$ctx1.fill(self,"value:",{anObject:anObject},smalltalk.Symbol)})}, messageSends: ["perform:"]}), smalltalk.Symbol); smalltalk.addMethod( "_withIndexDo_", smalltalk.method({ selector: "withIndexDo:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(_st(self)._asString())._withIndexDo_(aBlock); return self}, function($ctx1) {$ctx1.fill(self,"withIndexDo:",{aBlock:aBlock},smalltalk.Symbol)})}, messageSends: ["withIndexDo:", "asString"]}), smalltalk.Symbol); smalltalk.addMethod( "_basicNew", smalltalk.method({ selector: "basicNew", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._shouldNotImplement(); return self}, function($ctx1) {$ctx1.fill(self,"basicNew",{},smalltalk.Symbol.klass)})}, messageSends: ["shouldNotImplement"]}), smalltalk.Symbol.klass); smalltalk.addMethod( "_fromString_", smalltalk.method({ selector: "fromString:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._lookup_(aString); return $1; }, function($ctx1) {$ctx1.fill(self,"fromString:",{aString:aString},smalltalk.Symbol.klass)})}, messageSends: ["lookup:"]}), smalltalk.Symbol.klass); smalltalk.addMethod( "_lookup_", smalltalk.method({ selector: "lookup:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { return smalltalk.symbolFor(aString);; return self}, function($ctx1) {$ctx1.fill(self,"lookup:",{aString:aString},smalltalk.Symbol.klass)})}, messageSends: []}), smalltalk.Symbol.klass); smalltalk.addClass('Set', smalltalk.Collection, ['elements'], 'Kernel-Collections'); smalltalk.addMethod( "__eq", smalltalk.method({ selector: "=", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3; var $early={}; try { $1=_st(_st(self)._class()).__eq(_st(aCollection)._class()); if(! smalltalk.assert($1)){ return false; }; $2=_st(_st(self)._size()).__eq(_st(aCollection)._size()); if(! smalltalk.assert($2)){ return false; }; _st(self)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $3=_st(aCollection)._includes_(each); if(! smalltalk.assert($3)){ throw $early=[false]; }; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return true; } catch(e) {if(e===$early)return e[0]; throw e} }, function($ctx1) {$ctx1.fill(self,"=",{aCollection:aCollection},smalltalk.Set)})}, messageSends: ["ifFalse:", "=", "class", "size", "do:", "includes:"]}), smalltalk.Set); smalltalk.addMethod( "_add_", smalltalk.method({ selector: "add:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var found; for(var i=0; i < self['@elements'].length; i++) { if(anObject == self['@elements'][i]) { found = true; break; } } if(!found) {self['@elements'].push(anObject)} ; return self}, function($ctx1) {$ctx1.fill(self,"add:",{anObject:anObject},smalltalk.Set)})}, messageSends: []}), smalltalk.Set); smalltalk.addMethod( "_asArray", smalltalk.method({ selector: "asArray", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self["@elements"])._copy(); return $1; }, function($ctx1) {$ctx1.fill(self,"asArray",{},smalltalk.Set)})}, messageSends: ["copy"]}), smalltalk.Set); smalltalk.addMethod( "_collect_", smalltalk.method({ selector: "collect:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._class())._withAll_(_st(self["@elements"])._collect_(aBlock)); return $1; }, function($ctx1) {$ctx1.fill(self,"collect:",{aBlock:aBlock},smalltalk.Set)})}, messageSends: ["withAll:", "collect:", "class"]}), smalltalk.Set); smalltalk.addMethod( "_detect_ifNone_", smalltalk.method({ selector: "detect:ifNone:", fn: function (aBlock,anotherBlock){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self["@elements"])._detect_ifNone_(aBlock,anotherBlock); return $1; }, function($ctx1) {$ctx1.fill(self,"detect:ifNone:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.Set)})}, messageSends: ["detect:ifNone:"]}), smalltalk.Set); smalltalk.addMethod( "_do_", smalltalk.method({ selector: "do:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self["@elements"])._do_(aBlock); return self}, function($ctx1) {$ctx1.fill(self,"do:",{aBlock:aBlock},smalltalk.Set)})}, messageSends: ["do:"]}), smalltalk.Set); smalltalk.addMethod( "_includes_", smalltalk.method({ selector: "includes:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self["@elements"])._includes_(anObject); return $1; }, function($ctx1) {$ctx1.fill(self,"includes:",{anObject:anObject},smalltalk.Set)})}, messageSends: ["includes:"]}), smalltalk.Set); smalltalk.addMethod( "_initialize", smalltalk.method({ selector: "initialize", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { smalltalk.Collection.fn.prototype._initialize.apply(_st(self), []); self["@elements"]=[]; return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.Set)})}, messageSends: ["initialize"]}), smalltalk.Set); smalltalk.addMethod( "_remove_", smalltalk.method({ selector: "remove:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self["@elements"])._remove_(anObject); return self}, function($ctx1) {$ctx1.fill(self,"remove:",{anObject:anObject},smalltalk.Set)})}, messageSends: ["remove:"]}), smalltalk.Set); smalltalk.addMethod( "_select_", smalltalk.method({ selector: "select:", fn: function (aBlock){ var self=this; var collection; return smalltalk.withContext(function($ctx1) { var $1,$2; collection=_st(_st(self)._class())._new(); _st(self)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $1=_st(aBlock)._value_(each); if(smalltalk.assert($1)){ return _st(collection)._add_(each); }; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); $2=collection; return $2; }, function($ctx1) {$ctx1.fill(self,"select:",{aBlock:aBlock,collection:collection},smalltalk.Set)})}, messageSends: ["new", "class", "do:", "ifTrue:", "add:", "value:"]}), smalltalk.Set); smalltalk.addMethod( "_size", smalltalk.method({ selector: "size", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self["@elements"])._size(); return $1; }, function($ctx1) {$ctx1.fill(self,"size",{},smalltalk.Set)})}, messageSends: ["size"]}), smalltalk.Set); smalltalk.addClass('Queue', smalltalk.Object, ['read', 'readIndex', 'write'], 'Kernel-Collections'); smalltalk.addMethod( "_back_", smalltalk.method({ selector: "back:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self["@write"])._add_(anObject); return self}, function($ctx1) {$ctx1.fill(self,"back:",{anObject:anObject},smalltalk.Queue)})}, messageSends: ["add:"]}), smalltalk.Queue); smalltalk.addMethod( "_front", smalltalk.method({ selector: "front", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._frontIfAbsent_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._error_("Cannot read from empty Queue."); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return $1; }, function($ctx1) {$ctx1.fill(self,"front",{},smalltalk.Queue)})}, messageSends: ["frontIfAbsent:", "error:"]}), smalltalk.Queue); smalltalk.addMethod( "_frontIfAbsent_", smalltalk.method({ selector: "frontIfAbsent:", fn: function (aBlock){ var self=this; var result; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; var $early={}; try { result=_st(self["@read"])._at_ifAbsent_(self["@readIndex"],(function(){ return smalltalk.withContext(function($ctx2) { $1=_st(self["@write"])._isEmpty(); if(smalltalk.assert($1)){ $2=_st(self["@readIndex"]).__gt((1)); if(smalltalk.assert($2)){ self["@read"]=[]; self["@read"]; self["@readIndex"]=(1); self["@readIndex"]; }; $3=_st(aBlock)._value(); throw $early=[$3]; }; self["@read"]=self["@write"]; self["@read"]; self["@readIndex"]=(1); self["@readIndex"]; self["@write"]=_st((smalltalk.OrderedCollection || OrderedCollection))._new(); self["@write"]; return _st(self["@read"])._first(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); _st(self["@read"])._at_put_(self["@readIndex"],nil); self["@readIndex"]=_st(self["@readIndex"]).__plus((1)); $4=result; return $4; } catch(e) {if(e===$early)return e[0]; throw e} }, function($ctx1) {$ctx1.fill(self,"frontIfAbsent:",{aBlock:aBlock,result:result},smalltalk.Queue)})}, messageSends: ["at:ifAbsent:", "ifTrue:", ">", "value", "isEmpty", "new", "first", "at:put:", "+"]}), smalltalk.Queue); smalltalk.addMethod( "_initialize", smalltalk.method({ selector: "initialize", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { smalltalk.Object.fn.prototype._initialize.apply(_st(self), []); self["@read"]=_st((smalltalk.OrderedCollection || OrderedCollection))._new(); self["@write"]=_st((smalltalk.OrderedCollection || OrderedCollection))._new(); self["@readIndex"]=(1); return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.Queue)})}, messageSends: ["initialize", "new"]}), smalltalk.Queue); smalltalk.addClass('RegularExpression', smalltalk.Object, [], 'Kernel-Collections'); smalltalk.addMethod( "_compile_", smalltalk.method({ selector: "compile:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { return self.compile(aString); return self}, function($ctx1) {$ctx1.fill(self,"compile:",{aString:aString},smalltalk.RegularExpression)})}, messageSends: []}), smalltalk.RegularExpression); smalltalk.addMethod( "_exec_", smalltalk.method({ selector: "exec:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { return self.exec(aString) || nil; return self}, function($ctx1) {$ctx1.fill(self,"exec:",{aString:aString},smalltalk.RegularExpression)})}, messageSends: []}), smalltalk.RegularExpression); smalltalk.addMethod( "_test_", smalltalk.method({ selector: "test:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { return self.test(aString); return self}, function($ctx1) {$ctx1.fill(self,"test:",{aString:aString},smalltalk.RegularExpression)})}, messageSends: []}), smalltalk.RegularExpression); smalltalk.addMethod( "_fromString_", smalltalk.method({ selector: "fromString:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._fromString_flag_(aString,""); return $1; }, function($ctx1) {$ctx1.fill(self,"fromString:",{aString:aString},smalltalk.RegularExpression.klass)})}, messageSends: ["fromString:flag:"]}), smalltalk.RegularExpression.klass); smalltalk.addMethod( "_fromString_flag_", smalltalk.method({ selector: "fromString:flag:", fn: function (aString,anotherString){ var self=this; return smalltalk.withContext(function($ctx1) { return new RegExp(aString, anotherString); return self}, function($ctx1) {$ctx1.fill(self,"fromString:flag:",{aString:aString,anotherString:anotherString},smalltalk.RegularExpression.klass)})}, messageSends: []}), smalltalk.RegularExpression.klass); smalltalk.addClass('Stream', smalltalk.Object, ['collection', 'position', 'streamSize'], 'Kernel-Collections'); smalltalk.addMethod( "_atEnd", smalltalk.method({ selector: "atEnd", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._position()).__eq(_st(self)._size()); return $1; }, function($ctx1) {$ctx1.fill(self,"atEnd",{},smalltalk.Stream)})}, messageSends: ["=", "size", "position"]}), smalltalk.Stream); smalltalk.addMethod( "_atStart", smalltalk.method({ selector: "atStart", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._position()).__eq((0)); return $1; }, function($ctx1) {$ctx1.fill(self,"atStart",{},smalltalk.Stream)})}, messageSends: ["=", "position"]}), smalltalk.Stream); smalltalk.addMethod( "_close", smalltalk.method({ selector: "close", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"close",{},smalltalk.Stream)})}, messageSends: []}), smalltalk.Stream); smalltalk.addMethod( "_collection", smalltalk.method({ selector: "collection", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self["@collection"]; return $1; }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.Stream)})}, messageSends: []}), smalltalk.Stream); smalltalk.addMethod( "_contents", smalltalk.method({ selector: "contents", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._collection())._copyFrom_to_((1),_st(self)._streamSize()); return $1; }, function($ctx1) {$ctx1.fill(self,"contents",{},smalltalk.Stream)})}, messageSends: ["copyFrom:to:", "streamSize", "collection"]}), smalltalk.Stream); smalltalk.addMethod( "_do_", smalltalk.method({ selector: "do:", fn: function (aBlock){ var self=this; return smalltalk.withContext(function($ctx1) { _st((function(){ return smalltalk.withContext(function($ctx2) { return _st(self)._atEnd(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){ return smalltalk.withContext(function($ctx2) { return _st(aBlock)._value_(_st(self)._next()); }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"do:",{aBlock:aBlock},smalltalk.Stream)})}, messageSends: ["whileFalse:", "value:", "next", "atEnd"]}), smalltalk.Stream); smalltalk.addMethod( "_flush", smalltalk.method({ selector: "flush", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"flush",{},smalltalk.Stream)})}, messageSends: []}), smalltalk.Stream); smalltalk.addMethod( "_isEmpty", smalltalk.method({ selector: "isEmpty", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self)._size()).__eq((0)); return $1; }, function($ctx1) {$ctx1.fill(self,"isEmpty",{},smalltalk.Stream)})}, messageSends: ["=", "size"]}), smalltalk.Stream); smalltalk.addMethod( "_next", smalltalk.method({ selector: "next", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1; $2=_st(self)._atEnd(); if(smalltalk.assert($2)){ $1=nil; } else { _st(self)._position_(_st(_st(self)._position()).__plus((1))); $1=_st(self["@collection"])._at_(_st(self)._position()); }; return $1; }, function($ctx1) {$ctx1.fill(self,"next",{},smalltalk.Stream)})}, messageSends: ["ifTrue:ifFalse:", "position:", "+", "position", "at:", "atEnd"]}), smalltalk.Stream); smalltalk.addMethod( "_next_", smalltalk.method({ selector: "next:", fn: function (anInteger){ var self=this; var tempCollection; return smalltalk.withContext(function($ctx1) { var $1,$2; tempCollection=_st(_st(_st(self)._collection())._class())._new(); _st(anInteger)._timesRepeat_((function(){ return smalltalk.withContext(function($ctx2) { $1=_st(self)._atEnd(); if(! smalltalk.assert($1)){ return _st(tempCollection)._add_(_st(self)._next()); }; }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); $2=tempCollection; return $2; }, function($ctx1) {$ctx1.fill(self,"next:",{anInteger:anInteger,tempCollection:tempCollection},smalltalk.Stream)})}, messageSends: ["new", "class", "collection", "timesRepeat:", "ifFalse:", "add:", "next", "atEnd"]}), smalltalk.Stream); smalltalk.addMethod( "_nextPut_", smalltalk.method({ selector: "nextPut:", fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._position_(_st(_st(self)._position()).__plus((1))); _st(_st(self)._collection())._at_put_(_st(self)._position(),anObject); _st(self)._setStreamSize_(_st(_st(self)._streamSize())._max_(_st(self)._position())); return self}, function($ctx1) {$ctx1.fill(self,"nextPut:",{anObject:anObject},smalltalk.Stream)})}, messageSends: ["position:", "+", "position", "at:put:", "collection", "setStreamSize:", "max:", "streamSize"]}), smalltalk.Stream); smalltalk.addMethod( "_nextPutAll_", smalltalk.method({ selector: "nextPutAll:", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { _st(aCollection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(self)._nextPut_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})); return self}, function($ctx1) {$ctx1.fill(self,"nextPutAll:",{aCollection:aCollection},smalltalk.Stream)})}, messageSends: ["do:", "nextPut:"]}), smalltalk.Stream); smalltalk.addMethod( "_peek", smalltalk.method({ selector: "peek", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1; $2=_st(self)._atEnd(); if(! smalltalk.assert($2)){ $1=_st(_st(self)._collection())._at_(_st(_st(self)._position()).__plus((1))); }; return $1; }, function($ctx1) {$ctx1.fill(self,"peek",{},smalltalk.Stream)})}, messageSends: ["ifFalse:", "at:", "+", "position", "collection", "atEnd"]}), smalltalk.Stream); smalltalk.addMethod( "_position", smalltalk.method({ selector: "position", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1; $2=self["@position"]; if(($receiver = $2) == nil || $receiver == undefined){ self["@position"]=(0); $1=self["@position"]; } else { $1=$2; }; return $1; }, function($ctx1) {$ctx1.fill(self,"position",{},smalltalk.Stream)})}, messageSends: ["ifNil:"]}), smalltalk.Stream); smalltalk.addMethod( "_position_", smalltalk.method({ selector: "position:", fn: function (anInteger){ var self=this; return smalltalk.withContext(function($ctx1) { self["@position"]=anInteger; return self}, function($ctx1) {$ctx1.fill(self,"position:",{anInteger:anInteger},smalltalk.Stream)})}, messageSends: []}), smalltalk.Stream); smalltalk.addMethod( "_reset", smalltalk.method({ selector: "reset", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._position_((0)); return self}, function($ctx1) {$ctx1.fill(self,"reset",{},smalltalk.Stream)})}, messageSends: ["position:"]}), smalltalk.Stream); smalltalk.addMethod( "_resetContents", smalltalk.method({ selector: "resetContents", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._reset(); _st(self)._setStreamSize_((0)); return self}, function($ctx1) {$ctx1.fill(self,"resetContents",{},smalltalk.Stream)})}, messageSends: ["reset", "setStreamSize:"]}), smalltalk.Stream); smalltalk.addMethod( "_setCollection_", smalltalk.method({ selector: "setCollection:", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { self["@collection"]=aCollection; return self}, function($ctx1) {$ctx1.fill(self,"setCollection:",{aCollection:aCollection},smalltalk.Stream)})}, messageSends: []}), smalltalk.Stream); smalltalk.addMethod( "_setStreamSize_", smalltalk.method({ selector: "setStreamSize:", fn: function (anInteger){ var self=this; return smalltalk.withContext(function($ctx1) { self["@streamSize"]=anInteger; return self}, function($ctx1) {$ctx1.fill(self,"setStreamSize:",{anInteger:anInteger},smalltalk.Stream)})}, messageSends: []}), smalltalk.Stream); smalltalk.addMethod( "_setToEnd", smalltalk.method({ selector: "setToEnd", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._position_(_st(self)._size()); return self}, function($ctx1) {$ctx1.fill(self,"setToEnd",{},smalltalk.Stream)})}, messageSends: ["position:", "size"]}), smalltalk.Stream); smalltalk.addMethod( "_size", smalltalk.method({ selector: "size", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._streamSize(); return $1; }, function($ctx1) {$ctx1.fill(self,"size",{},smalltalk.Stream)})}, messageSends: ["streamSize"]}), smalltalk.Stream); smalltalk.addMethod( "_skip_", smalltalk.method({ selector: "skip:", fn: function (anInteger){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._position_(_st(_st(_st(self)._position()).__plus(anInteger))._min_max_(_st(self)._size(),(0))); return self}, function($ctx1) {$ctx1.fill(self,"skip:",{anInteger:anInteger},smalltalk.Stream)})}, messageSends: ["position:", "min:max:", "size", "+", "position"]}), smalltalk.Stream); smalltalk.addMethod( "_streamSize", smalltalk.method({ selector: "streamSize", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self["@streamSize"]; return $1; }, function($ctx1) {$ctx1.fill(self,"streamSize",{},smalltalk.Stream)})}, messageSends: []}), smalltalk.Stream); smalltalk.addMethod( "_on_", smalltalk.method({ selector: "on:", fn: function (aCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st(self)._new(); _st($2)._setCollection_(aCollection); _st($2)._setStreamSize_(_st(aCollection)._size()); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"on:",{aCollection:aCollection},smalltalk.Stream.klass)})}, messageSends: ["setCollection:", "new", "setStreamSize:", "size", "yourself"]}), smalltalk.Stream.klass); smalltalk.addClass('StringStream', smalltalk.Stream, [], 'Kernel-Collections'); smalltalk.addMethod( "_cr", smalltalk.method({ selector: "cr", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._nextPutAll_(_st((smalltalk.String || String))._cr()); return $1; }, function($ctx1) {$ctx1.fill(self,"cr",{},smalltalk.StringStream)})}, messageSends: ["nextPutAll:", "cr"]}), smalltalk.StringStream); smalltalk.addMethod( "_crlf", smalltalk.method({ selector: "crlf", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._nextPutAll_(_st((smalltalk.String || String))._crlf()); return $1; }, function($ctx1) {$ctx1.fill(self,"crlf",{},smalltalk.StringStream)})}, messageSends: ["nextPutAll:", "crlf"]}), smalltalk.StringStream); smalltalk.addMethod( "_lf", smalltalk.method({ selector: "lf", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self)._nextPutAll_(_st((smalltalk.String || String))._lf()); return $1; }, function($ctx1) {$ctx1.fill(self,"lf",{},smalltalk.StringStream)})}, messageSends: ["nextPutAll:", "lf"]}), smalltalk.StringStream); smalltalk.addMethod( "_next_", smalltalk.method({ selector: "next:", fn: function (anInteger){ var self=this; var tempCollection; return smalltalk.withContext(function($ctx1) { var $1,$2; tempCollection=_st(_st(_st(self)._collection())._class())._new(); _st(anInteger)._timesRepeat_((function(){ return smalltalk.withContext(function($ctx2) { $1=_st(self)._atEnd(); if(! smalltalk.assert($1)){ tempCollection=_st(tempCollection).__comma(_st(self)._next()); return tempCollection; }; }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})); $2=tempCollection; return $2; }, function($ctx1) {$ctx1.fill(self,"next:",{anInteger:anInteger,tempCollection:tempCollection},smalltalk.StringStream)})}, messageSends: ["new", "class", "collection", "timesRepeat:", "ifFalse:", ",", "next", "atEnd"]}), smalltalk.StringStream); smalltalk.addMethod( "_nextPut_", smalltalk.method({ selector: "nextPut:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._nextPutAll_(aString); return self}, function($ctx1) {$ctx1.fill(self,"nextPut:",{aString:aString},smalltalk.StringStream)})}, messageSends: ["nextPutAll:"]}), smalltalk.StringStream); smalltalk.addMethod( "_nextPutAll_", smalltalk.method({ selector: "nextPutAll:", fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._setCollection_(_st(_st(_st(_st(self)._collection())._copyFrom_to_((1),_st(self)._position())).__comma(aString)).__comma(_st(_st(self)._collection())._copyFrom_to_(_st(_st(_st(self)._position()).__plus((1))).__plus(_st(aString)._size()),_st(_st(self)._collection())._size()))); _st(self)._position_(_st(_st(self)._position()).__plus(_st(aString)._size())); _st(self)._setStreamSize_(_st(_st(self)._streamSize())._max_(_st(self)._position())); return self}, function($ctx1) {$ctx1.fill(self,"nextPutAll:",{aString:aString},smalltalk.StringStream)})}, messageSends: ["setCollection:", ",", "copyFrom:to:", "+", "size", "position", "collection", "position:", "setStreamSize:", "max:", "streamSize"]}), smalltalk.StringStream); smalltalk.addMethod( "_space", smalltalk.method({ selector: "space", fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self)._nextPut_(" "); return self}, function($ctx1) {$ctx1.fill(self,"space",{},smalltalk.StringStream)})}, messageSends: ["nextPut:"]}), smalltalk.StringStream);