define("amber_core/Kernel-Tests", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_core/SUnit", "amber_core/Kernel-Objects"], function(smalltalk,nil,_st){ smalltalk.addPackage('Kernel-Tests'); smalltalk.packages["Kernel-Tests"].transport = {"type":"amd","amdNamespace":"amber_core"}; smalltalk.addClass('AnnouncementSubscriptionTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testHandlesAnnouncement", category: 'tests', fn: function (){ var self=this; var subscription,announcementClass1,announcementClass2,classBuilder; function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)} function $SystemAnnouncement(){return smalltalk.SystemAnnouncement||(typeof SystemAnnouncement=="undefined"?nil:SystemAnnouncement)} function $AnnouncementSubscription(){return smalltalk.AnnouncementSubscription||(typeof AnnouncementSubscription=="undefined"?nil:AnnouncementSubscription)} function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $1,$3,$2,$5,$4,$7,$6; classBuilder=_st($ClassBuilder())._new(); $ctx1.sendIdx["new"]=1; announcementClass1=_st(classBuilder)._basicAddSubclassOf_named_instanceVariableNames_package_($SystemAnnouncement(),"TestAnnouncement1",[],"Kernel-Tests"); $1=_st($AnnouncementSubscription())._new(); subscription=_st($1)._announcementClass_($SystemAnnouncement()); $3=_st(subscription)._handlesAnnouncement_($SystemAnnouncement()); $ctx1.sendIdx["handlesAnnouncement:"]=1; $2=self._assert_equals_($3,true); $ctx1.sendIdx["assert:equals:"]=1; $5=_st(subscription)._handlesAnnouncement_(announcementClass1); $ctx1.sendIdx["handlesAnnouncement:"]=2; $4=self._assert_equals_($5,true); $ctx1.sendIdx["assert:equals:"]=2; $7=_st(subscription)._handlesAnnouncement_($Object()); $6=self._assert_equals_($7,false); _st(classBuilder)._basicRemoveClass_(announcementClass1); return self}, function($ctx1) {$ctx1.fill(self,"testHandlesAnnouncement",{subscription:subscription,announcementClass1:announcementClass1,announcementClass2:announcementClass2,classBuilder:classBuilder},smalltalk.AnnouncementSubscriptionTest)})}, args: [], source: "testHandlesAnnouncement\x0a\x09| subscription announcementClass1 announcementClass2 classBuilder |\x0a\x09\x0a\x09classBuilder := ClassBuilder new.\x0a\x09announcementClass1 := classBuilder basicAddSubclassOf: SystemAnnouncement named: 'TestAnnouncement1' instanceVariableNames: #() package: 'Kernel-Tests'.\x0a\x09\x0a\x09subscription := AnnouncementSubscription new announcementClass: SystemAnnouncement.\x0a\x09\x22Test whether the same class triggers the announcement\x22\x0a\x09self assert: (subscription handlesAnnouncement: SystemAnnouncement) equals: true.\x0a\x09\x22Test whether a subclass triggers the announcement\x22\x0a\x09self assert: (subscription handlesAnnouncement: announcementClass1) equals: true.\x0a\x09\x22Test whether an unrelated class does not trigger the announcement\x22\x0a\x09self assert: (subscription handlesAnnouncement: Object) equals: false.\x0a\x09\x0a\x09classBuilder basicRemoveClass: announcementClass1.", messageSends: ["new", "basicAddSubclassOf:named:instanceVariableNames:package:", "announcementClass:", "assert:equals:", "handlesAnnouncement:", "basicRemoveClass:"], referencedClasses: ["ClassBuilder", "SystemAnnouncement", "AnnouncementSubscription", "Object"] }), smalltalk.AnnouncementSubscriptionTest); smalltalk.addClass('BlockClosureTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testCanClearInterval", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._shouldnt_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(_st((function(){ return smalltalk.withContext(function($ctx3) { return _st(_st($Error())._new())._signal(); }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}))._valueWithInterval_((0)))._clearInterval(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testCanClearInterval",{},smalltalk.BlockClosureTest)})}, args: [], source: "testCanClearInterval\x0a\x09self shouldnt: [([Error new signal] valueWithInterval: 0) clearInterval] raise: Error", messageSends: ["shouldnt:raise:", "clearInterval", "valueWithInterval:", "signal", "new"], referencedClasses: ["Error"] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testCanClearTimeout", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._shouldnt_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(_st((function(){ return smalltalk.withContext(function($ctx3) { return _st(_st($Error())._new())._signal(); }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}))._valueWithTimeout_((0)))._clearTimeout(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testCanClearTimeout",{},smalltalk.BlockClosureTest)})}, args: [], source: "testCanClearTimeout\x0a\x09self shouldnt: [([Error new signal] valueWithTimeout: 0) clearTimeout] raise: Error", messageSends: ["shouldnt:raise:", "clearTimeout", "valueWithTimeout:", "signal", "new"], referencedClasses: ["Error"] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testCompiledSource", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_(_st(_st((function(){ return smalltalk.withContext(function($ctx2) { return (1).__plus((1)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._compiledSource())._includesSubString_("function")); return self}, function($ctx1) {$ctx1.fill(self,"testCompiledSource",{},smalltalk.BlockClosureTest)})}, args: [], source: "testCompiledSource\x0a\x09self assert: ([1+1] compiledSource includesSubString: 'function')", messageSends: ["assert:", "includesSubString:", "compiledSource", "+"], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testCurrySelf", category: 'tests', fn: function (){ var self=this; var curriedMethod,array; function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)} function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)} return smalltalk.withContext(function($ctx1) { curriedMethod=_st(_st((function(selfarg,x){ return smalltalk.withContext(function($ctx2) { return _st(selfarg)._at_(x); }, function($ctx2) {$ctx2.fillBlock({selfarg:selfarg,x:x},$ctx1,1)})}))._currySelf())._asCompiledMethod_("foo:"); array=[(3), (1), (4)]; _st(_st($ClassBuilder())._new())._installMethod_forClass_category_(curriedMethod,$Array(),"**test helper"); _st((function(){ return smalltalk.withContext(function($ctx2) { return self._assert_equals_(_st(array)._foo_((2)),(1)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}))._ensure_((function(){ return smalltalk.withContext(function($ctx2) { return _st($Array())._removeCompiledMethod_(curriedMethod); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})})); return self}, function($ctx1) {$ctx1.fill(self,"testCurrySelf",{curriedMethod:curriedMethod,array:array},smalltalk.BlockClosureTest)})}, args: [], source: "testCurrySelf\x0a\x09| curriedMethod array |\x0a\x09curriedMethod := [ :selfarg :x | selfarg at: x ] currySelf asCompiledMethod: 'foo:'.\x0a\x09array := #(3 1 4).\x0a\x09ClassBuilder new installMethod: curriedMethod forClass: Array category: '**test helper'.\x0a\x09[ self assert: (array foo: 2) equals: 1 ]\x0a\x09ensure: [ Array removeCompiledMethod: curriedMethod ]", messageSends: ["asCompiledMethod:", "currySelf", "at:", "installMethod:forClass:category:", "new", "ensure:", "assert:equals:", "foo:", "removeCompiledMethod:"], referencedClasses: ["ClassBuilder", "Array"] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testEnsure", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(_st((function(){ return smalltalk.withContext(function($ctx2) { return (3); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._ensure_((function(){ return smalltalk.withContext(function($ctx2) { return (4); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})),(3)); return self}, function($ctx1) {$ctx1.fill(self,"testEnsure",{},smalltalk.BlockClosureTest)})}, args: [], source: "testEnsure\x0a\x09self assert: ([3] ensure: [4]) equals: 3", messageSends: ["assert:equals:", "ensure:"], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testEnsureRaises", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st((function(){ return smalltalk.withContext(function($ctx3) { return _st(_st($Error())._new())._signal(); }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}))._ensure_((function(){ return smalltalk.withContext(function($ctx3) { return true; }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})})); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testEnsureRaises",{},smalltalk.BlockClosureTest)})}, args: [], source: "testEnsureRaises\x0a\x09self should: [[Error new signal] ensure: [true]] raise: Error", messageSends: ["should:raise:", "ensure:", "signal", "new"], referencedClasses: ["Error"] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testExceptionSemantics", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._timeout_((100)); _st(self._async_((function(){ return smalltalk.withContext(function($ctx2) { return _st((function(){ return smalltalk.withContext(function($ctx3) { self._assert_(true); _st($Error())._signal(); self._deny_(true); return self._finished(); $ctx3.sendIdx["finished"]=1; }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}))._on_do_($Error(),(function(ex){ return smalltalk.withContext(function($ctx3) { return self._finished(); }, function($ctx3) {$ctx3.fillBlock({ex:ex},$ctx2,3)})})); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})))._valueWithTimeout_((0)); return self}, function($ctx1) {$ctx1.fill(self,"testExceptionSemantics",{},smalltalk.BlockClosureTest)})}, args: [], source: "testExceptionSemantics\x0a\x09\x22See https://github.com/NicolasPetton/amber/issues/314\x22\x0a\x09self timeout: 100.\x0a\x09\x0a\x09(self async: [\x0a\x09\x09[\x0a\x09\x09\x09self assert: true.\x0a\x09\x09\x09Error signal.\x0a\x09\x09\x09\x22The following should *not* be run\x22\x0a\x09\x09\x09self deny: true.\x0a\x09\x09\x09self finished.\x0a\x09\x09] on: Error do: [ :ex | self finished ]\x0a\x09]) valueWithTimeout: 0", messageSends: ["timeout:", "valueWithTimeout:", "async:", "on:do:", "assert:", "signal", "deny:", "finished"], referencedClasses: ["Error"] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testNewWithValues", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { function theTestPrototype() {this.name = "theTestPrototype";} function theTestConstructor(arg1, arg2, arg3) {} theTestConstructor.prototype = new theTestPrototype; var theWrappedConstructor = _st(theTestConstructor); var theResult = theWrappedConstructor._newWithValues_([1, 2, 3]); self._assert_equals_(Object.getPrototypeOf(theResult).name, 'theTestPrototype'); "newWithValues: cannot help if the argument list is wrong, and should warn that a mistake was made." function constructionShouldFail() {var anotherResult = theWrappedConstructor._newWithValues_('This is so wrong');} self._should_raise_(_st(constructionShouldFail), smalltalk.Error);; return self}, function($ctx1) {$ctx1.fill(self,"testNewWithValues",{},smalltalk.BlockClosureTest)})}, args: [], source: "testNewWithValues\x0a<\x0a\x09function theTestPrototype() {this.name = \x22theTestPrototype\x22;}\x0a\x09function theTestConstructor(arg1, arg2, arg3) {}\x0a\x09theTestConstructor.prototype = new theTestPrototype;\x0a\x0a\x09var theWrappedConstructor = _st(theTestConstructor);\x0a\x09var theResult = theWrappedConstructor._newWithValues_([1, 2, 3]);\x0a\x09self._assert_equals_(Object.getPrototypeOf(theResult).name, 'theTestPrototype');\x0a\x0a\x09\x22newWithValues: cannot help if the argument list is wrong, and should warn that a mistake was made.\x22\x0a\x09function constructionShouldFail() {var anotherResult = theWrappedConstructor._newWithValues_('This is so wrong');}\x0a\x09self._should_raise_(_st(constructionShouldFail), smalltalk.Error);\x0a>", messageSends: [], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testNumArgs", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=_st((function(){ return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._numArgs(); $ctx1.sendIdx["numArgs"]=1; $1=self._assert_equals_($2,(0)); $ctx1.sendIdx["assert:equals:"]=1; $4=_st((function(a,b){ return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1,2)})}))._numArgs(); $3=self._assert_equals_($4,(2)); return self}, function($ctx1) {$ctx1.fill(self,"testNumArgs",{},smalltalk.BlockClosureTest)})}, args: [], source: "testNumArgs\x0a\x09self assert: [] numArgs equals: 0.\x0a\x09self assert: [:a :b | ] numArgs equals: 2", messageSends: ["assert:equals:", "numArgs"], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testOnDo", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._assert_(_st((function(){ return smalltalk.withContext(function($ctx2) { return _st(_st($Error())._new())._signal(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._on_do_($Error(),(function(ex){ return smalltalk.withContext(function($ctx2) { return true; }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1,2)})}))); return self}, function($ctx1) {$ctx1.fill(self,"testOnDo",{},smalltalk.BlockClosureTest)})}, args: [], source: "testOnDo\x0a\x09self assert: ([Error new signal] on: Error do: [:ex | true])", messageSends: ["assert:", "on:do:", "signal", "new"], referencedClasses: ["Error"] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testValue", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$3,$4,$6,$5; $2=_st((function(){ return smalltalk.withContext(function($ctx2) { return (1).__plus((1)); $ctx2.sendIdx["+"]=1; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._value(); $ctx1.sendIdx["value"]=1; $1=self._assert_equals_($2,(2)); $ctx1.sendIdx["assert:equals:"]=1; $3=self._assert_equals_(_st((function(x){ return smalltalk.withContext(function($ctx2) { return _st(x).__plus((1)); }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,2)})}))._value_((2)),(3)); $ctx1.sendIdx["assert:equals:"]=2; $4=self._assert_equals_(_st((function(x,y){ return smalltalk.withContext(function($ctx2) { return _st(x).__star(y); }, function($ctx2) {$ctx2.fillBlock({x:x,y:y},$ctx1,3)})}))._value_value_((2),(4)),(8)); $ctx1.sendIdx["assert:equals:"]=3; $6=_st((function(a,b,c){ return smalltalk.withContext(function($ctx2) { return (1); }, function($ctx2) {$ctx2.fillBlock({a:a,b:b,c:c},$ctx1,4)})}))._value(); $5=self._assert_equals_($6,(1)); return self}, function($ctx1) {$ctx1.fill(self,"testValue",{},smalltalk.BlockClosureTest)})}, args: [], source: "testValue\x0a\x09self assert: ([1+1] value) equals: 2.\x0a\x09self assert: ([:x | x +1] value: 2) equals: 3.\x0a\x09self assert: ([:x :y | x*y] value: 2 value: 4) equals: 8.\x0a\x0a\x09\x22Arguments are optional in Amber. This isn't ANSI compliant.\x22\x0a\x0a\x09self assert: ([:a :b :c | 1] value) equals: 1", messageSends: ["assert:equals:", "value", "+", "value:", "value:value:", "*"], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testValueWithPossibleArguments", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=_st((function(){ return smalltalk.withContext(function($ctx2) { return (1); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._valueWithPossibleArguments_([(3), (4)]); $ctx1.sendIdx["valueWithPossibleArguments:"]=1; $1=self._assert_equals_($2,(1)); $ctx1.sendIdx["assert:equals:"]=1; $4=_st((function(a){ return smalltalk.withContext(function($ctx2) { return _st(a).__plus((4)); $ctx2.sendIdx["+"]=1; }, function($ctx2) {$ctx2.fillBlock({a:a},$ctx1,2)})}))._valueWithPossibleArguments_([(3), (4)]); $ctx1.sendIdx["valueWithPossibleArguments:"]=2; $3=self._assert_equals_($4,(7)); $ctx1.sendIdx["assert:equals:"]=2; $6=_st((function(a,b){ return smalltalk.withContext(function($ctx2) { return _st(a).__plus(b); }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1,3)})}))._valueWithPossibleArguments_([(3), (4), (5)]); $5=self._assert_equals_($6,(7)); return self}, function($ctx1) {$ctx1.fill(self,"testValueWithPossibleArguments",{},smalltalk.BlockClosureTest)})}, args: [], source: "testValueWithPossibleArguments\x0a\x09self assert: ([1] valueWithPossibleArguments: #(3 4)) equals: 1.\x0a\x09self assert: ([:a | a + 4] valueWithPossibleArguments: #(3 4)) equals: 7.\x0a\x09self assert: ([:a :b | a + b] valueWithPossibleArguments: #(3 4 5)) equals: 7.", messageSends: ["assert:equals:", "valueWithPossibleArguments:", "+"], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testWhileFalse", category: 'tests', fn: function (){ var self=this; var i; return smalltalk.withContext(function($ctx1) { var $1,$2; i=(0); _st((function(){ return smalltalk.withContext(function($ctx2) { return _st(i).__gt((5)); $ctx2.sendIdx[">"]=1; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._whileFalse_((function(){ return smalltalk.withContext(function($ctx2) { i=_st(i).__plus((1)); $ctx2.sendIdx["+"]=1; return i; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $1=self._assert_equals_(i,(6)); $ctx1.sendIdx["assert:equals:"]=1; i=(0); _st((function(){ return smalltalk.withContext(function($ctx2) { i=_st(i).__plus((1)); i; return _st(i).__gt((5)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})}))._whileFalse(); $2=self._assert_equals_(i,(6)); return self}, function($ctx1) {$ctx1.fill(self,"testWhileFalse",{i:i},smalltalk.BlockClosureTest)})}, args: [], source: "testWhileFalse\x0a\x09| i |\x0a\x09i := 0.\x0a\x09[i > 5] whileFalse: [i := i + 1].\x0a\x09self assert: i equals: 6.\x0a\x0a\x09i := 0.\x0a\x09[i := i + 1. i > 5] whileFalse.\x0a\x09self assert: i equals: 6", messageSends: ["whileFalse:", ">", "+", "assert:equals:", "whileFalse"], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addMethod( smalltalk.method({ selector: "testWhileTrue", category: 'tests', fn: function (){ var self=this; var i; return smalltalk.withContext(function($ctx1) { var $1,$2; i=(0); _st((function(){ return smalltalk.withContext(function($ctx2) { return _st(i).__lt((5)); $ctx2.sendIdx["<"]=1; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._whileTrue_((function(){ return smalltalk.withContext(function($ctx2) { i=_st(i).__plus((1)); $ctx2.sendIdx["+"]=1; return i; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $1=self._assert_equals_(i,(5)); $ctx1.sendIdx["assert:equals:"]=1; i=(0); _st((function(){ return smalltalk.withContext(function($ctx2) { i=_st(i).__plus((1)); i; return _st(i).__lt((5)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})}))._whileTrue(); $2=self._assert_equals_(i,(5)); return self}, function($ctx1) {$ctx1.fill(self,"testWhileTrue",{i:i},smalltalk.BlockClosureTest)})}, args: [], source: "testWhileTrue\x0a\x09| i |\x0a\x09i := 0.\x0a\x09[i < 5] whileTrue: [i := i + 1].\x0a\x09self assert: i equals: 5.\x0a\x0a\x09i := 0.\x0a\x09[i := i + 1. i < 5] whileTrue.\x0a\x09self assert: i equals: 5", messageSends: ["whileTrue:", "<", "+", "assert:equals:", "whileTrue"], referencedClasses: [] }), smalltalk.BlockClosureTest); smalltalk.addClass('BooleanTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testEquality", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9,$12,$11,$14,$13,$16,$15,$19,$18,$17,$22,$23,$21,$20; $2=(0).__eq(false); $ctx1.sendIdx["="]=1; $1=self._deny_($2); $ctx1.sendIdx["deny:"]=1; $4=false.__eq((0)); $ctx1.sendIdx["="]=2; $3=self._deny_($4); $ctx1.sendIdx["deny:"]=2; $6="".__eq(false); $ctx1.sendIdx["="]=3; $5=self._deny_($6); $ctx1.sendIdx["deny:"]=3; $8=false.__eq(""); $ctx1.sendIdx["="]=4; $7=self._deny_($8); $ctx1.sendIdx["deny:"]=4; $10=true.__eq(true); $ctx1.sendIdx["="]=5; $9=self._assert_($10); $ctx1.sendIdx["assert:"]=1; $12=false.__eq(true); $ctx1.sendIdx["="]=6; $11=self._deny_($12); $ctx1.sendIdx["deny:"]=5; $14=true.__eq(false); $ctx1.sendIdx["="]=7; $13=self._deny_($14); $16=false.__eq(false); $ctx1.sendIdx["="]=8; $15=self._assert_($16); $ctx1.sendIdx["assert:"]=2; $19=true._yourself(); $ctx1.sendIdx["yourself"]=1; $18=_st($19).__eq(true); $ctx1.sendIdx["="]=9; $17=self._assert_($18); $ctx1.sendIdx["assert:"]=3; $22=true._yourself(); $ctx1.sendIdx["yourself"]=2; $23=true._yourself(); $21=_st($22).__eq($23); $20=self._assert_($21); return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.BooleanTest)})}, args: [], source: "testEquality\x0a\x09\x22We're on top of JS...just be sure to check the basics!\x22\x0a\x0a\x09self deny: 0 = false.\x0a\x09self deny: false = 0.\x0a\x09self deny: '' = false.\x0a\x09self deny: false = ''.\x0a\x0a\x09self assert: (true = true).\x0a\x09self deny: false = true.\x0a\x09self deny: true = false.\x0a\x09self assert: (false = false).\x0a\x0a\x09\x22JS may do some type coercing after sending a message\x22\x0a\x09self assert: (true yourself = true).\x0a\x09self assert: (true yourself = true yourself)", messageSends: ["deny:", "=", "assert:", "yourself"], referencedClasses: [] }), smalltalk.BooleanTest); smalltalk.addMethod( smalltalk.method({ selector: "testIdentity", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9,$12,$11,$14,$13,$16,$15,$19,$18,$17,$22,$23,$21,$20; $2=(0).__eq_eq(false); $ctx1.sendIdx["=="]=1; $1=self._deny_($2); $ctx1.sendIdx["deny:"]=1; $4=false.__eq_eq((0)); $ctx1.sendIdx["=="]=2; $3=self._deny_($4); $ctx1.sendIdx["deny:"]=2; $6="".__eq_eq(false); $ctx1.sendIdx["=="]=3; $5=self._deny_($6); $ctx1.sendIdx["deny:"]=3; $8=false.__eq_eq(""); $ctx1.sendIdx["=="]=4; $7=self._deny_($8); $ctx1.sendIdx["deny:"]=4; $10=true.__eq_eq(true); $ctx1.sendIdx["=="]=5; $9=self._assert_($10); $ctx1.sendIdx["assert:"]=1; $12=false.__eq_eq(true); $ctx1.sendIdx["=="]=6; $11=self._deny_($12); $ctx1.sendIdx["deny:"]=5; $14=true.__eq_eq(false); $ctx1.sendIdx["=="]=7; $13=self._deny_($14); $16=false.__eq_eq(false); $ctx1.sendIdx["=="]=8; $15=self._assert_($16); $ctx1.sendIdx["assert:"]=2; $19=true._yourself(); $ctx1.sendIdx["yourself"]=1; $18=_st($19).__eq_eq(true); $ctx1.sendIdx["=="]=9; $17=self._assert_($18); $ctx1.sendIdx["assert:"]=3; $22=true._yourself(); $ctx1.sendIdx["yourself"]=2; $23=true._yourself(); $21=_st($22).__eq_eq($23); $20=self._assert_($21); return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.BooleanTest)})}, args: [], source: "testIdentity\x0a\x09\x22We're on top of JS...just be sure to check the basics!\x22\x0a\x0a\x09self deny: 0 == false.\x0a\x09self deny: false == 0.\x0a\x09self deny: '' == false.\x0a\x09self deny: false == ''.\x0a\x0a\x09self assert: true == true.\x0a\x09self deny: false == true.\x0a\x09self deny: true == false.\x0a\x09self assert: false == false.\x0a\x0a\x09\x22JS may do some type coercing after sending a message\x22\x0a\x09self assert: true yourself == true.\x0a\x09self assert: true yourself == true yourself", messageSends: ["deny:", "==", "assert:", "yourself"], referencedClasses: [] }), smalltalk.BooleanTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfTrueIfFalse", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9,$12,$11,$14,$13,$16,$15; if(smalltalk.assert(true)){ $2="alternative block"; }; $1=self._assert_equals_($2,"alternative block"); $ctx1.sendIdx["assert:equals:"]=1; if(! smalltalk.assert(true)){ $4="alternative block"; }; $3=self._assert_equals_($4,nil); $ctx1.sendIdx["assert:equals:"]=2; if(smalltalk.assert(false)){ $6="alternative block"; }; $5=self._assert_equals_($6,nil); $ctx1.sendIdx["assert:equals:"]=3; if(! smalltalk.assert(false)){ $8="alternative block"; }; $7=self._assert_equals_($8,"alternative block"); $ctx1.sendIdx["assert:equals:"]=4; if(smalltalk.assert(false)){ $10="alternative block"; } else { $10="alternative block2"; }; $9=self._assert_equals_($10,"alternative block2"); $ctx1.sendIdx["assert:equals:"]=5; if(smalltalk.assert(false)){ $12="alternative block2"; } else { $12="alternative block"; }; $11=self._assert_equals_($12,"alternative block"); $ctx1.sendIdx["assert:equals:"]=6; if(smalltalk.assert(true)){ $14="alternative block"; } else { $14="alternative block2"; }; $13=self._assert_equals_($14,"alternative block"); $ctx1.sendIdx["assert:equals:"]=7; if(smalltalk.assert(true)){ $16="alternative block2"; } else { $16="alternative block"; }; $15=self._assert_equals_($16,"alternative block2"); return self}, function($ctx1) {$ctx1.fill(self,"testIfTrueIfFalse",{},smalltalk.BooleanTest)})}, args: [], source: "testIfTrueIfFalse\x0a\x0a\x09self assert: (true ifTrue: ['alternative block']) equals: 'alternative block'.\x0a\x09self assert: (true ifFalse: ['alternative block']) equals: nil.\x0a\x0a\x09self assert: (false ifTrue: ['alternative block']) equals: nil.\x0a\x09self assert: (false ifFalse: ['alternative block']) equals: 'alternative block'.\x0a\x0a\x09self assert: (false ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.\x0a\x09self assert: (false ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.\x0a\x0a\x09self assert: (true ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.\x0a\x09self assert: (true ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.", messageSends: ["assert:equals:", "ifTrue:", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:"], referencedClasses: [] }), smalltalk.BooleanTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfTrueIfFalseWithBoxing", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$6,$5,$4,$9,$8,$7,$12,$11,$10,$15,$14,$13,$18,$17,$16,$21,$20,$19,$24,$23,$22; $3=true._yourself(); $ctx1.sendIdx["yourself"]=1; if(smalltalk.assert($3)){ $2="alternative block"; }; $1=self._assert_equals_($2,"alternative block"); $ctx1.sendIdx["assert:equals:"]=1; $6=true._yourself(); $ctx1.sendIdx["yourself"]=2; if(! smalltalk.assert($6)){ $5="alternative block"; }; $4=self._assert_equals_($5,nil); $ctx1.sendIdx["assert:equals:"]=2; $9=false._yourself(); $ctx1.sendIdx["yourself"]=3; if(smalltalk.assert($9)){ $8="alternative block"; }; $7=self._assert_equals_($8,nil); $ctx1.sendIdx["assert:equals:"]=3; $12=false._yourself(); $ctx1.sendIdx["yourself"]=4; if(! smalltalk.assert($12)){ $11="alternative block"; }; $10=self._assert_equals_($11,"alternative block"); $ctx1.sendIdx["assert:equals:"]=4; $15=false._yourself(); $ctx1.sendIdx["yourself"]=5; if(smalltalk.assert($15)){ $14="alternative block"; } else { $14="alternative block2"; }; $13=self._assert_equals_($14,"alternative block2"); $ctx1.sendIdx["assert:equals:"]=5; $18=false._yourself(); $ctx1.sendIdx["yourself"]=6; if(smalltalk.assert($18)){ $17="alternative block2"; } else { $17="alternative block"; }; $16=self._assert_equals_($17,"alternative block"); $ctx1.sendIdx["assert:equals:"]=6; $21=true._yourself(); $ctx1.sendIdx["yourself"]=7; if(smalltalk.assert($21)){ $20="alternative block"; } else { $20="alternative block2"; }; $19=self._assert_equals_($20,"alternative block"); $ctx1.sendIdx["assert:equals:"]=7; $24=true._yourself(); if(smalltalk.assert($24)){ $23="alternative block2"; } else { $23="alternative block"; }; $22=self._assert_equals_($23,"alternative block2"); return self}, function($ctx1) {$ctx1.fill(self,"testIfTrueIfFalseWithBoxing",{},smalltalk.BooleanTest)})}, args: [], source: "testIfTrueIfFalseWithBoxing\x0a\x0a\x09self assert: (true yourself ifTrue: ['alternative block']) equals: 'alternative block'.\x0a\x09self assert: (true yourself ifFalse: ['alternative block']) equals: nil.\x0a\x0a\x09self assert: (false yourself ifTrue: ['alternative block']) equals: nil.\x0a\x09self assert: (false yourself ifFalse: ['alternative block']) equals: 'alternative block'.\x0a\x0a\x09self assert: (false yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block2'.\x0a\x09self assert: (false yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block'.\x0a\x0a\x09self assert: (true yourself ifTrue: ['alternative block'] ifFalse: ['alternative block2']) equals: 'alternative block'.\x0a\x09self assert: (true yourself ifFalse: ['alternative block'] ifTrue: ['alternative block2']) equals: 'alternative block2'.", messageSends: ["assert:equals:", "ifTrue:", "yourself", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:"], referencedClasses: [] }), smalltalk.BooleanTest); smalltalk.addMethod( smalltalk.method({ selector: "testLogic", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$5,$4,$6,$7,$8,$10,$9,$12,$11,$14,$13,$17,$18,$16,$15,$20,$19,$22,$21,$25,$26,$24,$23; $1=true.__and(true); $ctx1.sendIdx["&"]=1; self._assert_($1); $ctx1.sendIdx["assert:"]=1; $2=true.__and(false); $ctx1.sendIdx["&"]=2; self._deny_($2); $ctx1.sendIdx["deny:"]=1; $3=false.__and(true); $ctx1.sendIdx["&"]=3; self._deny_($3); $ctx1.sendIdx["deny:"]=2; $5=false.__and(false); $ctx1.sendIdx["&"]=4; $4=self._deny_($5); $ctx1.sendIdx["deny:"]=3; $6=true.__or(true); $ctx1.sendIdx["|"]=1; self._assert_($6); $ctx1.sendIdx["assert:"]=2; $7=true.__or(false); $ctx1.sendIdx["|"]=2; self._assert_($7); $ctx1.sendIdx["assert:"]=3; $8=false.__or(true); $ctx1.sendIdx["|"]=3; self._assert_($8); $ctx1.sendIdx["assert:"]=4; $10=false.__or(false); $ctx1.sendIdx["|"]=4; $9=self._deny_($10); $ctx1.sendIdx["deny:"]=4; $12=(1).__gt((0)); $ctx1.sendIdx[">"]=1; $11=true.__and($12); $ctx1.sendIdx["&"]=5; self._assert_($11); $ctx1.sendIdx["assert:"]=5; $14=(1).__gt((0)); $ctx1.sendIdx[">"]=2; $13=_st($14).__and(false); $ctx1.sendIdx["&"]=6; self._deny_($13); $ctx1.sendIdx["deny:"]=5; $17=(1).__gt((0)); $ctx1.sendIdx[">"]=3; $18=(1).__gt((2)); $ctx1.sendIdx[">"]=4; $16=_st($17).__and($18); $15=self._deny_($16); $20=(1).__gt((0)); $ctx1.sendIdx[">"]=5; $19=false.__or($20); $ctx1.sendIdx["|"]=5; self._assert_($19); $ctx1.sendIdx["assert:"]=6; $22=(1).__gt((0)); $ctx1.sendIdx[">"]=6; $21=_st($22).__or(false); $ctx1.sendIdx["|"]=6; self._assert_($21); $ctx1.sendIdx["assert:"]=7; $25=(1).__gt((0)); $ctx1.sendIdx[">"]=7; $26=(1).__gt((2)); $24=_st($25).__or($26); $23=self._assert_($24); return self}, function($ctx1) {$ctx1.fill(self,"testLogic",{},smalltalk.BooleanTest)})}, args: [], source: "testLogic\x0a\x09\x22Trivial logic table\x22\x0a\x09self assert: (true & true);\x0a\x09\x09deny: (true & false);\x0a\x09\x09deny: (false & true);\x0a\x09\x09deny: (false & false).\x0a\x09self assert: (true | true);\x0a\x09\x09assert: (true | false);\x0a\x09\x09assert: (false | true);\x0a\x09\x09deny: (false | false).\x0a\x09\x22Checking that expressions work fine too\x22\x0a\x09self assert: (true & (1 > 0));\x0a\x09\x09deny: ((1 > 0) & false);\x0a\x09\x09deny: ((1 > 0) & (1 > 2)).\x0a\x09self assert: (false | (1 > 0));\x0a\x09\x09assert: ((1 > 0) | false);\x0a\x09\x09assert: ((1 > 0) | (1 > 2))", messageSends: ["assert:", "&", "deny:", "|", ">"], referencedClasses: [] }), smalltalk.BooleanTest); smalltalk.addMethod( smalltalk.method({ selector: "testLogicKeywords", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$5,$4,$6,$7,$8,$10,$9,$11,$13,$12,$16,$15,$14,$17,$19,$18,$22,$21,$20; $1=true._and_((function(){ return smalltalk.withContext(function($ctx2) { return true; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $ctx1.sendIdx["and:"]=1; self._assert_($1); $ctx1.sendIdx["assert:"]=1; $2=true._and_((function(){ return smalltalk.withContext(function($ctx2) { return false; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $ctx1.sendIdx["and:"]=2; self._deny_($2); $ctx1.sendIdx["deny:"]=1; $3=false._and_((function(){ return smalltalk.withContext(function($ctx2) { return true; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})})); $ctx1.sendIdx["and:"]=3; self._deny_($3); $ctx1.sendIdx["deny:"]=2; $5=false._and_((function(){ return smalltalk.withContext(function($ctx2) { return false; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})})); $ctx1.sendIdx["and:"]=4; $4=self._deny_($5); $ctx1.sendIdx["deny:"]=3; $6=true._or_((function(){ return smalltalk.withContext(function($ctx2) { return true; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)})})); $ctx1.sendIdx["or:"]=1; self._assert_($6); $ctx1.sendIdx["assert:"]=2; $7=true._or_((function(){ return smalltalk.withContext(function($ctx2) { return false; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,6)})})); $ctx1.sendIdx["or:"]=2; self._assert_($7); $ctx1.sendIdx["assert:"]=3; $8=false._or_((function(){ return smalltalk.withContext(function($ctx2) { return true; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,7)})})); $ctx1.sendIdx["or:"]=3; self._assert_($8); $ctx1.sendIdx["assert:"]=4; $10=false._or_((function(){ return smalltalk.withContext(function($ctx2) { return false; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,8)})})); $ctx1.sendIdx["or:"]=4; $9=self._deny_($10); $ctx1.sendIdx["deny:"]=4; $11=true._and_((function(){ return smalltalk.withContext(function($ctx2) { return (1).__gt((0)); $ctx2.sendIdx[">"]=1; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,9)})})); $ctx1.sendIdx["and:"]=5; self._assert_($11); $ctx1.sendIdx["assert:"]=5; $13=(1).__gt((0)); $ctx1.sendIdx[">"]=2; $12=_st($13)._and_((function(){ return smalltalk.withContext(function($ctx2) { return false; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,10)})})); $ctx1.sendIdx["and:"]=6; self._deny_($12); $ctx1.sendIdx["deny:"]=5; $16=(1).__gt((0)); $ctx1.sendIdx[">"]=3; $15=_st($16)._and_((function(){ return smalltalk.withContext(function($ctx2) { return (1).__gt((2)); $ctx2.sendIdx[">"]=4; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,11)})})); $14=self._deny_($15); $17=false._or_((function(){ return smalltalk.withContext(function($ctx2) { return (1).__gt((0)); $ctx2.sendIdx[">"]=5; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,12)})})); $ctx1.sendIdx["or:"]=5; self._assert_($17); $ctx1.sendIdx["assert:"]=6; $19=(1).__gt((0)); $ctx1.sendIdx[">"]=6; $18=_st($19)._or_((function(){ return smalltalk.withContext(function($ctx2) { return false; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,13)})})); $ctx1.sendIdx["or:"]=6; self._assert_($18); $ctx1.sendIdx["assert:"]=7; $22=(1).__gt((0)); $ctx1.sendIdx[">"]=7; $21=_st($22)._or_((function(){ return smalltalk.withContext(function($ctx2) { return (1).__gt((2)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,14)})})); $20=self._assert_($21); return self}, function($ctx1) {$ctx1.fill(self,"testLogicKeywords",{},smalltalk.BooleanTest)})}, args: [], source: "testLogicKeywords\x0a\x09\x22Trivial logic table\x22\x0a\x09self\x0a\x09\x09assert: (true and: [ true]);\x0a\x09\x09deny: (true and: [ false ]);\x0a\x09\x09deny: (false and: [ true ]);\x0a\x09\x09deny: (false and: [ false ]).\x0a\x09self\x0a\x09\x09assert: (true or: [ true ]);\x0a\x09\x09assert: (true or: [ false ]);\x0a\x09\x09assert: (false or: [ true ]);\x0a\x09\x09deny: (false or: [ false ]).\x0a\x09\x09\x0a\x09\x22Checking that expressions work fine too\x22\x0a\x09self\x0a\x09\x09assert: (true and: [ 1 > 0 ]);\x0a\x09\x09deny: ((1 > 0) and: [ false ]);\x0a\x09\x09deny: ((1 > 0) and: [ 1 > 2 ]).\x0a\x09self\x0a\x09\x09assert: (false or: [ 1 > 0 ]);\x0a\x09\x09assert: ((1 > 0) or: [ false ]);\x0a\x09\x09assert: ((1 > 0) or: [ 1 > 2 ])", messageSends: ["assert:", "and:", "deny:", "or:", ">"], referencedClasses: [] }), smalltalk.BooleanTest); smalltalk.addMethod( smalltalk.method({ selector: "testNonBooleanError", category: 'tests', fn: function (){ var self=this; function $NonBooleanReceiver(){return smalltalk.NonBooleanReceiver||(typeof NonBooleanReceiver=="undefined"?nil:NonBooleanReceiver)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { if(smalltalk.assert("")){ } else { }; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$NonBooleanReceiver()); return self}, function($ctx1) {$ctx1.fill(self,"testNonBooleanError",{},smalltalk.BooleanTest)})}, args: [], source: "testNonBooleanError\x0a\x09self should: [ '' ifTrue: [] ifFalse: [] ] raise: NonBooleanReceiver", messageSends: ["should:raise:", "ifTrue:ifFalse:"], referencedClasses: ["NonBooleanReceiver"] }), smalltalk.BooleanTest); smalltalk.addClass('ClassBuilderTest', smalltalk.TestCase, ['builder', 'theClass'], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "setUp", category: 'running', fn: function (){ var self=this; function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)} return smalltalk.withContext(function($ctx1) { self["@builder"]=_st($ClassBuilder())._new(); return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.ClassBuilderTest)})}, args: [], source: "setUp\x0a\x09builder := ClassBuilder new", messageSends: ["new"], referencedClasses: ["ClassBuilder"] }), smalltalk.ClassBuilderTest); smalltalk.addMethod( smalltalk.method({ selector: "tearDown", category: 'running', fn: function (){ var self=this; function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)} return smalltalk.withContext(function($ctx1) { var $1; $1=self["@theClass"]; if(($receiver = $1) == nil || $receiver == null){ $1; } else { _st(_st($Smalltalk())._current())._removeClass_(self["@theClass"]); self["@theClass"]=nil; self["@theClass"]; }; return self}, function($ctx1) {$ctx1.fill(self,"tearDown",{},smalltalk.ClassBuilderTest)})}, args: [], source: "tearDown\x0a\x09theClass ifNotNil: [Smalltalk current removeClass: theClass. theClass := nil]", messageSends: ["ifNotNil:", "removeClass:", "current"], referencedClasses: ["Smalltalk"] }), smalltalk.ClassBuilderTest); smalltalk.addMethod( smalltalk.method({ selector: "testClassCopy", category: 'tests', fn: function (){ var self=this; function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)} return smalltalk.withContext(function($ctx1) { var $3,$4,$2,$1,$7,$8,$6,$5,$9,$12,$13,$11,$10,$16,$15,$18,$17,$14; self["@theClass"]=_st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2"); $3=_st(self["@theClass"])._superclass(); $ctx1.sendIdx["superclass"]=1; $4=_st($ObjectMock())._superclass(); $2=_st($3).__eq_eq($4); $ctx1.sendIdx["=="]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $7=_st(self["@theClass"])._instanceVariableNames(); $ctx1.sendIdx["instanceVariableNames"]=1; $8=_st($ObjectMock())._instanceVariableNames(); $6=_st($7).__eq_eq($8); $ctx1.sendIdx["=="]=2; $5=self._assert_($6); $ctx1.sendIdx["assert:"]=2; $9=self._assert_equals_(_st(self["@theClass"])._name(),"ObjectMock2"); $ctx1.sendIdx["assert:equals:"]=1; $12=_st(self["@theClass"])._package(); $ctx1.sendIdx["package"]=1; $13=_st($ObjectMock())._package(); $11=_st($12).__eq_eq($13); $10=self._assert_($11); $16=_st(self["@theClass"])._methodDictionary(); $ctx1.sendIdx["methodDictionary"]=1; $15=_st($16)._keys(); $ctx1.sendIdx["keys"]=1; $18=_st($ObjectMock())._methodDictionary(); $17=_st($18)._keys(); $14=self._assert_equals_($15,$17); return self}, function($ctx1) {$ctx1.fill(self,"testClassCopy",{},smalltalk.ClassBuilderTest)})}, args: [], source: "testClassCopy\x0a\x09theClass := builder copyClass: ObjectMock named: 'ObjectMock2'.\x0a\x09self assert: theClass superclass == ObjectMock superclass.\x0a\x09self assert: theClass instanceVariableNames == ObjectMock instanceVariableNames.\x0a\x09self assert: theClass name equals: 'ObjectMock2'.\x0a\x09self assert: theClass package == ObjectMock package.\x0a\x09self assert: theClass methodDictionary keys equals: ObjectMock methodDictionary keys", messageSends: ["copyClass:named:", "assert:", "==", "superclass", "instanceVariableNames", "assert:equals:", "name", "package", "keys", "methodDictionary"], referencedClasses: ["ObjectMock"] }), smalltalk.ClassBuilderTest); smalltalk.addMethod( smalltalk.method({ selector: "testClassMigration", category: 'tests', fn: function (){ var self=this; var instance,oldClass; function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)} function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)} function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3,$5,$4,$7,$6,$9,$8,$10,$12,$13,$11,$15,$16,$14,$18,$17,$21,$20,$19,$25,$27,$26,$24,$23,$22,$28; oldClass=_st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2"); $2=_st($Smalltalk())._current(); $ctx1.sendIdx["current"]=1; $1=_st($2)._at_("ObjectMock2"); $ctx1.sendIdx["at:"]=1; instance=_st($1)._new(); $3=$ObjectMock(); $5=_st($Smalltalk())._current(); $ctx1.sendIdx["current"]=2; $4=_st($5)._at_("ObjectMock2"); $ctx1.sendIdx["at:"]=2; _st($3)._subclass_instanceVariableNames_package_($4,"","Kernel-Tests"); $7=_st(oldClass).__eq_eq($ObjectMock2()); $ctx1.sendIdx["=="]=1; $6=self._deny_($7); $ctx1.sendIdx["deny:"]=1; $9=_st(_st($ObjectMock2())._superclass()).__eq_eq($ObjectMock()); $ctx1.sendIdx["=="]=2; $8=self._assert_($9); $ctx1.sendIdx["assert:"]=1; $10=self._assert_(_st(_st($ObjectMock2())._instanceVariableNames())._isEmpty()); $ctx1.sendIdx["assert:"]=2; $12=_st($ObjectMock2())._selectors(); $ctx1.sendIdx["selectors"]=1; $13=_st(oldClass)._selectors(); $11=self._assert_equals_($12,$13); $ctx1.sendIdx["assert:equals:"]=1; $15=_st($ObjectMock2())._comment(); $ctx1.sendIdx["comment"]=1; $16=_st(oldClass)._comment(); $14=self._assert_equals_($15,$16); $ctx1.sendIdx["assert:equals:"]=2; $18=_st(_st($ObjectMock2())._package())._name(); $ctx1.sendIdx["name"]=1; $17=self._assert_equals_($18,"Kernel-Tests"); $21=_st(instance)._class(); $ctx1.sendIdx["class"]=1; $20=_st($21).__eq_eq($ObjectMock2()); $19=self._deny_($20); $25=_st($Smalltalk())._current(); $ctx1.sendIdx["current"]=3; $27=_st(instance)._class(); $26=_st($27)._name(); $24=_st($25)._at_($26); $23=_st($24)._isNil(); $22=self._assert_($23); $28=_st($Smalltalk())._current(); _st($28)._removeClass_($ObjectMock2()); return self}, function($ctx1) {$ctx1.fill(self,"testClassMigration",{instance:instance,oldClass:oldClass},smalltalk.ClassBuilderTest)})}, args: [], source: "testClassMigration\x0a\x09| instance oldClass |\x0a\x09\x0a\x09oldClass := builder copyClass: ObjectMock named: 'ObjectMock2'.\x0a\x09instance := (Smalltalk current at: 'ObjectMock2') new.\x0a\x09\x0a\x09\x22Change the superclass of ObjectMock2\x22\x0a\x09ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')\x0a\x09\x09instanceVariableNames: ''\x0a\x09\x09package: 'Kernel-Tests'.\x0a\x09\x0a\x09self deny: oldClass == ObjectMock2.\x0a\x09\x0a\x09self assert: ObjectMock2 superclass == ObjectMock.\x0a\x09self assert: ObjectMock2 instanceVariableNames isEmpty.\x0a\x09self assert: ObjectMock2 selectors equals: oldClass selectors.\x0a\x09self assert: ObjectMock2 comment equals: oldClass comment.\x0a\x09self assert: ObjectMock2 package name equals: 'Kernel-Tests'.\x0a\x09\x0a\x09self deny: instance class == ObjectMock2.\x0a\x09\x22Commeting this out. Tests implementation detail.\x22\x0a\x09\x22self assert: instance class name equals: 'OldObjectMock2'.\x22\x0a\x09\x0a\x09self assert: (Smalltalk current at: instance class name) isNil.\x0a\x09\x0a\x09Smalltalk current removeClass: ObjectMock2", messageSends: ["copyClass:named:", "new", "at:", "current", "subclass:instanceVariableNames:package:", "deny:", "==", "assert:", "superclass", "isEmpty", "instanceVariableNames", "assert:equals:", "selectors", "comment", "name", "package", "class", "isNil", "removeClass:"], referencedClasses: ["ObjectMock", "Smalltalk", "ObjectMock2"] }), smalltalk.ClassBuilderTest); smalltalk.addMethod( smalltalk.method({ selector: "testClassMigrationWithClassInstanceVariables", category: 'tests', fn: function (){ var self=this; function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)} function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)} function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)} return smalltalk.withContext(function($ctx1) { var $1,$2,$4,$3,$6,$5,$7; _st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2"); $1=_st($ObjectMock2())._class(); $ctx1.sendIdx["class"]=1; _st($1)._instanceVariableNames_("foo bar"); $2=$ObjectMock(); $4=_st($Smalltalk())._current(); $ctx1.sendIdx["current"]=1; $3=_st($4)._at_("ObjectMock2"); _st($2)._subclass_instanceVariableNames_package_($3,"","Kernel-Tests"); $6=_st($ObjectMock2())._class(); $5=_st($6)._instanceVariableNames(); self._assert_equals_($5,["foo", "bar"]); $7=_st($Smalltalk())._current(); _st($7)._removeClass_($ObjectMock2()); return self}, function($ctx1) {$ctx1.fill(self,"testClassMigrationWithClassInstanceVariables",{},smalltalk.ClassBuilderTest)})}, args: [], source: "testClassMigrationWithClassInstanceVariables\x0a\x09\x0a\x09builder copyClass: ObjectMock named: 'ObjectMock2'.\x0a\x09ObjectMock2 class instanceVariableNames: 'foo bar'.\x0a\x09\x0a\x09\x22Change the superclass of ObjectMock2\x22\x0a\x09ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')\x0a\x09\x09instanceVariableNames: ''\x0a\x09\x09package: 'Kernel-Tests'.\x0a\x09\x0a\x09self assert: ObjectMock2 class instanceVariableNames equals: #('foo' 'bar').\x0a\x09\x0a\x09Smalltalk current removeClass: ObjectMock2", messageSends: ["copyClass:named:", "instanceVariableNames:", "class", "subclass:instanceVariableNames:package:", "at:", "current", "assert:equals:", "instanceVariableNames", "removeClass:"], referencedClasses: ["ObjectMock", "ObjectMock2", "Smalltalk"] }), smalltalk.ClassBuilderTest); smalltalk.addMethod( smalltalk.method({ selector: "testClassMigrationWithSubclasses", category: 'tests', fn: function (){ var self=this; function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)} function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)} function $ObjectMock3(){return smalltalk.ObjectMock3||(typeof ObjectMock3=="undefined"?nil:ObjectMock3)} function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)} function $ObjectMock4(){return smalltalk.ObjectMock4||(typeof ObjectMock4=="undefined"?nil:ObjectMock4)} return smalltalk.withContext(function($ctx1) { var $1,$2,$4,$6,$5,$3,$9,$8,$7,$12,$11,$10,$15,$14,$13,$16; _st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2"); $1=_st($ObjectMock2())._subclass_instanceVariableNames_package_("ObjectMock3","","Kernel-Tests"); $ctx1.sendIdx["subclass:instanceVariableNames:package:"]=1; $2=_st($ObjectMock3())._subclass_instanceVariableNames_package_("ObjectMock4","","Kernel-Tests"); $ctx1.sendIdx["subclass:instanceVariableNames:package:"]=2; $4=$ObjectMock(); $6=_st($Smalltalk())._current(); $ctx1.sendIdx["current"]=1; $5=_st($6)._at_("ObjectMock2"); $3=_st($4)._subclass_instanceVariableNames_package_($5,"","Kernel-Tests"); $9=_st($ObjectMock())._subclasses(); $ctx1.sendIdx["subclasses"]=1; $8=_st($9)._includes_($ObjectMock2()); $ctx1.sendIdx["includes:"]=1; $7=self._assert_($8); $ctx1.sendIdx["assert:"]=1; $12=_st($ObjectMock2())._subclasses(); $ctx1.sendIdx["subclasses"]=2; $11=_st($12)._includes_($ObjectMock3()); $ctx1.sendIdx["includes:"]=2; $10=self._assert_($11); $ctx1.sendIdx["assert:"]=2; $15=_st($ObjectMock3())._subclasses(); $14=_st($15)._includes_($ObjectMock4()); $13=self._assert_($14); _st(_st($ObjectMock())._allSubclasses())._do_((function(each){ return smalltalk.withContext(function($ctx2) { $16=_st($Smalltalk())._current(); return _st($16)._removeClass_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); return self}, function($ctx1) {$ctx1.fill(self,"testClassMigrationWithSubclasses",{},smalltalk.ClassBuilderTest)})}, args: [], source: "testClassMigrationWithSubclasses\x0a\x09\x0a\x09builder copyClass: ObjectMock named: 'ObjectMock2'.\x0a\x09ObjectMock2 subclass: 'ObjectMock3' instanceVariableNames: '' package: 'Kernel-Tests'.\x0a\x09ObjectMock3 subclass: 'ObjectMock4' instanceVariableNames: '' package: 'Kernel-Tests'.\x0a\x09\x0a\x09\x22Change the superclass of ObjectMock2\x22\x0a\x09ObjectMock subclass: (Smalltalk current at: 'ObjectMock2')\x0a\x09\x09instanceVariableNames: ''\x0a\x09\x09package: 'Kernel-Tests'.\x0a\x09\x0a\x09self assert: (ObjectMock subclasses includes: ObjectMock2).\x0a\x09self assert: (ObjectMock2 subclasses includes: ObjectMock3).\x0a\x09self assert: (ObjectMock3 subclasses includes: ObjectMock4).\x0a\x09\x0a\x09ObjectMock allSubclasses do: [ :each | Smalltalk current removeClass: each ]", messageSends: ["copyClass:named:", "subclass:instanceVariableNames:package:", "at:", "current", "assert:", "includes:", "subclasses", "do:", "allSubclasses", "removeClass:"], referencedClasses: ["ObjectMock", "ObjectMock2", "ObjectMock3", "Smalltalk", "ObjectMock4"] }), smalltalk.ClassBuilderTest); smalltalk.addMethod( smalltalk.method({ selector: "testInstanceVariableNames", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(_st(self["@builder"])._instanceVariableNamesFor_(" hello world "),["hello", "world"]); return self}, function($ctx1) {$ctx1.fill(self,"testInstanceVariableNames",{},smalltalk.ClassBuilderTest)})}, args: [], source: "testInstanceVariableNames\x0a\x09self assert: (builder instanceVariableNamesFor: ' hello world ') equals: #('hello' 'world')", messageSends: ["assert:equals:", "instanceVariableNamesFor:"], referencedClasses: [] }), smalltalk.ClassBuilderTest); smalltalk.addClass('CollectionTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "assertSameContents:as:", category: 'convenience', fn: function (aCollection,anotherCollection){ var self=this; return smalltalk.withContext(function($ctx1) { var $3,$4,$2,$1,$6,$7,$5; $3=_st(aCollection)._size(); $ctx1.sendIdx["size"]=1; $4=_st(anotherCollection)._size(); $2=_st($3).__eq($4); $ctx1.sendIdx["="]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; _st(aCollection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $6=_st(aCollection)._occurrencesOf_(each); $ctx2.sendIdx["occurrencesOf:"]=1; $7=_st(anotherCollection)._occurrencesOf_(each); $5=_st($6).__eq($7); return self._assert_($5); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); return self}, function($ctx1) {$ctx1.fill(self,"assertSameContents:as:",{aCollection:aCollection,anotherCollection:anotherCollection},smalltalk.CollectionTest)})}, args: ["aCollection", "anotherCollection"], source: "assertSameContents: aCollection as: anotherCollection\x0a\x09self assert: (aCollection size = anotherCollection size).\x0a\x09aCollection do: [ :each |\x0a\x09\x09self assert: ((aCollection occurrencesOf: each) = (anotherCollection occurrencesOf: each)) ]", messageSends: ["assert:", "=", "size", "do:", "occurrencesOf:"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "collection", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self._collectionClass())._withAll_(self._defaultValues()); return $1; }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.CollectionTest)})}, args: [], source: "collection\x0a\x09^ self collectionClass withAll: self defaultValues", messageSends: ["withAll:", "collectionClass", "defaultValues"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self._class())._collectionClass(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.CollectionTest)})}, args: [], source: "collectionClass\x0a\x09^ self class collectionClass", messageSends: ["collectionClass", "class"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionWithDuplicates", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self._collectionClass())._withAll_(["a", "b", "c", (1), (2), (1), "a"]); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.CollectionTest)})}, args: [], source: "collectionWithDuplicates\x0a\x09^ self collectionClass withAll: #('a' 'b' 'c' 1 2 1 'a')", messageSends: ["withAll:", "collectionClass"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "defaultValues", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=[(1), (2), (3), (-4)]; return $1; }, function($ctx1) {$ctx1.fill(self,"defaultValues",{},smalltalk.CollectionTest)})}, args: [], source: "defaultValues\x0a\x09^ #(1 2 3 -4)", messageSends: [], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "isCollectionReadOnly", category: 'testing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return false; }, function($ctx1) {$ctx1.fill(self,"isCollectionReadOnly",{},smalltalk.CollectionTest)})}, args: [], source: "isCollectionReadOnly\x0a\x09^ false", messageSends: [], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsArray", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$3,$2; $1=self._collection(); $ctx1.sendIdx["collection"]=1; $3=self._collection(); $2=_st($3)._asArray(); self._assertSameContents_as_($1,$2); return self}, function($ctx1) {$ctx1.fill(self,"testAsArray",{},smalltalk.CollectionTest)})}, args: [], source: "testAsArray\x0a\x09self\x0a\x09\x09assertSameContents: self collection\x0a\x09\x09as: self collection asArray", messageSends: ["assertSameContents:as:", "collection", "asArray"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsOrderedCollection", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$3,$2; $1=self._collection(); $ctx1.sendIdx["collection"]=1; $3=self._collection(); $2=_st($3)._asOrderedCollection(); self._assertSameContents_as_($1,$2); return self}, function($ctx1) {$ctx1.fill(self,"testAsOrderedCollection",{},smalltalk.CollectionTest)})}, args: [], source: "testAsOrderedCollection\x0a\x09self\x0a\x09\x09assertSameContents: self collection\x0a\x09\x09as: self collection asOrderedCollection", messageSends: ["assertSameContents:as:", "collection", "asOrderedCollection"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsSet", category: 'tests', fn: function (){ var self=this; var c,set; return smalltalk.withContext(function($ctx1) { c=self._collectionWithDuplicates(); set=_st(c)._asSet(); self._assert_equals_(_st(set)._size(),(5)); _st(c)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return self._assert_(_st(set)._includes_(each)); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); return self}, function($ctx1) {$ctx1.fill(self,"testAsSet",{c:c,set:set},smalltalk.CollectionTest)})}, args: [], source: "testAsSet\x0a\x09| c set |\x0a\x09c := self collectionWithDuplicates.\x0a\x09set := c asSet.\x0a\x09self assert: set size equals: 5.\x0a\x09c do: [ :each |\x0a\x09\x09self assert: (set includes: each) ]", messageSends: ["collectionWithDuplicates", "asSet", "assert:equals:", "size", "do:", "assert:", "includes:"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testCollect", category: 'tests', fn: function (){ var self=this; var newCollection; return smalltalk.withContext(function($ctx1) { newCollection=[(1), (2), (3), (4)]; self._assertSameContents_as_(_st(self._collection())._collect_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each)._abs(); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})),newCollection); return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{newCollection:newCollection},smalltalk.CollectionTest)})}, args: [], source: "testCollect\x0a\x09| newCollection |\x0a\x09newCollection := #(1 2 3 4).\x0a\x09self\x0a\x09\x09assertSameContents: (self collection collect: [ :each |\x0a\x09\x09\x09each abs ])\x0a\x09\x09as: newCollection", messageSends: ["assertSameContents:as:", "collect:", "collection", "abs"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testDetect", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._detect_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each).__lt((0)); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); $ctx1.sendIdx["detect:"]=1; self._assert_equals_($1,(-4)); self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { $3=self._collection(); return _st($3)._detect_((function(each){ return smalltalk.withContext(function($ctx3) { return _st(each).__eq((6)); }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx2,3)})})); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testDetect",{},smalltalk.CollectionTest)})}, args: [], source: "testDetect\x0a\x09self assert: (self collection detect: [ :each | each < 0 ]) equals: -4.\x0a\x09self\x0a\x09\x09should: [ self collection detect: [ :each | each = 6 ] ]\x0a\x09\x09raise: Error", messageSends: ["assert:equals:", "detect:", "collection", "<", "should:raise:", "="], referencedClasses: ["Error"] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testDo", category: 'tests', fn: function (){ var self=this; var newCollection; function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)} return smalltalk.withContext(function($ctx1) { var $1,$2; newCollection=_st($OrderedCollection())._new(); $1=self._collection(); $ctx1.sendIdx["collection"]=1; _st($1)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(newCollection)._add_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); $2=self._collection(); self._assertSameContents_as_($2,newCollection); return self}, function($ctx1) {$ctx1.fill(self,"testDo",{newCollection:newCollection},smalltalk.CollectionTest)})}, args: [], source: "testDo\x0a\x09| newCollection |\x0a\x09newCollection := OrderedCollection new.\x0a\x09self collection do: [ :each |\x0a\x09\x09newCollection add: each ].\x0a\x09self\x0a\x09\x09assertSameContents: self collection\x0a\x09\x09as: newCollection", messageSends: ["new", "do:", "collection", "add:", "assertSameContents:as:"], referencedClasses: ["OrderedCollection"] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testIsEmpty", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=_st(_st(self._collectionClass())._new())._isEmpty(); $ctx1.sendIdx["isEmpty"]=1; self._assert_($1); $2=_st(self._collection())._isEmpty(); self._deny_($2); return self}, function($ctx1) {$ctx1.fill(self,"testIsEmpty",{},smalltalk.CollectionTest)})}, args: [], source: "testIsEmpty\x0a\x09self assert: self collectionClass new isEmpty.\x0a\x09self deny: self collection isEmpty", messageSends: ["assert:", "isEmpty", "new", "collectionClass", "deny:", "collection"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testSelect", category: 'tests', fn: function (){ var self=this; var newCollection; return smalltalk.withContext(function($ctx1) { newCollection=[(2), (-4)]; self._assertSameContents_as_(_st(self._collection())._select_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each)._even(); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})),newCollection); return self}, function($ctx1) {$ctx1.fill(self,"testSelect",{newCollection:newCollection},smalltalk.CollectionTest)})}, args: [], source: "testSelect\x0a\x09| newCollection |\x0a\x09newCollection := #(2 -4).\x0a\x09self\x0a\x09\x09assertSameContents: (self collection select: [ :each |\x0a\x09\x09\x09each even ])\x0a\x09\x09as: newCollection", messageSends: ["assertSameContents:as:", "select:", "collection", "even"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testSize", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=_st(_st(self._collectionClass())._new())._size(); $ctx1.sendIdx["size"]=1; $1=self._assert_equals_($2,(0)); $ctx1.sendIdx["assert:equals:"]=1; $4=_st(self._collection())._size(); $3=self._assert_equals_($4,(4)); return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.CollectionTest)})}, args: [], source: "testSize\x0a\x09self assert: self collectionClass new size equals: 0.\x0a\x09self assert: self collection size equals: 4", messageSends: ["assert:equals:", "size", "new", "collectionClass", "collection"], referencedClasses: [] }), smalltalk.CollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return nil; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.CollectionTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ nil", messageSends: [], referencedClasses: [] }), smalltalk.CollectionTest.klass); smalltalk.addMethod( smalltalk.method({ selector: "isAbstract", category: 'testing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self._collectionClass())._isNil(); return $1; }, function($ctx1) {$ctx1.fill(self,"isAbstract",{},smalltalk.CollectionTest.klass)})}, args: [], source: "isAbstract\x0a\x09^ self collectionClass isNil", messageSends: ["isNil", "collectionClass"], referencedClasses: [] }), smalltalk.CollectionTest.klass); smalltalk.addClass('IndexableCollectionTest', smalltalk.CollectionTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testAt", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._at_((4)); $ctx1.sendIdx["at:"]=1; self._assert_equals_($1,(-4)); self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { $3=self._collection(); return _st($3)._at_((5)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.IndexableCollectionTest)})}, args: [], source: "testAt\x0a\x09self assert: (self collection at: 4) equals: -4.\x0a\x09self should: [ self collection at: 5 ] raise: Error", messageSends: ["assert:equals:", "at:", "collection", "should:raise:"], referencedClasses: ["Error"] }), smalltalk.IndexableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtIfAbsent", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$5,$4,$3,$1; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $5=self._collection(); $4=_st($5)._size(); $3=_st($4).__plus((1)); $1=_st($2)._at_ifAbsent_($3,(function(){ return smalltalk.withContext(function($ctx2) { return "none"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); self._assert_equals_($1,"none"); return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{},smalltalk.IndexableCollectionTest)})}, args: [], source: "testAtIfAbsent\x0a\x09self assert: (self collection at: (self collection size + 1) ifAbsent: [ 'none' ]) equals: 'none'", messageSends: ["assert:equals:", "at:ifAbsent:", "collection", "+", "size"], referencedClasses: [] }), smalltalk.IndexableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testContains", category: 'tests', fn: function (){ var self=this; var collection; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $2,$3,$5,$4,$1,$7,$6; collection=self._collection(); $ctx1.sendIdx["collection"]=1; $2=self._collection(); $ctx1.sendIdx["collection"]=2; $1=_st($2)._contains_((function(each){ return smalltalk.withContext(function($ctx2) { $3=each; $5=self._collection(); $ctx2.sendIdx["collection"]=3; $4=_st($5)._first(); return _st($3).__eq($4); $ctx2.sendIdx["="]=1; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); $ctx1.sendIdx["contains:"]=1; self._assert_($1); $7=self._collection(); $6=_st($7)._contains_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each).__eq(_st($Object())._new()); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)})})); self._deny_($6); return self}, function($ctx1) {$ctx1.fill(self,"testContains",{collection:collection},smalltalk.IndexableCollectionTest)})}, args: [], source: "testContains\x0a\x09| collection |\x0a\x09collection := self collection.\x0a\x09\x0a\x09self assert: (self collection contains: [ :each | each = self collection first ]).\x0a\x09self deny: (self collection contains: [ :each | each = Object new ])", messageSends: ["collection", "assert:", "contains:", "=", "first", "deny:", "new"], referencedClasses: ["Object"] }), smalltalk.IndexableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testIndexOf", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$4,$7,$6,$5; $3=self._collection(); $ctx1.sendIdx["collection"]=1; $2=_st($3)._indexOf_((2)); $ctx1.sendIdx["indexOf:"]=1; $1=self._assert_equals_($2,(2)); $ctx1.sendIdx["assert:equals:"]=1; self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { $4=self._collection(); $ctx2.sendIdx["collection"]=2; return _st($4)._indexOf_((999)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); $7=self._collection(); $6=_st($7)._indexOf_ifAbsent_((999),(function(){ return smalltalk.withContext(function($ctx2) { return "sentinel"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $5=self._assert_equals_($6,"sentinel"); return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.IndexableCollectionTest)})}, args: [], source: "testIndexOf\x0a\x09self assert: (self collection indexOf: 2) equals: 2.\x0a\x09self should: [ self collection indexOf: 999 ] raise: Error.\x0a\x09self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'", messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"], referencedClasses: ["Error"] }), smalltalk.IndexableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testWithIndexDo", category: 'tests', fn: function (){ var self=this; var collection; return smalltalk.withContext(function($ctx1) { var $1; collection=self._collection(); $ctx1.sendIdx["collection"]=1; $1=self._collection(); _st($1)._withIndexDo_((function(each,index){ return smalltalk.withContext(function($ctx2) { return self._assert_equals_(_st(collection)._at_(index),each); }, function($ctx2) {$ctx2.fillBlock({each:each,index:index},$ctx1,1)})})); return self}, function($ctx1) {$ctx1.fill(self,"testWithIndexDo",{collection:collection},smalltalk.IndexableCollectionTest)})}, args: [], source: "testWithIndexDo\x0a\x09| collection |\x0a\x09collection := self collection.\x0a\x09\x0a\x09self collection withIndexDo: [ :each :index |\x0a\x09\x09self assert: (collection at: index) equals: each ]", messageSends: ["collection", "withIndexDo:", "assert:equals:", "at:"], referencedClasses: [] }), smalltalk.IndexableCollectionTest); smalltalk.addClass('HashedCollectionTest', smalltalk.IndexableCollectionTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "collection", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$4,$5,$1; $2="b".__minus_gt((1)); $ctx1.sendIdx["->"]=1; $3="a".__minus_gt((2)); $ctx1.sendIdx["->"]=2; $4="c".__minus_gt((3)); $ctx1.sendIdx["->"]=3; $5="d".__minus_gt((-4)); $1=smalltalk.HashedCollection._from_([$2,$3,$4,$5]); return $1; }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.HashedCollectionTest)})}, args: [], source: "collection\x0a\x09^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4 }", messageSends: ["->"], referencedClasses: [] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionWithDuplicates", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$4,$5,$6,$7,$8,$1; $2="b".__minus_gt((1)); $ctx1.sendIdx["->"]=1; $3="a".__minus_gt((2)); $ctx1.sendIdx["->"]=2; $4="c".__minus_gt((3)); $ctx1.sendIdx["->"]=3; $5="d".__minus_gt((-4)); $ctx1.sendIdx["->"]=4; $6="e".__minus_gt((1)); $ctx1.sendIdx["->"]=5; $7="f".__minus_gt((2)); $ctx1.sendIdx["->"]=6; $8="g".__minus_gt((10)); $1=smalltalk.HashedCollection._from_([$2,$3,$4,$5,$6,$7,$8]); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.HashedCollectionTest)})}, args: [], source: "collectionWithDuplicates\x0a\x09^ #{ 'b' -> 1. 'a' -> 2. 'c' -> 3. 'd' -> -4. 'e' -> 1. 'f' -> 2. 'g' -> 10 }", messageSends: ["->"], referencedClasses: [] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsDictionary", category: 'tests', fn: function (){ var self=this; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { self._assert_(_st(_st(_st(self._collectionClass())._new())._asDictionary())._isMemberOf_($Dictionary())); return self}, function($ctx1) {$ctx1.fill(self,"testAsDictionary",{},smalltalk.HashedCollectionTest)})}, args: [], source: "testAsDictionary\x0aself assert: ( self collectionClass new asDictionary isMemberOf: Dictionary ).", messageSends: ["assert:", "isMemberOf:", "asDictionary", "new", "collectionClass"], referencedClasses: ["Dictionary"] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testAt", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._at_("a"); $ctx1.sendIdx["at:"]=1; self._assert_equals_($1,(2)); self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { $3=self._collection(); return _st($3)._at_((5)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.HashedCollectionTest)})}, args: [], source: "testAt\x0a\x09self assert: (self collection at: 'a') equals: 2.\x0a\x09self should: [ self collection at: 5 ] raise: Error", messageSends: ["assert:equals:", "at:", "collection", "should:raise:"], referencedClasses: ["Error"] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testContains", category: 'tests', fn: function (){ var self=this; var collection; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $2,$3,$6,$5,$4,$1,$8,$7; collection=self._collection(); $ctx1.sendIdx["collection"]=1; $2=self._collection(); $ctx1.sendIdx["collection"]=2; $1=_st($2)._contains_((function(each){ return smalltalk.withContext(function($ctx2) { $3=each; $6=self._collection(); $ctx2.sendIdx["collection"]=3; $5=_st($6)._values(); $4=_st($5)._first(); return _st($3).__eq($4); $ctx2.sendIdx["="]=1; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); $ctx1.sendIdx["contains:"]=1; self._assert_($1); $8=self._collection(); $7=_st($8)._contains_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each).__eq(_st($Object())._new()); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)})})); self._deny_($7); return self}, function($ctx1) {$ctx1.fill(self,"testContains",{collection:collection},smalltalk.HashedCollectionTest)})}, args: [], source: "testContains\x0a\x09| collection |\x0a\x09collection := self collection.\x0a\x09\x0a\x09self assert: (self collection contains: [ :each | each = self collection values first ]).\x0a\x09self deny: (self collection contains: [ :each | each = Object new ])", messageSends: ["collection", "assert:", "contains:", "=", "first", "values", "deny:", "new"], referencedClasses: ["Object"] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testFrom", category: 'tests', fn: function (){ var self=this; var associations; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$5,$6,$4; $1="a".__minus_gt((1)); $ctx1.sendIdx["->"]=1; $2="b".__minus_gt((2)); $ctx1.sendIdx["->"]=2; associations=[$1,$2]; $3=_st(_st(self._class())._collectionClass())._from_(associations); $5="a".__minus_gt((1)); $ctx1.sendIdx["->"]=3; $6="b".__minus_gt((2)); $4=smalltalk.HashedCollection._from_([$5,$6]); self._assertSameContents_as_($3,$4); return self}, function($ctx1) {$ctx1.fill(self,"testFrom",{associations:associations},smalltalk.HashedCollectionTest)})}, args: [], source: "testFrom\x0a\x22Accept a collection of associations.\x22\x0a| associations |\x0aassociations := { 'a' -> 1. 'b' -> 2 }.\x0aself assertSameContents: ( self class collectionClass from: associations ) as: #{ 'a' -> 1. 'b' -> 2 }.", messageSends: ["->", "assertSameContents:as:", "from:", "collectionClass", "class"], referencedClasses: [] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testIndexOf", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$4,$7,$6,$5; $3=self._collection(); $ctx1.sendIdx["collection"]=1; $2=_st($3)._indexOf_((2)); $ctx1.sendIdx["indexOf:"]=1; $1=self._assert_equals_($2,"a"); $ctx1.sendIdx["assert:equals:"]=1; self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { $4=self._collection(); $ctx2.sendIdx["collection"]=2; return _st($4)._indexOf_((999)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); $7=self._collection(); $6=_st($7)._indexOf_ifAbsent_((999),(function(){ return smalltalk.withContext(function($ctx2) { return "sentinel"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $5=self._assert_equals_($6,"sentinel"); return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.HashedCollectionTest)})}, args: [], source: "testIndexOf\x0a\x09self assert: (self collection indexOf: 2) equals: 'a'.\x0a\x09self should: [ self collection indexOf: 999 ] raise: Error.\x0a\x09self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'", messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"], referencedClasses: ["Error"] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testNewFromPairs", category: 'tests', fn: function (){ var self=this; var flattenedAssociations; return smalltalk.withContext(function($ctx1) { var $1,$3,$4,$2; flattenedAssociations=["a",(1),"b",(2)]; $1=_st(_st(self._class())._collectionClass())._newFromPairs_(flattenedAssociations); $3="a".__minus_gt((1)); $ctx1.sendIdx["->"]=1; $4="b".__minus_gt((2)); $2=smalltalk.HashedCollection._from_([$3,$4]); self._assertSameContents_as_($1,$2); return self}, function($ctx1) {$ctx1.fill(self,"testNewFromPairs",{flattenedAssociations:flattenedAssociations},smalltalk.HashedCollectionTest)})}, args: [], source: "testNewFromPairs\x0a\x22Accept an array in which all odd indexes are keys and evens are values.\x22\x0a| flattenedAssociations |\x0aflattenedAssociations := { 'a'. 1. 'b'. 2 }.\x0aself assertSameContents: ( self class collectionClass newFromPairs: flattenedAssociations ) as: #{ 'a' -> 1. 'b' -> 2 }.", messageSends: ["assertSameContents:as:", "newFromPairs:", "collectionClass", "class", "->"], referencedClasses: [] }), smalltalk.HashedCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)} return smalltalk.withContext(function($ctx1) { var $1; $1=$HashedCollection(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.HashedCollectionTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ HashedCollection", messageSends: [], referencedClasses: ["HashedCollection"] }), smalltalk.HashedCollectionTest.klass); smalltalk.addClass('DictionaryTest', smalltalk.HashedCollectionTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "collection", category: 'accessing', fn: function (){ var self=this; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st($Dictionary())._new(); _st($2)._at_put_((1),(1)); $ctx1.sendIdx["at:put:"]=1; _st($2)._at_put_("a",(2)); $ctx1.sendIdx["at:put:"]=2; _st($2)._at_put_(true,(3)); $ctx1.sendIdx["at:put:"]=3; _st($2)._at_put_((4),(-4)); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.DictionaryTest)})}, args: [], source: "collection\x0a\x09^ Dictionary new\x0a\x09\x09at: 1 put: 1;\x0a\x09\x09at: 'a' put: 2;\x0a\x09\x09at: true put: 3;\x0a\x09\x09at: 4 put: -4;\x0a\x09\x09yourself", messageSends: ["at:put:", "new", "yourself"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionWithDuplicates", category: 'accessing', fn: function (){ var self=this; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st($Dictionary())._new(); _st($2)._at_put_((1),(1)); $ctx1.sendIdx["at:put:"]=1; _st($2)._at_put_("a",(2)); $ctx1.sendIdx["at:put:"]=2; _st($2)._at_put_(true,(3)); $ctx1.sendIdx["at:put:"]=3; _st($2)._at_put_((4),(-4)); $ctx1.sendIdx["at:put:"]=4; _st($2)._at_put_("b",(1)); $ctx1.sendIdx["at:put:"]=5; _st($2)._at_put_((3),(3)); $ctx1.sendIdx["at:put:"]=6; _st($2)._at_put_(false,(12)); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.DictionaryTest)})}, args: [], source: "collectionWithDuplicates\x0a\x09^ Dictionary new\x0a\x09\x09at: 1 put: 1;\x0a\x09\x09at: 'a' put: 2;\x0a\x09\x09at: true put: 3;\x0a\x09\x09at: 4 put: -4;\x0a\x09\x09at: 'b' put: 1;\x0a\x09\x09at: 3 put: 3;\x0a\x09\x09at: false put: 12;\x0a\x09\x09yourself", messageSends: ["at:put:", "new", "yourself"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testAccessing", category: 'tests', fn: function (){ var self=this; var d; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1,$3,$2,$5,$4,$8,$7,$6,$10,$9,$12,$11,$13,$15,$14,$17,$18,$16,$21,$22,$20,$19,$25,$26,$24,$23,$29,$30,$28,$27; d=_st($Dictionary())._new(); $1=_st(d)._at_put_("hello","world"); $ctx1.sendIdx["at:put:"]=1; $3=_st(d)._at_("hello"); $ctx1.sendIdx["at:"]=1; $2=self._assert_equals_($3,"world"); $ctx1.sendIdx["assert:equals:"]=1; $5=_st(d)._at_ifAbsent_("hello",(function(){ return smalltalk.withContext(function($ctx2) { return nil; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $ctx1.sendIdx["at:ifAbsent:"]=1; $4=self._assert_equals_($5,"world"); $ctx1.sendIdx["assert:equals:"]=2; $8=_st(d)._at_ifAbsent_("foo",(function(){ return smalltalk.withContext(function($ctx2) { return nil; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $7=_st($8).__eq("world"); $6=self._deny_($7); $ctx1.sendIdx["deny:"]=1; $10=_st(d)._includesKey_("hello"); $ctx1.sendIdx["includesKey:"]=1; $9=self._assert_($10); $ctx1.sendIdx["assert:"]=1; $12=_st(d)._includesKey_("foo"); $ctx1.sendIdx["includesKey:"]=2; $11=self._deny_($12); $ctx1.sendIdx["deny:"]=2; $13=_st(d)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=2; $15=_st(d)._at_((1)); $ctx1.sendIdx["at:"]=2; $14=self._assert_equals_($15,(2)); $ctx1.sendIdx["assert:equals:"]=3; $17=d; $18=(1).__at((3)); $ctx1.sendIdx["@"]=1; $16=_st($17)._at_put_($18,(3)); $21=d; $22=(1).__at((3)); $ctx1.sendIdx["@"]=2; $20=_st($21)._at_($22); $19=self._assert_equals_($20,(3)); $25=d; $26=(1).__at((3)); $ctx1.sendIdx["@"]=3; $24=_st($25)._includesKey_($26); $ctx1.sendIdx["includesKey:"]=3; $23=self._assert_($24); $29=d; $30=(3).__at((1)); $28=_st($29)._includesKey_($30); $27=self._deny_($28); return self}, function($ctx1) {$ctx1.fill(self,"testAccessing",{d:d},smalltalk.DictionaryTest)})}, args: [], source: "testAccessing\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x0a\x09d at: 'hello' put: 'world'.\x0a\x09self assert: (d at: 'hello') equals: 'world'.\x0a\x09self assert: (d at: 'hello' ifAbsent: [nil]) equals: 'world'.\x0a\x09self deny: (d at: 'foo' ifAbsent: [nil]) = 'world'.\x0a\x0a\x09self assert: (d includesKey: 'hello').\x0a\x09self deny: (d includesKey: 'foo').\x0a\x0a\x09d at: 1 put: 2.\x0a\x09self assert: (d at: 1) equals: 2.\x0a\x0a\x09d at: 1@3 put: 3.\x0a\x09self assert: (d at: 1@3) equals: 3.\x0a\x0a\x09self assert: (d includesKey: 1@3).\x0a\x09self deny: (d includesKey: 3@1)", messageSends: ["new", "at:put:", "assert:equals:", "at:", "at:ifAbsent:", "deny:", "=", "assert:", "includesKey:", "@"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsHashedCollection", category: 'tests', fn: function (){ var self=this; function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)} return smalltalk.withContext(function($ctx1) { self._assert_(_st(_st(_st(self._collectionClass())._new())._asHashedCollection())._isMemberOf_($HashedCollection())); return self}, function($ctx1) {$ctx1.fill(self,"testAsHashedCollection",{},smalltalk.DictionaryTest)})}, args: [], source: "testAsHashedCollection\x0aself assert: ( self collectionClass new asHashedCollection isMemberOf: HashedCollection ).", messageSends: ["assert:", "isMemberOf:", "asHashedCollection", "new", "collectionClass"], referencedClasses: ["HashedCollection"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testDynamicDictionaries", category: 'tests', fn: function (){ var self=this; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$5,$6,$4; $3="hello".__minus_gt((1)); $ctx1.sendIdx["->"]=1; $2=smalltalk.HashedCollection._from_([$3]); $1=_st($2)._asDictionary(); $5=$Dictionary(); $6="hello".__minus_gt((1)); $4=_st($5)._with_($6); self._assert_equals_($1,$4); return self}, function($ctx1) {$ctx1.fill(self,"testDynamicDictionaries",{},smalltalk.DictionaryTest)})}, args: [], source: "testDynamicDictionaries\x0a\x09self assert: #{'hello' -> 1} asDictionary equals: (Dictionary with: 'hello' -> 1)", messageSends: ["assert:equals:", "asDictionary", "->", "with:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testEquality", category: 'tests', fn: function (){ var self=this; var d1,d2; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $3,$4,$2,$1,$5,$6,$7,$8,$10,$9,$11,$12,$14,$13,$15,$16,$18,$17,$19,$20,$22,$21; $3=_st($Dictionary())._new(); $ctx1.sendIdx["new"]=1; $4=_st($Dictionary())._new(); $ctx1.sendIdx["new"]=2; $2=_st($3).__eq($4); $ctx1.sendIdx["="]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $5=_st($Dictionary())._new(); $ctx1.sendIdx["new"]=3; _st($5)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=1; $6=_st($5)._yourself(); $ctx1.sendIdx["yourself"]=1; d1=$6; $7=_st($Dictionary())._new(); $ctx1.sendIdx["new"]=4; _st($7)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=2; $8=_st($7)._yourself(); $ctx1.sendIdx["yourself"]=2; d2=$8; $10=_st(d1).__eq(d2); $ctx1.sendIdx["="]=2; $9=self._assert_($10); $11=_st($Dictionary())._new(); $ctx1.sendIdx["new"]=5; _st($11)._at_put_((1),(3)); $ctx1.sendIdx["at:put:"]=3; $12=_st($11)._yourself(); $ctx1.sendIdx["yourself"]=3; d2=$12; $14=_st(d1).__eq(d2); $ctx1.sendIdx["="]=3; $13=self._deny_($14); $ctx1.sendIdx["deny:"]=1; $15=_st($Dictionary())._new(); $ctx1.sendIdx["new"]=6; _st($15)._at_put_((2),(2)); $ctx1.sendIdx["at:put:"]=4; $16=_st($15)._yourself(); $ctx1.sendIdx["yourself"]=4; d2=$16; $18=_st(d1).__eq(d2); $ctx1.sendIdx["="]=4; $17=self._deny_($18); $ctx1.sendIdx["deny:"]=2; $19=_st($Dictionary())._new(); _st($19)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=5; _st($19)._at_put_((3),(4)); $20=_st($19)._yourself(); d2=$20; $22=_st(d1).__eq(d2); $21=self._deny_($22); return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{d1:d1,d2:d2},smalltalk.DictionaryTest)})}, args: [], source: "testEquality\x0a\x09| d1 d2 |\x0a\x0a\x09self assert: (Dictionary new = Dictionary new).\x0a\x09\x09\x0a\x09d1 := Dictionary new at: 1 put: 2; yourself.\x0a\x09d2 := Dictionary new at: 1 put: 2; yourself.\x0a\x09self assert: (d1 = d2).\x0a\x0a\x09d2 := Dictionary new at: 1 put: 3; yourself.\x0a\x09self deny: d1 = d2.\x0a\x0a\x09d2 := Dictionary new at: 2 put: 2; yourself.\x0a\x09self deny: d1 = d2.\x0a\x0a\x09d2 := Dictionary new at: 1 put: 2; at: 3 put: 4; yourself.\x0a\x09self deny: d1 = d2.", messageSends: ["assert:", "=", "new", "at:put:", "yourself", "deny:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfAbsent", category: 'tests', fn: function (){ var self=this; var d,visited; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { visited=false; d=_st($Dictionary())._new(); _st(d)._at_ifAbsent_("hello",(function(){ return smalltalk.withContext(function($ctx2) { visited=true; return visited; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); self._assert_(visited); return self}, function($ctx1) {$ctx1.fill(self,"testIfAbsent",{d:d,visited:visited},smalltalk.DictionaryTest)})}, args: [], source: "testIfAbsent\x0a\x0a\x09| d visited |\x0a\x09visited := false.\x0a\x09d := Dictionary new.\x0a\x0a\x09d at: 'hello' ifAbsent: [ visited := true ].\x0a\x09self assert: visited.", messageSends: ["new", "at:ifAbsent:", "assert:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfPresent", category: 'tests', fn: function (){ var self=this; var d,visited,absent; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1; visited=false; d=_st($Dictionary())._new(); _st(d)._at_put_("hello","world"); $1=_st(d)._at_ifPresent_("hello",(function(value){ return smalltalk.withContext(function($ctx2) { visited=value; return visited; }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1,1)})})); $ctx1.sendIdx["at:ifPresent:"]=1; self._assert_equals_(visited,"world"); absent=_st(d)._at_ifPresent_("bye",(function(value){ return smalltalk.withContext(function($ctx2) { visited=value; return visited; }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1,2)})})); self._assert_(_st(absent)._isNil()); return self}, function($ctx1) {$ctx1.fill(self,"testIfPresent",{d:d,visited:visited,absent:absent},smalltalk.DictionaryTest)})}, args: [], source: "testIfPresent\x0a\x0a\x09| d visited absent |\x0a\x09visited := false.\x0a\x09d := Dictionary new.\x0a\x09d at: 'hello' put: 'world'.\x0a\x0a\x09d at: 'hello' ifPresent: [ :value | visited := value ].\x0a\x09self assert: visited equals: 'world'.\x0a\x0a\x09absent := d at: 'bye' ifPresent: [ :value | visited := value ].\x0a\x09self assert: absent isNil.", messageSends: ["new", "at:put:", "at:ifPresent:", "assert:equals:", "assert:", "isNil"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfPresentIfAbsent", category: 'tests', fn: function (){ var self=this; var d,visited; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1,$2; visited=false; d=_st($Dictionary())._new(); _st(d)._at_put_("hello","world"); $1=_st(d)._at_ifPresent_ifAbsent_("hello",(function(value){ return smalltalk.withContext(function($ctx2) { visited=value; return visited; }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1,1)})}),(function(){ return smalltalk.withContext(function($ctx2) { visited=true; return visited; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $ctx1.sendIdx["at:ifPresent:ifAbsent:"]=1; self._assert_equals_(visited,"world"); $2=_st(d)._at_ifPresent_ifAbsent_("buy",(function(value){ return smalltalk.withContext(function($ctx2) { visited=value; return visited; }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1,3)})}),(function(){ return smalltalk.withContext(function($ctx2) { visited=true; return visited; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})})); self._assert_(visited); return self}, function($ctx1) {$ctx1.fill(self,"testIfPresentIfAbsent",{d:d,visited:visited},smalltalk.DictionaryTest)})}, args: [], source: "testIfPresentIfAbsent\x0a\x0a\x09| d visited |\x0a\x09visited := false.\x0a\x09d := Dictionary new.\x0a\x09d at: 'hello' put: 'world'.\x0a\x0a\x09d at: 'hello' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].\x0a\x09self assert: visited equals: 'world'.\x0a\x0a\x09d at: 'buy' ifPresent: [ :value | visited := value ] ifAbsent: [ visited := true ].\x0a\x09self assert: visited.", messageSends: ["new", "at:put:", "at:ifPresent:ifAbsent:", "assert:equals:", "assert:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testKeys", category: 'tests', fn: function (){ var self=this; var d; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3; d=_st($Dictionary())._new(); $1=_st(d)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=1; $2=_st(d)._at_put_((2),(3)); $ctx1.sendIdx["at:put:"]=2; $3=_st(d)._at_put_((3),(4)); self._assert_equals_(_st(d)._keys(),[(1), (2), (3)]); return self}, function($ctx1) {$ctx1.fill(self,"testKeys",{d:d},smalltalk.DictionaryTest)})}, args: [], source: "testKeys\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x09d at: 1 put: 2.\x0a\x09d at: 2 put: 3.\x0a\x09d at: 3 put: 4.\x0a\x0a\x09self assert: d keys equals: #(1 2 3)", messageSends: ["new", "at:put:", "assert:equals:", "keys"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testPointKey", category: 'tests', fn: function (){ var self=this; var d; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1,$6,$7,$5,$4,$9,$10,$8,$13,$14,$12,$11,$15,$16,$19,$20,$18,$17,$22,$23,$21; d=_st($Dictionary())._new(); $2=d; $3=(1).__at((1)); $ctx1.sendIdx["@"]=1; $1=_st($2)._at_put_($3,"foo"); $ctx1.sendIdx["at:put:"]=1; $6=d; $7=(1).__at((1)); $ctx1.sendIdx["@"]=2; $5=_st($6)._at_($7); $ctx1.sendIdx["at:"]=1; $4=self._assert_equals_($5,"foo"); $ctx1.sendIdx["assert:equals:"]=1; $9=d; $10=(1).__at((1)); $ctx1.sendIdx["@"]=3; $8=_st($9)._at_put_($10,"bar"); $13=d; $14=(1).__at((1)); $ctx1.sendIdx["@"]=4; $12=_st($13)._at_($14); $11=self._assert_equals_($12,"bar"); $ctx1.sendIdx["assert:equals:"]=2; $15=d; $16=(1).__at((1)); $ctx1.sendIdx["@"]=5; _st($15)._removeKey_($16); $19=d; $20=(1).__at((1)); $ctx1.sendIdx["@"]=6; $18=_st($19)._at_ifAbsent_($20,(function(){ return smalltalk.withContext(function($ctx2) { return "baz"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $17=self._assert_equals_($18,"baz"); $22=d; $23=(1).__at((1)); $21=_st($22)._includesKey_($23); self._deny_($21); return self}, function($ctx1) {$ctx1.fill(self,"testPointKey",{d:d},smalltalk.DictionaryTest)})}, args: [], source: "testPointKey\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x09\x0a\x09d at: 1@1 put: 'foo'.\x0a\x09self assert: (d at: 1@1) equals: 'foo'.\x0a\x09d at: 1@1 put: 'bar'.\x0a\x09self assert: (d at: 1@1) equals: 'bar'.\x0a\x09d removeKey: 1@1.\x0a\x09self assert: (d at: 1@1 ifAbsent: [ 'baz' ]) equals: 'baz'.\x0a\x09self deny: (d includesKey: 1@1)", messageSends: ["new", "at:put:", "@", "assert:equals:", "at:", "removeKey:", "at:ifAbsent:", "deny:", "includesKey:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testPrintString", category: 'tests', fn: function (){ var self=this; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st($Dictionary())._new(); _st($2)._at_put_("firstname","James"); $ctx1.sendIdx["at:put:"]=1; _st($2)._at_put_("lastname","Bond"); $3=_st($2)._printString(); $1=$3; self._assert_equals_($1,"a Dictionary ('firstname' -> 'James' , 'lastname' -> 'Bond')"); return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{},smalltalk.DictionaryTest)})}, args: [], source: "testPrintString\x0a\x09self\x0a\x09\x09assert: (Dictionary new\x0a\x09\x09\x09\x09\x09\x09\x09at:'firstname' put: 'James';\x0a\x09\x09\x09\x09\x09\x09\x09at:'lastname' put: 'Bond';\x0a\x09\x09\x09\x09\x09\x09\x09printString)\x0a\x09\x09equals: 'a Dictionary (''firstname'' -> ''James'' , ''lastname'' -> ''Bond'')'", messageSends: ["assert:equals:", "at:put:", "new", "printString"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testRemoveKey", category: 'tests', fn: function (){ var self=this; var d,key; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$5,$4,$7,$6,$8; d=_st($Dictionary())._new(); $1=_st(d)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=1; $2=_st(d)._at_put_((2),(3)); $ctx1.sendIdx["at:put:"]=2; $3=_st(d)._at_put_((3),(4)); key=(2); $5=_st(d)._keys(); $ctx1.sendIdx["keys"]=1; $4=self._assert_equals_($5,[(1), (2), (3)]); $ctx1.sendIdx["assert:equals:"]=1; _st(d)._removeKey_(key); $7=_st(d)._keys(); $6=self._assert_equals_($7,[(1), (3)]); $ctx1.sendIdx["assert:equals:"]=2; $8=self._assert_equals_(_st(d)._values(),[(2), (4)]); self._deny_(_st(d)._includesKey_((2))); return self}, function($ctx1) {$ctx1.fill(self,"testRemoveKey",{d:d,key:key},smalltalk.DictionaryTest)})}, args: [], source: "testRemoveKey\x0a\x09| d key |\x0a\x0a\x09d := Dictionary new.\x0a\x09d at: 1 put: 2.\x0a\x09d at: 2 put: 3.\x0a\x09d at: 3 put: 4.\x0a\x0a\x09key := 2.\x0a\x0a\x09self assert: d keys equals: #(1 2 3).\x0a\x0a\x09d removeKey: key.\x0a\x09self assert: d keys equals: #(1 3).\x0a\x09self assert: d values equals: #(2 4).\x0a\x09self deny: (d includesKey: 2)", messageSends: ["new", "at:put:", "assert:equals:", "keys", "removeKey:", "values", "deny:", "includesKey:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testRemoveKeyIfAbsent", category: 'tests', fn: function (){ var self=this; var d,key; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4,$6,$5,$8,$7; d=_st($Dictionary())._new(); $1=_st(d)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=1; $2=_st(d)._at_put_((2),(3)); $ctx1.sendIdx["at:put:"]=2; $3=_st(d)._at_put_((3),(4)); key=(2); $4=self._assert_equals_(_st(d)._removeKey_(key),(3)); $ctx1.sendIdx["assert:equals:"]=1; key=(3); $6=_st(d)._removeKey_ifAbsent_(key,(function(){ return smalltalk.withContext(function($ctx2) { return (42); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $ctx1.sendIdx["removeKey:ifAbsent:"]=1; $5=self._assert_equals_($6,(4)); $ctx1.sendIdx["assert:equals:"]=2; key="why"; $8=_st(d)._removeKey_ifAbsent_(key,(function(){ return smalltalk.withContext(function($ctx2) { return (42); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $7=self._assert_equals_($8,(42)); return self}, function($ctx1) {$ctx1.fill(self,"testRemoveKeyIfAbsent",{d:d,key:key},smalltalk.DictionaryTest)})}, args: [], source: "testRemoveKeyIfAbsent\x0a\x09| d key |\x0a\x0a\x09d := Dictionary new.\x0a\x09d at: 1 put: 2.\x0a\x09d at: 2 put: 3.\x0a\x09d at: 3 put: 4.\x0a\x0a\x09key := 2.\x0a\x09self assert: (d removeKey: key) equals: 3.\x0a\x0a\x09key := 3.\x0a\x09self assert: (d removeKey: key ifAbsent: [42]) equals: 4.\x0a\x0a\x09key := 'why'.\x0a\x09self assert: (d removeKey: key ifAbsent: [42] ) equals: 42.", messageSends: ["new", "at:put:", "assert:equals:", "removeKey:", "removeKey:ifAbsent:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testSize", category: 'tests', fn: function (){ var self=this; var d; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3,$5,$4,$6,$8,$7; d=_st($Dictionary())._new(); $2=_st(d)._size(); $ctx1.sendIdx["size"]=1; $1=self._assert_equals_($2,(0)); $ctx1.sendIdx["assert:equals:"]=1; $3=_st(d)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=1; $5=_st(d)._size(); $ctx1.sendIdx["size"]=2; $4=self._assert_equals_($5,(1)); $ctx1.sendIdx["assert:equals:"]=2; $6=_st(d)._at_put_((2),(3)); $8=_st(d)._size(); $7=self._assert_equals_($8,(2)); return self}, function($ctx1) {$ctx1.fill(self,"testSize",{d:d},smalltalk.DictionaryTest)})}, args: [], source: "testSize\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x09self assert: d size equals: 0.\x0a\x0a\x09d at: 1 put: 2.\x0a\x09self assert: d size equals: 1.\x0a\x0a\x09d at: 2 put: 3.\x0a\x09self assert: d size equals: 2.", messageSends: ["new", "assert:equals:", "size", "at:put:"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "testValues", category: 'tests', fn: function (){ var self=this; var d; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3; d=_st($Dictionary())._new(); $1=_st(d)._at_put_((1),(2)); $ctx1.sendIdx["at:put:"]=1; $2=_st(d)._at_put_((2),(3)); $ctx1.sendIdx["at:put:"]=2; $3=_st(d)._at_put_((3),(4)); self._assert_equals_(_st(d)._values(),[(2), (3), (4)]); return self}, function($ctx1) {$ctx1.fill(self,"testValues",{d:d},smalltalk.DictionaryTest)})}, args: [], source: "testValues\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x09d at: 1 put: 2.\x0a\x09d at: 2 put: 3.\x0a\x09d at: 3 put: 4.\x0a\x0a\x09self assert: d values equals: #(2 3 4)", messageSends: ["new", "at:put:", "assert:equals:", "values"], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)} return smalltalk.withContext(function($ctx1) { var $1; $1=$Dictionary(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.DictionaryTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ Dictionary", messageSends: [], referencedClasses: ["Dictionary"] }), smalltalk.DictionaryTest.klass); smalltalk.addClass('SequenceableCollectionTest', smalltalk.IndexableCollectionTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testFirst", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._first(); $4=self._collection(); $3=_st($4)._at_((1)); self._assert_equals_($1,$3); return self}, function($ctx1) {$ctx1.fill(self,"testFirst",{},smalltalk.SequenceableCollectionTest)})}, args: [], source: "testFirst\x0a\x09self assert: (self collection first) equals: (self collection at: 1)", messageSends: ["assert:equals:", "first", "collection", "at:"], referencedClasses: [] }), smalltalk.SequenceableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testFourth", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._fourth(); $4=self._collection(); $3=_st($4)._at_((4)); self._assert_equals_($1,$3); return self}, function($ctx1) {$ctx1.fill(self,"testFourth",{},smalltalk.SequenceableCollectionTest)})}, args: [], source: "testFourth\x0a\x09self assert: (self collection fourth) equals: (self collection at: 4)", messageSends: ["assert:equals:", "fourth", "collection", "at:"], referencedClasses: [] }), smalltalk.SequenceableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testLast", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$6,$5,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._last(); $4=self._collection(); $ctx1.sendIdx["collection"]=2; $6=self._collection(); $5=_st($6)._size(); $3=_st($4)._at_($5); self._assert_equals_($1,$3); return self}, function($ctx1) {$ctx1.fill(self,"testLast",{},smalltalk.SequenceableCollectionTest)})}, args: [], source: "testLast\x0a\x09self assert: (self collection last) equals: (self collection at: self collection size)", messageSends: ["assert:equals:", "last", "collection", "at:", "size"], referencedClasses: [] }), smalltalk.SequenceableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testSecond", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._second(); $4=self._collection(); $3=_st($4)._at_((2)); self._assert_equals_($1,$3); return self}, function($ctx1) {$ctx1.fill(self,"testSecond",{},smalltalk.SequenceableCollectionTest)})}, args: [], source: "testSecond\x0a\x09self assert: (self collection second) equals: (self collection at: 2)", messageSends: ["assert:equals:", "second", "collection", "at:"], referencedClasses: [] }), smalltalk.SequenceableCollectionTest); smalltalk.addMethod( smalltalk.method({ selector: "testThird", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._third(); $4=self._collection(); $3=_st($4)._at_((3)); self._assert_equals_($1,$3); return self}, function($ctx1) {$ctx1.fill(self,"testThird",{},smalltalk.SequenceableCollectionTest)})}, args: [], source: "testThird\x0a\x09self assert: (self collection third) equals: (self collection at: 3)", messageSends: ["assert:equals:", "third", "collection", "at:"], referencedClasses: [] }), smalltalk.SequenceableCollectionTest); smalltalk.addClass('ArrayTest', smalltalk.SequenceableCollectionTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testAdd", category: 'tests', fn: function (){ var self=this; var array; return smalltalk.withContext(function($ctx1) { array=self._collection(); _st(array)._add_((6)); self._assert_equals_(_st(array)._last(),(6)); return self}, function($ctx1) {$ctx1.fill(self,"testAdd",{array:array},smalltalk.ArrayTest)})}, args: [], source: "testAdd \x0a\x09| array | \x0a\x09array := self collection. \x0a\x09array add: 6.\x0a\x09\x0a\x09self assert: array last equals: 6", messageSends: ["collection", "add:", "assert:equals:", "last"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testAddFirst", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=self._collection(); _st($1)._addFirst_((0)); $2=_st($1)._yourself(); self._assert_equals_(_st($2)._first(),(0)); return self}, function($ctx1) {$ctx1.fill(self,"testAddFirst",{},smalltalk.ArrayTest)})}, args: [], source: "testAddFirst\x0a\x09self assert: (self collection addFirst: 0; yourself) first equals: 0", messageSends: ["assert:equals:", "first", "addFirst:", "collection", "yourself"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtIfAbsent", category: 'tests', fn: function (){ var self=this; var array; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9,$12,$11; array=["hello", "world"]; $2=_st(array)._at_((1)); $ctx1.sendIdx["at:"]=1; $1=self._assert_equals_($2,"hello"); $ctx1.sendIdx["assert:equals:"]=1; $4=_st(array)._at_((2)); $3=self._assert_equals_($4,"world"); $ctx1.sendIdx["assert:equals:"]=2; $6=_st(array)._at_ifAbsent_((2),(function(){ return smalltalk.withContext(function($ctx2) { return "not found"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $ctx1.sendIdx["at:ifAbsent:"]=1; $5=self._assert_equals_($6,"world"); $ctx1.sendIdx["assert:equals:"]=3; $8=_st(array)._at_ifAbsent_((0),(function(){ return smalltalk.withContext(function($ctx2) { return "not found"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $ctx1.sendIdx["at:ifAbsent:"]=2; $7=self._assert_equals_($8,"not found"); $ctx1.sendIdx["assert:equals:"]=4; $10=_st(array)._at_ifAbsent_((-10),(function(){ return smalltalk.withContext(function($ctx2) { return "not found"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})})); $ctx1.sendIdx["at:ifAbsent:"]=3; $9=self._assert_equals_($10,"not found"); $ctx1.sendIdx["assert:equals:"]=5; $12=_st(array)._at_ifAbsent_((3),(function(){ return smalltalk.withContext(function($ctx2) { return "not found"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})})); $11=self._assert_equals_($12,"not found"); return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{array:array},smalltalk.ArrayTest)})}, args: [], source: "testAtIfAbsent\x0a\x09| array |\x0a\x09array := #('hello' 'world').\x0a\x09self assert: (array at: 1) equals: 'hello'.\x0a\x09self assert: (array at: 2) equals: 'world'.\x0a\x09self assert: (array at: 2 ifAbsent: ['not found']) equals: 'world'.\x0a\x09self assert: (array at: 0 ifAbsent: ['not found']) equals: 'not found'.\x0a\x09self assert: (array at: -10 ifAbsent: ['not found']) equals: 'not found'.\x0a\x09self assert: (array at: 3 ifAbsent: ['not found']) equals: 'not found'.", messageSends: ["assert:equals:", "at:", "at:ifAbsent:"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testFirstN", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(_st([(1),(2),(3),(4),(5)])._first_((3)),[(1),(2),(3)]); return self}, function($ctx1) {$ctx1.fill(self,"testFirstN",{},smalltalk.ArrayTest)})}, args: [], source: "testFirstN\x0a\x09self assert: ({1. 2. 3. 4. 5} first: 3) equals: {1. 2. 3}", messageSends: ["assert:equals:", "first:"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfEmpty", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(""._ifEmpty_((function(){ return smalltalk.withContext(function($ctx2) { return "zork"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})),"zork"); return self}, function($ctx1) {$ctx1.fill(self,"testIfEmpty",{},smalltalk.ArrayTest)})}, args: [], source: "testIfEmpty\x0a\x09self assert: ( '' ifEmpty: ['zork'] ) equals: 'zork'", messageSends: ["assert:equals:", "ifEmpty:"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testPrintString", category: 'tests', fn: function (){ var self=this; var array; function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3,$4,$6,$5,$7,$9,$8,$10,$11,$13,$12,$14,$16,$15,$17,$19,$18; array=_st($Array())._new(); $2=_st(array)._printString(); $ctx1.sendIdx["printString"]=1; $1=self._assert_equals_($2,"an Array ()"); $ctx1.sendIdx["assert:equals:"]=1; $3=array; _st($3)._add_((1)); $ctx1.sendIdx["add:"]=1; $4=_st($3)._add_((3)); $ctx1.sendIdx["add:"]=2; $6=_st(array)._printString(); $ctx1.sendIdx["printString"]=2; $5=self._assert_equals_($6,"an Array (1 3)"); $ctx1.sendIdx["assert:equals:"]=2; $7=_st(array)._add_("foo"); $9=_st(array)._printString(); $ctx1.sendIdx["printString"]=3; $8=self._assert_equals_($9,"an Array (1 3 'foo')"); $ctx1.sendIdx["assert:equals:"]=3; $10=array; _st($10)._remove_((1)); $ctx1.sendIdx["remove:"]=1; $11=_st($10)._remove_((3)); $13=_st(array)._printString(); $ctx1.sendIdx["printString"]=4; $12=self._assert_equals_($13,"an Array ('foo')"); $ctx1.sendIdx["assert:equals:"]=4; $14=_st(array)._addLast_((3)); $ctx1.sendIdx["addLast:"]=1; $16=_st(array)._printString(); $ctx1.sendIdx["printString"]=5; $15=self._assert_equals_($16,"an Array ('foo' 3)"); $ctx1.sendIdx["assert:equals:"]=5; $17=_st(array)._addLast_((3)); $19=_st(array)._printString(); $18=self._assert_equals_($19,"an Array ('foo' 3 3)"); return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{array:array},smalltalk.ArrayTest)})}, args: [], source: "testPrintString\x0a\x09| array |\x0a\x09array := Array new.\x0a\x09self assert: array printString equals: 'an Array ()'.\x0a\x09array add: 1; add: 3.\x0a\x09self assert: array printString equals: 'an Array (1 3)'.\x0a\x09array add: 'foo'.\x0a\x09self assert: array printString equals: 'an Array (1 3 ''foo'')'.\x0a\x09array remove: 1; remove: 3.\x0a\x09self assert: array printString equals: 'an Array (''foo'')'.\x0a\x09array addLast: 3.\x0a\x09self assert: array printString equals: 'an Array (''foo'' 3)'.\x0a\x09array addLast: 3.\x0a\x09self assert: array printString equals: 'an Array (''foo'' 3 3)'.", messageSends: ["new", "assert:equals:", "printString", "add:", "remove:", "addLast:"], referencedClasses: ["Array"] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testRemove", category: 'tests', fn: function (){ var self=this; var array; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $1; array=[(1), (2), (3), (4), (5)]; $1=_st(array)._remove_((3)); $ctx1.sendIdx["remove:"]=1; self._assert_equals_(array,[(1), (2), (4), (5)]); self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(array)._remove_((3)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testRemove",{array:array},smalltalk.ArrayTest)})}, args: [], source: "testRemove \x0a\x09| array |\x0a\x09array := #(1 2 3 4 5). \x0a\x09array remove: 3.\x0a\x0a\x09self assert: array equals: #(1 2 4 5).\x0a\x09self should: [ array remove: 3 ] raise: Error", messageSends: ["remove:", "assert:equals:", "should:raise:"], referencedClasses: ["Error"] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testRemoveFromTo", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=[(1), (2), (3), (4)]._removeFrom_to_((1),(3)); $ctx1.sendIdx["removeFrom:to:"]=1; $1=self._assert_equals_($2,[(4)]); $ctx1.sendIdx["assert:equals:"]=1; $4=[(1), (2), (3), (4)]._removeFrom_to_((2),(3)); $ctx1.sendIdx["removeFrom:to:"]=2; $3=self._assert_equals_($4,[(1), (4)]); $ctx1.sendIdx["assert:equals:"]=2; $6=[(1), (2), (3), (4)]._removeFrom_to_((2),(4)); $5=self._assert_equals_($6,[(1)]); return self}, function($ctx1) {$ctx1.fill(self,"testRemoveFromTo",{},smalltalk.ArrayTest)})}, args: [], source: "testRemoveFromTo\x0a\x09\x0a\x09self assert: (#(1 2 3 4) removeFrom: 1 to: 3) equals: #(4).\x0a\x09self assert: (#(1 2 3 4) removeFrom: 2 to: 3) equals: #(1 4).\x0a\x09self assert: (#(1 2 3 4) removeFrom: 2 to: 4) equals: #(1)", messageSends: ["assert:equals:", "removeFrom:to:"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testRemoveIndex", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=[(1), (2), (3), (4)]._removeIndex_((2)); $ctx1.sendIdx["removeIndex:"]=1; $1=self._assert_equals_($2,[(1), (3), (4)]); $ctx1.sendIdx["assert:equals:"]=1; $4=[(1), (2), (3), (4)]._removeIndex_((1)); $ctx1.sendIdx["removeIndex:"]=2; $3=self._assert_equals_($4,[(2), (3), (4)]); $ctx1.sendIdx["assert:equals:"]=2; $6=["hello"]._removeIndex_((1)); $5=self._assert_equals_($6,[]); return self}, function($ctx1) {$ctx1.fill(self,"testRemoveIndex",{},smalltalk.ArrayTest)})}, args: [], source: "testRemoveIndex\x0a\x09\x0a\x09self assert: (#(1 2 3 4) removeIndex: 2) equals: #(1 3 4).\x0a\x09self assert: (#(1 2 3 4) removeIndex: 1) equals: #(2 3 4).\x0a\x09self assert: (#('hello') removeIndex: 1) equals: #()", messageSends: ["assert:equals:", "removeIndex:"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testRemoveLast", category: 'tests', fn: function (){ var self=this; var array; return smalltalk.withContext(function($ctx1) { array=[(1), (2)]; _st(array)._removeLast(); self._assert_equals_(_st(array)._last(),(1)); return self}, function($ctx1) {$ctx1.fill(self,"testRemoveLast",{array:array},smalltalk.ArrayTest)})}, args: [], source: "testRemoveLast \x0a\x09| array |\x0a\x09array := #(1 2). \x0a\x09array removeLast.\x0a\x09\x0a\x09self assert: array last equals: 1", messageSends: ["removeLast", "assert:equals:", "last"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testReversed", category: 'tests', fn: function (){ var self=this; var array; return smalltalk.withContext(function($ctx1) { array=[(5), (4), (3), (2), (1)]; self._assert_equals_(_st(array)._reversed(),[(1), (2), (3), (4), (5)]); return self}, function($ctx1) {$ctx1.fill(self,"testReversed",{array:array},smalltalk.ArrayTest)})}, args: [], source: "testReversed\x0a\x09|array|\x0a\x09array := #(5 4 3 2 1). \x0a\x09self assert: (array reversed) equals: #(1 2 3 4 5)", messageSends: ["assert:equals:", "reversed"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "testSort", category: 'tests', fn: function (){ var self=this; var array; return smalltalk.withContext(function($ctx1) { array=[(3), (1), (4), (5), (2)]; _st(array)._sort(); self._assert_equals_(array,[(1), (2), (3), (4), (5)]); return self}, function($ctx1) {$ctx1.fill(self,"testSort",{array:array},smalltalk.ArrayTest)})}, args: [], source: "testSort\x0a\x09| array |\x0a\x09array := #(3 1 4 5 2). \x0a\x09array sort.\x0a\x09self assert: array equals: #(1 2 3 4 5)", messageSends: ["sort", "assert:equals:"], referencedClasses: [] }), smalltalk.ArrayTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)} return smalltalk.withContext(function($ctx1) { var $1; $1=$Array(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.ArrayTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ Array", messageSends: [], referencedClasses: ["Array"] }), smalltalk.ArrayTest.klass); smalltalk.addClass('StringTest', smalltalk.SequenceableCollectionTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "collection", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return "hello"; }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.StringTest)})}, args: [], source: "collection\x0a\x09^'hello'", messageSends: [], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionWithDuplicates", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return "abbaerte"; }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.StringTest)})}, args: [], source: "collectionWithDuplicates\x0a\x09^ 'abbaerte'", messageSends: [], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAddRemove", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $1,$2; $1=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return "hello"._add_("a"); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); $ctx1.sendIdx["should:raise:"]=1; $2=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return "hello"._remove_("h"); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testAddRemove",{},smalltalk.StringTest)})}, args: [], source: "testAddRemove\x0a\x09self should: ['hello' add: 'a'] raise: Error.\x0a\x09self should: ['hello' remove: 'h'] raise: Error", messageSends: ["should:raise:", "add:", "remove:"], referencedClasses: ["Error"] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsArray", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_("hello"._asArray(),["h", "e", "l", "l", "o"]); return self}, function($ctx1) {$ctx1.fill(self,"testAsArray",{},smalltalk.StringTest)})}, args: [], source: "testAsArray\x0a\x09self assert: 'hello' asArray equals: #('h' 'e' 'l' 'l' 'o').", messageSends: ["assert:equals:", "asArray"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsLowerCase", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_("JACKIE"._asLowercase(),"jackie"); return self}, function($ctx1) {$ctx1.fill(self,"testAsLowerCase",{},smalltalk.StringTest)})}, args: [], source: "testAsLowerCase\x0a\x09self assert: 'JACKIE' asLowercase equals: 'jackie'.", messageSends: ["assert:equals:", "asLowercase"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsNumber", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2="3"._asNumber(); $ctx1.sendIdx["asNumber"]=1; $1=self._assert_equals_($2,(3)); $ctx1.sendIdx["assert:equals:"]=1; $4="-3"._asNumber(); $ctx1.sendIdx["asNumber"]=2; $3=self._assert_equals_($4,(-3)); $ctx1.sendIdx["assert:equals:"]=2; $6="-1.5"._asNumber(); $5=self._assert_equals_($6,(-1.5)); return self}, function($ctx1) {$ctx1.fill(self,"testAsNumber",{},smalltalk.StringTest)})}, args: [], source: "testAsNumber\x0a\x09self assert: '3' asNumber equals: 3.\x0a\x09self assert: '-3' asNumber equals: -3.\x0a\x09self assert: '-1.5' asNumber equals: -1.5.", messageSends: ["assert:equals:", "asNumber"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsUpperCase", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_("jackie"._asUppercase(),"JACKIE"); return self}, function($ctx1) {$ctx1.fill(self,"testAsUpperCase",{},smalltalk.StringTest)})}, args: [], source: "testAsUpperCase\x0a\x09self assert: 'jackie' asUppercase equals: 'JACKIE'.", messageSends: ["assert:equals:", "asUppercase"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsciiValue", category: 'tests', fn: function (){ var self=this; var characterA,characterU; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; characterA="A"; characterU="U"; $2=_st(characterA)._asciiValue(); $ctx1.sendIdx["asciiValue"]=1; $1=self._assert_equals_($2,(65)); $ctx1.sendIdx["assert:equals:"]=1; $4=_st(characterU)._asciiValue(); $3=self._assert_equals_($4,(85)); return self}, function($ctx1) {$ctx1.fill(self,"testAsciiValue",{characterA:characterA,characterU:characterU},smalltalk.StringTest)})}, args: [], source: "testAsciiValue\x0a | characterA characterU |\x0a characterA := 'A'.\x0a characterU := 'U'.\x0a self assert: (characterA asciiValue) equals:65.\x0a self assert: (characterU asciiValue) equals:85", messageSends: ["assert:equals:", "asciiValue"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAt", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$5; $2="hello"._at_((1)); $ctx1.sendIdx["at:"]=1; $1=self._assert_equals_($2,"h"); $ctx1.sendIdx["assert:equals:"]=1; $4="hello"._at_((5)); $3=self._assert_equals_($4,"o"); $ctx1.sendIdx["assert:equals:"]=2; $5=self._assert_equals_("hello"._at_ifAbsent_((6),(function(){ return smalltalk.withContext(function($ctx2) { return nil; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})),nil); return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.StringTest)})}, args: [], source: "testAt\x0a\x09self assert: ('hello' at: 1) equals: 'h'.\x0a\x09self assert: ('hello' at: 5) equals: 'o'.\x0a\x09self assert: ('hello' at: 6 ifAbsent: [nil]) equals: nil", messageSends: ["assert:equals:", "at:", "at:ifAbsent:"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtPut", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return "hello"._at_put_((1),"a"); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testAtPut",{},smalltalk.StringTest)})}, args: [], source: "testAtPut\x0a\x09\x22String instances are read-only\x22\x0a\x09self should: ['hello' at: 1 put: 'a'] raise: Error", messageSends: ["should:raise:", "at:put:"], referencedClasses: ["Error"] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testCapitalized", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9; $2="test"._capitalized(); $ctx1.sendIdx["capitalized"]=1; $1=self._assert_equals_($2,"Test"); $ctx1.sendIdx["assert:equals:"]=1; $4="Test"._capitalized(); $ctx1.sendIdx["capitalized"]=2; $3=self._assert_equals_($4,"Test"); $ctx1.sendIdx["assert:equals:"]=2; $6=""._capitalized(); $5=self._assert_equals_($6,""); $ctx1.sendIdx["assert:equals:"]=3; $8="Test"._isCapitalized(); $ctx1.sendIdx["isCapitalized"]=1; $7=self._assert_equals_($8,true); $ctx1.sendIdx["assert:equals:"]=4; $10="test"._isCapitalized(); $9=self._assert_equals_($10,false); return self}, function($ctx1) {$ctx1.fill(self,"testCapitalized",{},smalltalk.StringTest)})}, args: [], source: "testCapitalized\x0a\x09self assert: 'test' capitalized equals: 'Test'.\x0a\x09self assert: 'Test' capitalized equals: 'Test'.\x0a\x09self assert: '' capitalized equals: ''.\x0a\x09self assert: 'Test' isCapitalized equals: true.\x0a\x09self assert: 'test' isCapitalized equals: false.", messageSends: ["assert:equals:", "capitalized", "isCapitalized"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testCharCodeAt", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9,$12,$11; $2="jackie"._charCodeAt_((1)); $ctx1.sendIdx["charCodeAt:"]=1; $1=self._assert_equals_($2,(106)); $ctx1.sendIdx["assert:equals:"]=1; $4="jackie"._charCodeAt_((2)); $ctx1.sendIdx["charCodeAt:"]=2; $3=self._assert_equals_($4,(97)); $ctx1.sendIdx["assert:equals:"]=2; $6="jackie"._charCodeAt_((3)); $ctx1.sendIdx["charCodeAt:"]=3; $5=self._assert_equals_($6,(99)); $ctx1.sendIdx["assert:equals:"]=3; $8="jackie"._charCodeAt_((4)); $ctx1.sendIdx["charCodeAt:"]=4; $7=self._assert_equals_($8,(107)); $ctx1.sendIdx["assert:equals:"]=4; $10="jackie"._charCodeAt_((5)); $ctx1.sendIdx["charCodeAt:"]=5; $9=self._assert_equals_($10,(105)); $ctx1.sendIdx["assert:equals:"]=5; $12="jackie"._charCodeAt_((6)); $11=self._assert_equals_($12,(101)); return self}, function($ctx1) {$ctx1.fill(self,"testCharCodeAt",{},smalltalk.StringTest)})}, args: [], source: "testCharCodeAt\x0a\x09self assert: ('jackie' charCodeAt:1) equals: 106.\x0a\x09self assert: ('jackie' charCodeAt:2) equals: 97.\x0a\x09self assert: ('jackie' charCodeAt:3) equals: 99.\x0a\x09self assert: ('jackie' charCodeAt:4) equals: 107.\x0a\x09self assert: ('jackie' charCodeAt:5) equals: 105.\x0a\x09self assert: ('jackie' charCodeAt:6) equals: 101", messageSends: ["assert:equals:", "charCodeAt:"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testCollect", category: 'tests', fn: function (){ var self=this; var newCollection; return smalltalk.withContext(function($ctx1) { newCollection="hheelllloo"; self._assertSameContents_as_(_st(self._collection())._collect_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each).__comma(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})),newCollection); return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{newCollection:newCollection},smalltalk.StringTest)})}, args: [], source: "testCollect\x0a\x09| newCollection |\x0a\x09newCollection := 'hheelllloo'.\x0a\x09self\x0a\x09\x09assertSameContents: (self collection collect: [ :each |\x0a\x09\x09\x09each, each ])\x0a\x09\x09as: newCollection", messageSends: ["assertSameContents:as:", "collect:", "collection", ","], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testCopyFromTo", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_("jackie"._copyFrom_to_((1),(3)),"jac"); self._assert_equals_("jackie"._copyFrom_to_((4),(6)),"kie"); return self}, function($ctx1) {$ctx1.fill(self,"testCopyFromTo",{},smalltalk.StringTest)})}, args: [], source: "testCopyFromTo\x0a\x09self assert: ('jackie' copyFrom: 1 to: 3) equals: 'jac'.\x0a\x09self assert: ('jackie' copyFrom: 4 to: 6) equals: 'kie'.", messageSends: ["assert:equals:", "copyFrom:to:"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testCopyWithoutAll", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_("*hello* *world*"._copyWithoutAll_("*"),"hello world"); return self}, function($ctx1) {$ctx1.fill(self,"testCopyWithoutAll",{},smalltalk.StringTest)})}, args: [], source: "testCopyWithoutAll\x0a\x09self\x0a\x09\x09assert: ('*hello* *world*' copyWithoutAll: '*')\x0a\x09\x09equals: 'hello world'", messageSends: ["assert:equals:", "copyWithoutAll:"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testDetect", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3; $2=self._collection(); $ctx1.sendIdx["collection"]=1; $1=_st($2)._detect_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each).__eq("h"); $ctx2.sendIdx["="]=1; }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); $ctx1.sendIdx["detect:"]=1; self._assert_equals_($1,"h"); self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { $3=self._collection(); return _st($3)._detect_((function(each){ return smalltalk.withContext(function($ctx3) { return _st(each).__eq((6)); }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx2,3)})})); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testDetect",{},smalltalk.StringTest)})}, args: [], source: "testDetect\x0a\x09self assert: (self collection detect: [ :each | each = 'h' ]) equals: 'h'.\x0a\x09self\x0a\x09\x09should: [ self collection detect: [ :each | each = 6 ] ]\x0a\x09\x09raise: Error", messageSends: ["assert:equals:", "detect:", "collection", "=", "should:raise:"], referencedClasses: ["Error"] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testEquality", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$3,$2,$5,$4,$7,$6,$9,$8,$11,$10; $1=self._assert_equals_("hello","hello"); $ctx1.sendIdx["assert:equals:"]=1; $3="hello".__eq("world"); $ctx1.sendIdx["="]=1; $2=self._deny_($3); $ctx1.sendIdx["deny:"]=1; $5="hello".__eq([]._at_ifAbsent_((1),(function(){ return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))); $ctx1.sendIdx["="]=2; $4=self._deny_($5); $ctx1.sendIdx["deny:"]=2; $7="hello"._yourself(); $ctx1.sendIdx["yourself"]=1; $6=self._assert_equals_("hello",$7); $ctx1.sendIdx["assert:equals:"]=2; $9="hello"._yourself(); $8=self._assert_equals_($9,"hello"); $11="".__eq((0)); $10=self._deny_($11); return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.StringTest)})}, args: [], source: "testEquality\x0a\x09self assert: 'hello' equals: 'hello'.\x0a\x09self deny: 'hello' = 'world'.\x0a\x09\x0a\x09\x22Test for issue 459\x22\x0a\x09self deny: 'hello' = (#() at: 1 ifAbsent: [ ]).\x0a\x0a\x09self assert: 'hello' equals: 'hello' yourself.\x0a\x09self assert: 'hello' yourself equals: 'hello'.\x0a\x0a\x09\x22test JS falsy value\x22\x0a\x09self deny: '' = 0", messageSends: ["assert:equals:", "deny:", "=", "at:ifAbsent:", "yourself"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testIdentity", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$7,$6,$5,$10,$9,$8,$12,$11; $2="hello".__eq_eq("hello"); $ctx1.sendIdx["=="]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $4="hello".__eq_eq("world"); $ctx1.sendIdx["=="]=2; $3=self._deny_($4); $ctx1.sendIdx["deny:"]=1; $7="hello"._yourself(); $ctx1.sendIdx["yourself"]=1; $6="hello".__eq_eq($7); $ctx1.sendIdx["=="]=3; $5=self._assert_($6); $ctx1.sendIdx["assert:"]=2; $10="hello"._yourself(); $9=_st($10).__eq_eq("hello"); $ctx1.sendIdx["=="]=4; $8=self._assert_($9); $12="".__eq_eq((0)); $11=self._deny_($12); return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.StringTest)})}, args: [], source: "testIdentity\x0a\x09self assert: 'hello' == 'hello'.\x0a\x09self deny: 'hello' == 'world'.\x0a\x0a\x09self assert: 'hello' == 'hello' yourself.\x0a\x09self assert: 'hello' yourself == 'hello'.\x0a\x0a\x09\x22test JS falsy value\x22\x0a\x09self deny: '' == 0", messageSends: ["assert:", "==", "deny:", "yourself"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testIdentityHash", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$4,$5,$3; $1="foo"._identityHash(); $ctx1.sendIdx["identityHash"]=1; $2="foo"._identityHash(); $ctx1.sendIdx["identityHash"]=2; self._assert_equals_($1,$2); $4="foo"._identityHash(); $ctx1.sendIdx["identityHash"]=3; $5="bar"._identityHash(); $3=_st($4).__eq($5); self._deny_($3); return self}, function($ctx1) {$ctx1.fill(self,"testIdentityHash",{},smalltalk.StringTest)})}, args: [], source: "testIdentityHash\x0a\x09self assert: 'foo' identityHash equals: 'foo' identityHash.\x0a\x09self deny: ('foo' identityHash = 'bar' identityHash)", messageSends: ["assert:equals:", "identityHash", "deny:", "="], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testIncludesSubString", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2; $1="amber"._includesSubString_("ber"); $ctx1.sendIdx["includesSubString:"]=1; self._assert_($1); $2="amber"._includesSubString_("zork"); self._deny_($2); return self}, function($ctx1) {$ctx1.fill(self,"testIncludesSubString",{},smalltalk.StringTest)})}, args: [], source: "testIncludesSubString\x0a\x09self assert: ('amber' includesSubString: 'ber').\x0a\x09self deny: ('amber' includesSubString: 'zork').", messageSends: ["assert:", "includesSubString:", "deny:"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testIndexOf", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$4,$7,$6,$5; $3=self._collection(); $ctx1.sendIdx["collection"]=1; $2=_st($3)._indexOf_("e"); $ctx1.sendIdx["indexOf:"]=1; $1=self._assert_equals_($2,(2)); $ctx1.sendIdx["assert:equals:"]=1; self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { $4=self._collection(); $ctx2.sendIdx["collection"]=2; return _st($4)._indexOf_((999)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); $7=self._collection(); $6=_st($7)._indexOf_ifAbsent_((999),(function(){ return smalltalk.withContext(function($ctx2) { return "sentinel"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $5=self._assert_equals_($6,"sentinel"); return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.StringTest)})}, args: [], source: "testIndexOf\x0a\x09self assert: (self collection indexOf: 'e') equals: 2.\x0a\x09self should: [ self collection indexOf: 999 ] raise: Error.\x0a\x09self assert: (self collection indexOf: 999 ifAbsent: [ 'sentinel' ]) equals: 'sentinel'", messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"], referencedClasses: ["Error"] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testIsVowel", category: 'tests', fn: function (){ var self=this; var vowel,consonant; return smalltalk.withContext(function($ctx1) { vowel="u"; consonant="z"; self._assert_equals_(_st(vowel)._isVowel(),true); self._assert_equals_(_st(consonant)._isVowel(),false); return self}, function($ctx1) {$ctx1.fill(self,"testIsVowel",{vowel:vowel,consonant:consonant},smalltalk.StringTest)})}, args: [], source: "testIsVowel\x0a |vowel consonant|\x0a vowel := 'u'.\x0a consonant := 'z'.\x0a self assert: vowel isVowel equals: true.\x0a self assert: consonant isVowel equals: false", messageSends: ["assert:equals:", "isVowel"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testJoin", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(","._join_(["hello", "world"]),"hello,world"); return self}, function($ctx1) {$ctx1.fill(self,"testJoin",{},smalltalk.StringTest)})}, args: [], source: "testJoin\x0a\x09self assert: (',' join: #('hello' 'world')) equals: 'hello,world'", messageSends: ["assert:equals:", "join:"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testReversed", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_("jackiechan"._reversed(),"nahceikcaj"); return self}, function($ctx1) {$ctx1.fill(self,"testReversed",{},smalltalk.StringTest)})}, args: [], source: "testReversed\x0a\x09self assert: 'jackiechan' reversed equals: 'nahceikcaj'.", messageSends: ["assert:equals:", "reversed"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testSelect", category: 'tests', fn: function (){ var self=this; var newCollection; return smalltalk.withContext(function($ctx1) { newCollection="o"; self._assertSameContents_as_(_st(self._collection())._select_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(each).__eq("o"); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})),newCollection); return self}, function($ctx1) {$ctx1.fill(self,"testSelect",{newCollection:newCollection},smalltalk.StringTest)})}, args: [], source: "testSelect\x0a\x09| newCollection |\x0a\x09newCollection := 'o'.\x0a\x09self\x0a\x09\x09assertSameContents: (self collection select: [ :each |\x0a\x09\x09\x09each = 'o' ])\x0a\x09\x09as: newCollection", messageSends: ["assertSameContents:as:", "select:", "collection", "="], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testSize", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2="smalltalk"._size(); $ctx1.sendIdx["size"]=1; $1=self._assert_equals_($2,(9)); $ctx1.sendIdx["assert:equals:"]=1; $4=""._size(); $3=self._assert_equals_($4,(0)); return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.StringTest)})}, args: [], source: "testSize\x0a\x09self assert: 'smalltalk' size equals: 9.\x0a\x09self assert: '' size equals: 0", messageSends: ["assert:equals:", "size"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testStreamContents", category: 'tests', fn: function (){ var self=this; function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)} return smalltalk.withContext(function($ctx1) { var $1,$2; self._assert_equals_(_st($String())._streamContents_((function(aStream){ return smalltalk.withContext(function($ctx2) { $1=aStream; _st($1)._nextPutAll_("hello"); $ctx2.sendIdx["nextPutAll:"]=1; _st($1)._space(); $2=_st($1)._nextPutAll_("world"); return $2; }, function($ctx2) {$ctx2.fillBlock({aStream:aStream},$ctx1,1)})})),"hello world"); return self}, function($ctx1) {$ctx1.fill(self,"testStreamContents",{},smalltalk.StringTest)})}, args: [], source: "testStreamContents\x0a\x09self\x0a\x09\x09assert: (String streamContents: [ :aStream |\x0a\x09\x09\x09aStream\x0a\x09\x09\x09\x09nextPutAll: 'hello'; space;\x0a\x09\x09\x09\x09nextPutAll: 'world' ])\x0a\x09\x09equals: 'hello world'", messageSends: ["assert:equals:", "streamContents:", "nextPutAll:", "space"], referencedClasses: ["String"] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testSubStrings", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_("jackiechan"._subStrings_("ie"),["jack", "chan"]); return self}, function($ctx1) {$ctx1.fill(self,"testSubStrings",{},smalltalk.StringTest)})}, args: [], source: "testSubStrings\x0a\x09self assert: ('jackiechan' subStrings: 'ie') equals: #( 'jack' 'chan' ).", messageSends: ["assert:equals:", "subStrings:"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "testTrim", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(" jackie"._trimLeft(),"jackie"); self._assert_equals_("jackie "._trimRight(),"jackie"); return self}, function($ctx1) {$ctx1.fill(self,"testTrim",{},smalltalk.StringTest)})}, args: [], source: "testTrim\x0a\x09self assert: ' jackie' trimLeft equals: 'jackie'.\x0a\x09self assert: 'jackie ' trimRight equals: 'jackie'.", messageSends: ["assert:equals:", "trimLeft", "trimRight"], referencedClasses: [] }), smalltalk.StringTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)} return smalltalk.withContext(function($ctx1) { var $1; $1=$String(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StringTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ String", messageSends: [], referencedClasses: ["String"] }), smalltalk.StringTest.klass); smalltalk.addClass('ConsoleTranscriptTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testShow", category: 'tests', fn: function (){ var self=this; var originalTranscript; function $Transcript(){return smalltalk.Transcript||(typeof Transcript=="undefined"?nil:Transcript)} function $ConsoleTranscript(){return smalltalk.ConsoleTranscript||(typeof ConsoleTranscript=="undefined"?nil:ConsoleTranscript)} function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; originalTranscript=_st($Transcript())._current(); $1=_st($Transcript())._register_(_st($ConsoleTranscript())._new()); $ctx1.sendIdx["register:"]=1; $2=self._shouldnt_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st($Transcript())._show_("Hello console!"); $ctx2.sendIdx["show:"]=1; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); $ctx1.sendIdx["shouldnt:raise:"]=1; $3=self._shouldnt_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st($Transcript())._show_(console); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}),$Error()); $4=_st($Transcript())._register_(originalTranscript); return self}, function($ctx1) {$ctx1.fill(self,"testShow",{originalTranscript:originalTranscript},smalltalk.ConsoleTranscriptTest)})}, args: [], source: "testShow\x0a| originalTranscript |\x0aoriginalTranscript := Transcript current.\x0aTranscript register: ConsoleTranscript new.\x0a\x0aself shouldnt: [ Transcript show: 'Hello console!' ] raise: Error.\x0aself shouldnt: [ Transcript show: console ] raise: Error.\x0a\x0aTranscript register: originalTranscript.", messageSends: ["current", "register:", "new", "shouldnt:raise:", "show:"], referencedClasses: ["Transcript", "ConsoleTranscript", "Error"] }), smalltalk.ConsoleTranscriptTest); smalltalk.addClass('JSObjectProxyTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "jsObject", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}, d: '', 'e': null, 'f': void 0}; return self}, function($ctx1) {$ctx1.fill(self,"jsObject",{},smalltalk.JSObjectProxyTest)})}, args: [], source: "jsObject\x0a\x09", messageSends: [], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtIfAbsent", category: 'tests', fn: function (){ var self=this; var testObject; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7; testObject=self._jsObject(); $2=_st(testObject)._at_ifAbsent_("abc",(function(){ return smalltalk.withContext(function($ctx2) { return "Property does not exist"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $ctx1.sendIdx["at:ifAbsent:"]=1; $1=self._assert_equals_($2,"Property does not exist"); $ctx1.sendIdx["assert:equals:"]=1; $4=_st(testObject)._at_ifAbsent_("e",(function(){ return smalltalk.withContext(function($ctx2) { return "Property does not exist"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $ctx1.sendIdx["at:ifAbsent:"]=2; $3=self._assert_equals_($4,nil); $ctx1.sendIdx["assert:equals:"]=2; $6=_st(testObject)._at_ifAbsent_("a",(function(){ return smalltalk.withContext(function($ctx2) { return "Property does not exist"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})})); $ctx1.sendIdx["at:ifAbsent:"]=3; $5=self._assert_equals_($6,(1)); $ctx1.sendIdx["assert:equals:"]=3; $8=_st(testObject)._at_ifAbsent_("f",(function(){ return smalltalk.withContext(function($ctx2) { return "Property does not exist"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})})); $7=self._assert_equals_($8,nil); return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{testObject:testObject},smalltalk.JSObjectProxyTest)})}, args: [], source: "testAtIfAbsent\x0a\x09| testObject |\x0a\x09testObject := self jsObject.\x0a\x09self assert: (testObject at: 'abc' ifAbsent: ['Property does not exist']) equals: 'Property does not exist'.\x0a\x09self assert: (testObject at: 'e' ifAbsent: ['Property does not exist']) equals: nil.\x0a\x09self assert: (testObject at: 'a' ifAbsent: ['Property does not exist']) equals: 1.\x0a\x09self assert: (testObject at: 'f' ifAbsent: ['Property does not exist']) equals: nil.", messageSends: ["jsObject", "assert:equals:", "at:ifAbsent:"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtIfPresent", category: 'tests', fn: function (){ var self=this; var testObject; return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$6,$5,$4,$9,$8,$7,$12,$11,$10; testObject=self._jsObject(); $2=_st(testObject)._at_ifPresent_("abc",(function(x){ return smalltalk.withContext(function($ctx2) { $3=_st(x)._asString(); $ctx2.sendIdx["asString"]=1; return "hello ".__comma($3); $ctx2.sendIdx[","]=1; }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,1)})})); $ctx1.sendIdx["at:ifPresent:"]=1; $1=self._assert_equals_($2,nil); $ctx1.sendIdx["assert:equals:"]=1; $5=_st(testObject)._at_ifPresent_("e",(function(x){ return smalltalk.withContext(function($ctx2) { $6=_st(x)._asString(); $ctx2.sendIdx["asString"]=2; return "hello ".__comma($6); $ctx2.sendIdx[","]=2; }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,2)})})); $ctx1.sendIdx["at:ifPresent:"]=2; $4=self._assert_equals_($5,"hello nil"); $ctx1.sendIdx["assert:equals:"]=2; $8=_st(testObject)._at_ifPresent_("a",(function(x){ return smalltalk.withContext(function($ctx2) { $9=_st(x)._asString(); $ctx2.sendIdx["asString"]=3; return "hello ".__comma($9); $ctx2.sendIdx[","]=3; }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,3)})})); $ctx1.sendIdx["at:ifPresent:"]=3; $7=self._assert_equals_($8,"hello 1"); $ctx1.sendIdx["assert:equals:"]=3; $11=_st(testObject)._at_ifPresent_("f",(function(x){ return smalltalk.withContext(function($ctx2) { $12=_st(x)._asString(); return "hello ".__comma($12); }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,4)})})); $10=self._assert_equals_($11,"hello nil"); return self}, function($ctx1) {$ctx1.fill(self,"testAtIfPresent",{testObject:testObject},smalltalk.JSObjectProxyTest)})}, args: [], source: "testAtIfPresent\x0a\x09| testObject |\x0a\x09\x0a\x09testObject := self jsObject.\x0a\x09\x0a\x09self assert: (testObject at: 'abc' ifPresent: [ :x | 'hello ',x asString ]) equals: nil.\x0a\x09self assert: (testObject at: 'e' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello nil'.\x0a\x09self assert: (testObject at: 'a' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello 1'.\x0a\x09self assert: (testObject at: 'f' ifPresent: [:x | 'hello ',x asString ]) equals: 'hello nil'.", messageSends: ["jsObject", "assert:equals:", "at:ifPresent:", ",", "asString"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtIfPresentIfAbsent", category: 'tests', fn: function (){ var self=this; var testObject; return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$6,$5,$4,$9,$8,$7,$12,$11,$10; testObject=self._jsObject(); $2=_st(testObject)._at_ifPresent_ifAbsent_("abc",(function(x){ return smalltalk.withContext(function($ctx2) { $3=_st(x)._asString(); $ctx2.sendIdx["asString"]=1; return "hello ".__comma($3); $ctx2.sendIdx[","]=1; }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,1)})}),(function(){ return smalltalk.withContext(function($ctx2) { return "not present"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $ctx1.sendIdx["at:ifPresent:ifAbsent:"]=1; $1=self._assert_equals_($2,"not present"); $ctx1.sendIdx["assert:equals:"]=1; $5=_st(testObject)._at_ifPresent_ifAbsent_("e",(function(x){ return smalltalk.withContext(function($ctx2) { $6=_st(x)._asString(); $ctx2.sendIdx["asString"]=2; return "hello ".__comma($6); $ctx2.sendIdx[","]=2; }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,3)})}),(function(){ return smalltalk.withContext(function($ctx2) { return "not present"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})})); $ctx1.sendIdx["at:ifPresent:ifAbsent:"]=2; $4=self._assert_equals_($5,"hello nil"); $ctx1.sendIdx["assert:equals:"]=2; $8=_st(testObject)._at_ifPresent_ifAbsent_("a",(function(x){ return smalltalk.withContext(function($ctx2) { $9=_st(x)._asString(); $ctx2.sendIdx["asString"]=3; return "hello ".__comma($9); $ctx2.sendIdx[","]=3; }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,5)})}),(function(){ return smalltalk.withContext(function($ctx2) { return "not present"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,6)})})); $ctx1.sendIdx["at:ifPresent:ifAbsent:"]=3; $7=self._assert_equals_($8,"hello 1"); $ctx1.sendIdx["assert:equals:"]=3; $11=_st(testObject)._at_ifPresent_ifAbsent_("f",(function(x){ return smalltalk.withContext(function($ctx2) { $12=_st(x)._asString(); return "hello ".__comma($12); }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,7)})}),(function(){ return smalltalk.withContext(function($ctx2) { return "not present"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,8)})})); $10=self._assert_equals_($11,"hello nil"); return self}, function($ctx1) {$ctx1.fill(self,"testAtIfPresentIfAbsent",{testObject:testObject},smalltalk.JSObjectProxyTest)})}, args: [], source: "testAtIfPresentIfAbsent\x0a\x09| testObject |\x0a\x09testObject := self jsObject.\x0a\x09self assert: (testObject at: 'abc' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'not present'.\x0a\x09self assert: (testObject at: 'e' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello nil'.\x0a\x09self assert: (testObject at: 'a' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello 1'.\x0a\x09self assert: (testObject at: 'f' ifPresent: [:x|'hello ',x asString] ifAbsent: ['not present']) equals: 'hello nil'.", messageSends: ["jsObject", "assert:equals:", "at:ifPresent:ifAbsent:", ",", "asString"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testDNU", category: 'tests', fn: function (){ var self=this; function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self._jsObject())._foo(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$MessageNotUnderstood()); return self}, function($ctx1) {$ctx1.fill(self,"testDNU",{},smalltalk.JSObjectProxyTest)})}, args: [], source: "testDNU\x0a\x09self should: [self jsObject foo] raise: MessageNotUnderstood", messageSends: ["should:raise:", "foo", "jsObject"], referencedClasses: ["MessageNotUnderstood"] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testMessageSend", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$6,$5,$4,$9,$8,$7; $3=self._jsObject(); $ctx1.sendIdx["jsObject"]=1; $2=_st($3)._a(); $1=self._assert_equals_($2,(1)); $ctx1.sendIdx["assert:equals:"]=1; $6=self._jsObject(); $ctx1.sendIdx["jsObject"]=2; $5=_st($6)._b(); $4=self._assert_equals_($5,(2)); $ctx1.sendIdx["assert:equals:"]=2; $9=self._jsObject(); $8=_st($9)._c_((3)); $7=self._assert_equals_($8,(3)); return self}, function($ctx1) {$ctx1.fill(self,"testMessageSend",{},smalltalk.JSObjectProxyTest)})}, args: [], source: "testMessageSend\x0a\x0a\x09self assert: self jsObject a equals: 1.\x0a\x09self assert: self jsObject b equals: 2.\x0a\x09self assert: (self jsObject c: 3) equals: 3", messageSends: ["assert:equals:", "a", "jsObject", "b", "c:"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testMethodWithArguments", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(_st(self._jsObject())._c_((1)),(1)); return self}, function($ctx1) {$ctx1.fill(self,"testMethodWithArguments",{},smalltalk.JSObjectProxyTest)})}, args: [], source: "testMethodWithArguments\x0a\x09self assert: (self jsObject c: 1) equals: 1", messageSends: ["assert:equals:", "c:", "jsObject"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testPrinting", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(_st(self._jsObject())._printString(),"[object Object]"); return self}, function($ctx1) {$ctx1.fill(self,"testPrinting",{},smalltalk.JSObjectProxyTest)})}, args: [], source: "testPrinting\x0a\x09self assert: self jsObject printString equals: '[object Object]'", messageSends: ["assert:equals:", "printString", "jsObject"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testPropertyThatReturnsEmptyString", category: 'tests', fn: function (){ var self=this; var object; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; object=self._jsObject(); $2=_st(object)._d(); $ctx1.sendIdx["d"]=1; $1=self._assert_equals_($2,""); $ctx1.sendIdx["assert:equals:"]=1; _st(object)._d_("hello"); $4=_st(object)._d(); $3=self._assert_equals_($4,"hello"); return self}, function($ctx1) {$ctx1.fill(self,"testPropertyThatReturnsEmptyString",{object:object},smalltalk.JSObjectProxyTest)})}, args: [], source: "testPropertyThatReturnsEmptyString\x0a\x09| object |\x0a\x0a\x09object := self jsObject.\x0a\x09self assert: object d equals: ''.\x0a\x0a\x09object d: 'hello'.\x0a\x09self assert: object d equals: 'hello'", messageSends: ["jsObject", "assert:equals:", "d", "d:"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testPropertyThatReturnsUndefined", category: 'tests', fn: function (){ var self=this; var object; function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)} return smalltalk.withContext(function($ctx1) { var $2,$1; object=self._jsObject(); self._shouldnt_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(object)._e(); $ctx2.sendIdx["e"]=1; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$MessageNotUnderstood()); $2=_st(object)._e(); $1=_st($2)._isNil(); self._assert_($1); return self}, function($ctx1) {$ctx1.fill(self,"testPropertyThatReturnsUndefined",{object:object},smalltalk.JSObjectProxyTest)})}, args: [], source: "testPropertyThatReturnsUndefined\x0a\x09| object |\x0a\x0a\x09object := self jsObject.\x0a\x09self shouldnt: [ object e ] raise: MessageNotUnderstood.\x0a\x09self assert: object e isNil", messageSends: ["jsObject", "shouldnt:raise:", "e", "assert:", "isNil"], referencedClasses: ["MessageNotUnderstood"] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testValue", category: 'tests', fn: function (){ var self=this; var testObject; return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$5,$4; testObject=self._jsObject(); $3=_st(testObject)._value(); $ctx1.sendIdx["value"]=1; $2=_st($3)._printString(); $1=self._assert_equals_($2,"[object Object]"); $ctx1.sendIdx["assert:equals:"]=1; _st(testObject)._at_put_("value","aValue"); $5=_st(testObject)._value(); $4=self._assert_equals_($5,"aValue"); return self}, function($ctx1) {$ctx1.fill(self,"testValue",{testObject:testObject},smalltalk.JSObjectProxyTest)})}, args: [], source: "testValue\x0a\x09| testObject |\x0a\x09testObject := self jsObject.\x0a\x09self assert: testObject value printString equals: '[object Object]'.\x0a\x09testObject at: 'value' put: 'aValue'.\x0a\x09self assert: testObject value equals: 'aValue'", messageSends: ["jsObject", "assert:equals:", "printString", "value", "at:put:"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addMethod( smalltalk.method({ selector: "testYourself", category: 'tests', fn: function (){ var self=this; var object; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=self._jsObject(); _st($1)._d_("test"); $2=_st($1)._yourself(); object=$2; self._assert_equals_(_st(object)._d(),"test"); return self}, function($ctx1) {$ctx1.fill(self,"testYourself",{object:object},smalltalk.JSObjectProxyTest)})}, args: [], source: "testYourself\x0a\x09| object |\x0a\x09object := self jsObject\x0a\x09\x09d: 'test';\x0a\x09\x09yourself.\x0a\x0a\x09self assert: object d equals: 'test'", messageSends: ["d:", "jsObject", "yourself", "assert:equals:", "d"], referencedClasses: [] }), smalltalk.JSObjectProxyTest); smalltalk.addClass('JavaScriptExceptionTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testCatchingException", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { _st((function(){ return smalltalk.withContext(function($ctx2) { return self._throwException(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._on_do_($Error(),(function(error){ return smalltalk.withContext(function($ctx2) { return self._assert_(_st(_st(error)._exception()).__eq("test")); }, function($ctx2) {$ctx2.fillBlock({error:error},$ctx1,2)})})); return self}, function($ctx1) {$ctx1.fill(self,"testCatchingException",{},smalltalk.JavaScriptExceptionTest)})}, args: [], source: "testCatchingException\x0a\x09[ self throwException ]\x0a\x09\x09on: Error\x0a\x09\x09do: [ :error |\x0a\x09\x09\x09self assert: error exception = 'test' ]", messageSends: ["on:do:", "throwException", "assert:", "=", "exception"], referencedClasses: ["Error"] }), smalltalk.JavaScriptExceptionTest); smalltalk.addMethod( smalltalk.method({ selector: "testRaisingException", category: 'tests', fn: function (){ var self=this; function $JavaScriptException(){return smalltalk.JavaScriptException||(typeof JavaScriptException=="undefined"?nil:JavaScriptException)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return self._throwException(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$JavaScriptException()); return self}, function($ctx1) {$ctx1.fill(self,"testRaisingException",{},smalltalk.JavaScriptExceptionTest)})}, args: [], source: "testRaisingException\x0a\x09self should: [ self throwException ] raise: JavaScriptException", messageSends: ["should:raise:", "throwException"], referencedClasses: ["JavaScriptException"] }), smalltalk.JavaScriptExceptionTest); smalltalk.addMethod( smalltalk.method({ selector: "throwException", category: 'helpers', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { throw 'test'; return self}, function($ctx1) {$ctx1.fill(self,"throwException",{},smalltalk.JavaScriptExceptionTest)})}, args: [], source: "throwException\x0a\x09", messageSends: [], referencedClasses: [] }), smalltalk.JavaScriptExceptionTest); smalltalk.addClass('MessageSendTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testValue", category: 'tests', fn: function (){ var self=this; var messageSend; function $MessageSend(){return smalltalk.MessageSend||(typeof MessageSend=="undefined"?nil:MessageSend)} function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; $1=_st($MessageSend())._new(); $ctx1.sendIdx["new"]=1; $2=$1; $3=_st($Object())._new(); _st($2)._receiver_($3); _st($1)._selector_("asString"); $4=_st($1)._yourself(); messageSend=$4; self._assert_equals_(_st(messageSend)._value(),"an Object"); return self}, function($ctx1) {$ctx1.fill(self,"testValue",{messageSend:messageSend},smalltalk.MessageSendTest)})}, args: [], source: "testValue\x0a\x09| messageSend |\x0a\x09\x0a\x09messageSend := MessageSend new\x0a\x09\x09receiver: Object new;\x0a\x09\x09selector: #asString;\x0a\x09\x09yourself.\x0a\x09\x09\x0a\x09self assert: messageSend value equals: 'an Object'", messageSends: ["receiver:", "new", "selector:", "yourself", "assert:equals:", "value"], referencedClasses: ["MessageSend", "Object"] }), smalltalk.MessageSendTest); smalltalk.addMethod( smalltalk.method({ selector: "testValueWithArguments", category: 'tests', fn: function (){ var self=this; var messageSend; function $MessageSend(){return smalltalk.MessageSend||(typeof MessageSend=="undefined"?nil:MessageSend)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; $1=_st($MessageSend())._new(); _st($1)._receiver_((2)); _st($1)._selector_("+"); $2=_st($1)._yourself(); messageSend=$2; $3=self._assert_equals_(_st(messageSend)._value_((3)),(5)); $ctx1.sendIdx["assert:equals:"]=1; $4=self._assert_equals_(_st(messageSend)._valueWithPossibleArguments_([(4)]),(6)); return self}, function($ctx1) {$ctx1.fill(self,"testValueWithArguments",{messageSend:messageSend},smalltalk.MessageSendTest)})}, args: [], source: "testValueWithArguments\x0a\x09| messageSend |\x0a\x09\x0a\x09messageSend := MessageSend new\x0a\x09\x09receiver: 2;\x0a\x09\x09selector: '+';\x0a\x09\x09yourself.\x0a\x09\x09\x0a\x09self assert: (messageSend value: 3) equals: 5.\x0a\x09\x0a\x09self assert: (messageSend valueWithPossibleArguments: #(4)) equals: 6", messageSends: ["receiver:", "new", "selector:", "yourself", "assert:equals:", "value:", "valueWithPossibleArguments:"], referencedClasses: ["MessageSend"] }), smalltalk.MessageSendTest); smalltalk.addClass('MethodInheritanceTest', smalltalk.TestCase, ['receiverTop', 'receiverMiddle', 'receiverBottom', 'method', 'performBlock'], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "codeGeneratorClass", category: 'accessing', fn: function (){ var self=this; function $CodeGenerator(){return smalltalk.CodeGenerator||(typeof CodeGenerator=="undefined"?nil:CodeGenerator)} return smalltalk.withContext(function($ctx1) { var $1; $1=$CodeGenerator(); return $1; }, function($ctx1) {$ctx1.fill(self,"codeGeneratorClass",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "codeGeneratorClass\x0a\x09^ CodeGenerator", messageSends: [], referencedClasses: ["CodeGenerator"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "compiler", category: 'factory', fn: function (){ var self=this; function $Compiler(){return smalltalk.Compiler||(typeof Compiler=="undefined"?nil:Compiler)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1; $2=_st($Compiler())._new(); _st($2)._codeGeneratorClass_(self._codeGeneratorClass()); $3=_st($2)._yourself(); $1=$3; return $1; }, function($ctx1) {$ctx1.fill(self,"compiler",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "compiler\x0a\x09^ Compiler new\x0a\x09\x09codeGeneratorClass: self codeGeneratorClass;\x0a\x09\x09yourself", messageSends: ["codeGeneratorClass:", "new", "codeGeneratorClass", "yourself"], referencedClasses: ["Compiler"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "deinstallBottom", category: 'testing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self._targetClassBottom())._removeCompiledMethod_(self["@method"]); return self}, function($ctx1) {$ctx1.fill(self,"deinstallBottom",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "deinstallBottom\x0a\x09self targetClassBottom removeCompiledMethod: method", messageSends: ["removeCompiledMethod:", "targetClassBottom"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "deinstallMiddle", category: 'testing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self._targetClassMiddle())._removeCompiledMethod_(self["@method"]); return self}, function($ctx1) {$ctx1.fill(self,"deinstallMiddle",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "deinstallMiddle\x0a\x09self targetClassMiddle removeCompiledMethod: method", messageSends: ["removeCompiledMethod:", "targetClassMiddle"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "deinstallTop", category: 'testing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { _st(self._targetClassTop())._removeCompiledMethod_(self["@method"]); return self}, function($ctx1) {$ctx1.fill(self,"deinstallTop",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "deinstallTop\x0a\x09self targetClassTop removeCompiledMethod: method", messageSends: ["removeCompiledMethod:", "targetClassTop"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "installBottom:", category: 'testing', fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { self["@method"]=_st(self._compiler())._install_forClass_category_(aString,self._targetClassBottom(),"tests"); return self}, function($ctx1) {$ctx1.fill(self,"installBottom:",{aString:aString},smalltalk.MethodInheritanceTest)})}, args: ["aString"], source: "installBottom: aString\x0a\x09method := self compiler install: aString forClass: self targetClassBottom category: 'tests'", messageSends: ["install:forClass:category:", "compiler", "targetClassBottom"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "installMiddle:", category: 'testing', fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { self["@method"]=_st(self._compiler())._install_forClass_category_(aString,self._targetClassMiddle(),"tests"); return self}, function($ctx1) {$ctx1.fill(self,"installMiddle:",{aString:aString},smalltalk.MethodInheritanceTest)})}, args: ["aString"], source: "installMiddle: aString\x0a\x09method := self compiler install: aString forClass: self targetClassMiddle category: 'tests'", messageSends: ["install:forClass:category:", "compiler", "targetClassMiddle"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "installTop:", category: 'testing', fn: function (aString){ var self=this; return smalltalk.withContext(function($ctx1) { self["@method"]=_st(self._compiler())._install_forClass_category_(aString,self._targetClassTop(),"tests"); return self}, function($ctx1) {$ctx1.fill(self,"installTop:",{aString:aString},smalltalk.MethodInheritanceTest)})}, args: ["aString"], source: "installTop: aString\x0a\x09method := self compiler install: aString forClass: self targetClassTop category: 'tests'", messageSends: ["install:forClass:category:", "compiler", "targetClassTop"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "setUp", category: 'initialization', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self["@receiverTop"]=_st(self._targetClassTop())._new(); $ctx1.sendIdx["new"]=1; self["@receiverMiddle"]=_st(self._targetClassMiddle())._new(); $ctx1.sendIdx["new"]=2; self["@receiverBottom"]=_st(self._targetClassBottom())._new(); self["@method"]=nil; self["@performBlock"]=(function(){ return smalltalk.withContext(function($ctx2) { return self._error_("performBlock not initialized"); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}); return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "setUp\x0a\x09receiverTop := self targetClassTop new.\x0a\x09receiverMiddle := self targetClassMiddle new.\x0a\x09receiverBottom := self targetClassBottom new.\x0a\x09method := nil.\x0a\x09performBlock := [ self error: 'performBlock not initialized' ]", messageSends: ["new", "targetClassTop", "targetClassMiddle", "targetClassBottom", "error:"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "shouldMNU", category: 'testing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._shouldMNUTop(); self._shouldMNUMiddle(); self._shouldMNUBottom(); return self}, function($ctx1) {$ctx1.fill(self,"shouldMNU",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "shouldMNU\x0a\x09self shouldMNUTop.\x0a\x09self shouldMNUMiddle.\x0a\x09self shouldMNUBottom", messageSends: ["shouldMNUTop", "shouldMNUMiddle", "shouldMNUBottom"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "shouldMNUBottom", category: 'testing', fn: function (){ var self=this; function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@performBlock"])._value_(self["@receiverBottom"]); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$MessageNotUnderstood()); return self}, function($ctx1) {$ctx1.fill(self,"shouldMNUBottom",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "shouldMNUBottom\x0a\x09self should: [ performBlock value: receiverBottom ] raise: MessageNotUnderstood", messageSends: ["should:raise:", "value:"], referencedClasses: ["MessageNotUnderstood"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "shouldMNUMiddle", category: 'testing', fn: function (){ var self=this; function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@performBlock"])._value_(self["@receiverMiddle"]); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$MessageNotUnderstood()); return self}, function($ctx1) {$ctx1.fill(self,"shouldMNUMiddle",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "shouldMNUMiddle\x0a\x09self should: [ performBlock value: receiverMiddle ] raise: MessageNotUnderstood", messageSends: ["should:raise:", "value:"], referencedClasses: ["MessageNotUnderstood"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "shouldMNUTop", category: 'testing', fn: function (){ var self=this; function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(self["@performBlock"])._value_(self["@receiverTop"]); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$MessageNotUnderstood()); return self}, function($ctx1) {$ctx1.fill(self,"shouldMNUTop",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "shouldMNUTop\x0a\x09self should: [ performBlock value: receiverTop ] raise: MessageNotUnderstood", messageSends: ["should:raise:", "value:"], referencedClasses: ["MessageNotUnderstood"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "shouldReturn:", category: 'testing', fn: function (anObject){ var self=this; var result; return smalltalk.withContext(function($ctx1) { var $1,$2,$3; result=_st(self["@performBlock"])._value_(self["@receiverTop"]); $ctx1.sendIdx["value:"]=1; $1=self._assert_equals_(["top",anObject],["top",result]); $ctx1.sendIdx["assert:equals:"]=1; result=_st(self["@performBlock"])._value_(self["@receiverMiddle"]); $ctx1.sendIdx["value:"]=2; $2=self._assert_equals_(["middle",anObject],["middle",result]); $ctx1.sendIdx["assert:equals:"]=2; result=_st(self["@performBlock"])._value_(self["@receiverBottom"]); $3=self._assert_equals_(["bottom",anObject],["bottom",result]); return self}, function($ctx1) {$ctx1.fill(self,"shouldReturn:",{anObject:anObject,result:result},smalltalk.MethodInheritanceTest)})}, args: ["anObject"], source: "shouldReturn: anObject\x0a\x09| result |\x0a\x0a\x09result := performBlock value: receiverTop.\x0a\x09self assert: { 'top'. anObject } equals: { 'top'. result }.\x0a\x09result := performBlock value: receiverMiddle.\x0a\x09self assert: { 'middle'. anObject } equals: { 'middle'. result }.\x0a\x09result := performBlock value: receiverBottom.\x0a\x09self assert: { 'bottom'. anObject } equals: { 'bottom'. result }", messageSends: ["value:", "assert:equals:"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "shouldReturn:and:and:", category: 'testing', fn: function (anObject,anObject2,anObject3){ var self=this; var result; return smalltalk.withContext(function($ctx1) { var $1,$2,$3; result=_st(self["@performBlock"])._value_(self["@receiverTop"]); $ctx1.sendIdx["value:"]=1; $1=self._assert_equals_(["top",anObject],["top",result]); $ctx1.sendIdx["assert:equals:"]=1; result=_st(self["@performBlock"])._value_(self["@receiverMiddle"]); $ctx1.sendIdx["value:"]=2; $2=self._assert_equals_(["middle",anObject2],["middle",result]); $ctx1.sendIdx["assert:equals:"]=2; result=_st(self["@performBlock"])._value_(self["@receiverBottom"]); $3=self._assert_equals_(["bottom",anObject3],["bottom",result]); return self}, function($ctx1) {$ctx1.fill(self,"shouldReturn:and:and:",{anObject:anObject,anObject2:anObject2,anObject3:anObject3,result:result},smalltalk.MethodInheritanceTest)})}, args: ["anObject", "anObject2", "anObject3"], source: "shouldReturn: anObject and: anObject2 and: anObject3\x0a\x09| result |\x0a\x0a\x09result := performBlock value: receiverTop.\x0a\x09self assert: { 'top'. anObject } equals: { 'top'. result }.\x0a\x09result := performBlock value: receiverMiddle.\x0a\x09self assert: { 'middle'. anObject2 } equals: { 'middle'. result }.\x0a\x09result := performBlock value: receiverBottom.\x0a\x09self assert: { 'bottom'. anObject3 } equals: { 'bottom'. result }", messageSends: ["value:", "assert:equals:"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "targetClassBottom", category: 'accessing', fn: function (){ var self=this; function $JavaScriptException(){return smalltalk.JavaScriptException||(typeof JavaScriptException=="undefined"?nil:JavaScriptException)} return smalltalk.withContext(function($ctx1) { var $1; $1=$JavaScriptException(); return $1; }, function($ctx1) {$ctx1.fill(self,"targetClassBottom",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "targetClassBottom\x0a\x09^ JavaScriptException", messageSends: [], referencedClasses: ["JavaScriptException"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "targetClassMiddle", category: 'accessing', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $1; $1=$Error(); return $1; }, function($ctx1) {$ctx1.fill(self,"targetClassMiddle",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "targetClassMiddle\x0a\x09^ Error", messageSends: [], referencedClasses: ["Error"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "targetClassTop", category: 'accessing', fn: function (){ var self=this; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $1; $1=$Object(); return $1; }, function($ctx1) {$ctx1.fill(self,"targetClassTop",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "targetClassTop\x0a\x09^ Object", messageSends: [], referencedClasses: ["Object"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "tearDown", category: 'initialization', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3; $1=_st((function(){ return smalltalk.withContext(function($ctx2) { return self._deinstallTop(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._on_do_($Error(),(function(){ return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $ctx1.sendIdx["on:do:"]=1; $2=_st((function(){ return smalltalk.withContext(function($ctx2) { return self._deinstallMiddle(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})}))._on_do_($Error(),(function(){ return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})})); $ctx1.sendIdx["on:do:"]=2; $3=_st((function(){ return smalltalk.withContext(function($ctx2) { return self._deinstallBottom(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)})}))._on_do_($Error(),(function(){ return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({},$ctx1,6)})})); return self}, function($ctx1) {$ctx1.fill(self,"tearDown",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "tearDown\x0a\x09[ self deinstallTop ] on: Error do: [].\x0a\x09[ self deinstallMiddle ] on: Error do: [].\x0a\x09[ self deinstallBottom ] on: Error do: []", messageSends: ["on:do:", "deinstallTop", "deinstallMiddle", "deinstallBottom"], referencedClasses: ["Error"] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "testMNU11", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; self["@performBlock"]=(function(x){ return smalltalk.withContext(function($ctx2) { return _st(x)._foo(); }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,1)})}); $1=self._shouldMNU(); $ctx1.sendIdx["shouldMNU"]=1; $2=self._installTop_("foo ^ false"); $ctx1.sendIdx["installTop:"]=1; $3=self._installTop_("foo ^ true"); self._deinstallTop(); $4=self._shouldMNU(); return self}, function($ctx1) {$ctx1.fill(self,"testMNU11",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "testMNU11\x0a\x09performBlock := [ :x | x foo ].\x0a\x09self shouldMNU.\x0a\x09self installTop: 'foo ^ false'.\x0a\x09self installTop: 'foo ^ true'.\x0a\x09self deinstallTop.\x0a\x09self shouldMNU", messageSends: ["foo", "shouldMNU", "installTop:", "deinstallTop"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "testMNU22", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; self["@performBlock"]=(function(x){ return smalltalk.withContext(function($ctx2) { return _st(x)._foo(); }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,1)})}); $1=self._shouldMNU(); $ctx1.sendIdx["shouldMNU"]=1; $2=self._installMiddle_("foo ^ false"); $ctx1.sendIdx["installMiddle:"]=1; $3=self._installMiddle_("foo ^ true"); self._deinstallMiddle(); $4=self._shouldMNU(); return self}, function($ctx1) {$ctx1.fill(self,"testMNU22",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "testMNU22\x0a\x09performBlock := [ :x | x foo ].\x0a\x09self shouldMNU.\x0a\x09self installMiddle: 'foo ^ false'.\x0a\x09self installMiddle: 'foo ^ true'.\x0a\x09self deinstallMiddle.\x0a\x09self shouldMNU", messageSends: ["foo", "shouldMNU", "installMiddle:", "deinstallMiddle"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addMethod( smalltalk.method({ selector: "testReturns1", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; self["@performBlock"]=(function(x){ return smalltalk.withContext(function($ctx2) { return _st(x)._foo(); }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,1)})}); $1=self._installTop_("foo ^ false"); $ctx1.sendIdx["installTop:"]=1; $2=self._shouldReturn_(false); $ctx1.sendIdx["shouldReturn:"]=1; $3=self._installTop_("foo ^ true"); $4=self._shouldReturn_(true); return self}, function($ctx1) {$ctx1.fill(self,"testReturns1",{},smalltalk.MethodInheritanceTest)})}, args: [], source: "testReturns1\x0a\x09performBlock := [ :x | x foo ].\x0a\x09self installTop: 'foo ^ false'.\x0a\x09self shouldReturn: false.\x0a\x09self installTop: 'foo ^ true'.\x0a\x09self shouldReturn: true", messageSends: ["foo", "installTop:", "shouldReturn:"], referencedClasses: [] }), smalltalk.MethodInheritanceTest); smalltalk.addClass('NumberTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testAbs", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=(4)._abs(); $ctx1.sendIdx["abs"]=1; $1=self._assert_equals_($2,(4)); $ctx1.sendIdx["assert:equals:"]=1; $4=(-4)._abs(); $3=self._assert_equals_($4,(4)); return self}, function($ctx1) {$ctx1.fill(self,"testAbs",{},smalltalk.NumberTest)})}, args: [], source: "testAbs\x0a\x09self assert: 4 abs equals: 4.\x0a\x09self assert: -4 abs equals: 4", messageSends: ["assert:equals:", "abs"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testArithmetic", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$7,$9,$8,$10,$11,$14,$13,$12,$17,$16,$15; $2=(1.5).__plus((1)); $ctx1.sendIdx["+"]=1; $1=self._assert_equals_($2,(2.5)); $ctx1.sendIdx["assert:equals:"]=1; $4=(2).__minus((1)); $ctx1.sendIdx["-"]=1; $3=self._assert_equals_($4,(1)); $ctx1.sendIdx["assert:equals:"]=2; $6=(-2).__minus((1)); $5=self._assert_equals_($6,(-3)); $ctx1.sendIdx["assert:equals:"]=3; $7=self._assert_equals_((12).__slash((2)),(6)); $ctx1.sendIdx["assert:equals:"]=4; $9=(3).__star((4)); $ctx1.sendIdx["*"]=1; $8=self._assert_equals_($9,(12)); $ctx1.sendIdx["assert:equals:"]=5; $10=self._assert_equals_((7).__slash_slash((2)),(3)); $ctx1.sendIdx["assert:equals:"]=6; $11=self._assert_equals_((7).__backslash_backslash((2)),(1)); $ctx1.sendIdx["assert:equals:"]=7; $14=(1).__plus((2)); $ctx1.sendIdx["+"]=2; $13=_st($14).__star((3)); $ctx1.sendIdx["*"]=2; $12=self._assert_equals_($13,(9)); $ctx1.sendIdx["assert:equals:"]=8; $17=(2).__star((3)); $16=(1).__plus($17); $15=self._assert_equals_($16,(7)); return self}, function($ctx1) {$ctx1.fill(self,"testArithmetic",{},smalltalk.NumberTest)})}, args: [], source: "testArithmetic\x0a\x09\x0a\x09\x22We rely on JS here, so we won't test complex behavior, just check if\x0a\x09message sends are corrects\x22\x0a\x0a\x09self assert: 1.5 + 1 equals: 2.5.\x0a\x09self assert: 2 - 1 equals: 1.\x0a\x09self assert: -2 - 1 equals: -3.\x0a\x09self assert: 12 / 2 equals: 6.\x0a\x09self assert: 3 * 4 equals: 12.\x0a\x09self assert: 7 // 2 equals: 3.\x0a\x09self assert: 7 \x5c\x5c 2 equals: 1.\x0a\x0a\x09\x22Simple parenthesis and execution order\x22\x0a\x09self assert: 1 + 2 * 3 equals: 9.\x0a\x09self assert: 1 + (2 * 3) equals: 7", messageSends: ["assert:equals:", "+", "-", "/", "*", "//", "\x5c\x5c"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testAsNumber", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_((3)._asNumber(),(3)); return self}, function($ctx1) {$ctx1.fill(self,"testAsNumber",{},smalltalk.NumberTest)})}, args: [], source: "testAsNumber\x0a\x09self assert: 3 asNumber equals: 3.", messageSends: ["assert:equals:", "asNumber"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testCeiling", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=(1.2)._ceiling(); $ctx1.sendIdx["ceiling"]=1; $1=self._assert_equals_($2,(2)); $ctx1.sendIdx["assert:equals:"]=1; $4=(-1.2)._ceiling(); $ctx1.sendIdx["ceiling"]=2; $3=self._assert_equals_($4,(-1)); $ctx1.sendIdx["assert:equals:"]=2; $6=(1)._ceiling(); $5=self._assert_equals_($6,(1)); return self}, function($ctx1) {$ctx1.fill(self,"testCeiling",{},smalltalk.NumberTest)})}, args: [], source: "testCeiling\x0a\x09self assert: 1.2 ceiling equals: 2.\x0a\x09self assert: -1.2 ceiling equals: -1.\x0a\x09self assert: 1.0 ceiling equals: 1.", messageSends: ["assert:equals:", "ceiling"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testComparison", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9,$12,$11,$14,$13,$16,$15; $2=(3).__gt((2)); $ctx1.sendIdx[">"]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $4=(2).__lt((3)); $ctx1.sendIdx["<"]=1; $3=self._assert_($4); $ctx1.sendIdx["assert:"]=2; $6=(3).__lt((2)); $5=self._deny_($6); $ctx1.sendIdx["deny:"]=1; $8=(2).__gt((3)); $7=self._deny_($8); $10=(3).__gt_eq((3)); $ctx1.sendIdx[">="]=1; $9=self._assert_($10); $ctx1.sendIdx["assert:"]=3; $12=(3.1).__gt_eq((3)); $11=self._assert_($12); $ctx1.sendIdx["assert:"]=4; $14=(3).__lt_eq((3)); $ctx1.sendIdx["<="]=1; $13=self._assert_($14); $ctx1.sendIdx["assert:"]=5; $16=(3).__lt_eq((3.1)); $15=self._assert_($16); return self}, function($ctx1) {$ctx1.fill(self,"testComparison",{},smalltalk.NumberTest)})}, args: [], source: "testComparison\x0a\x0a\x09self assert: 3 > 2.\x0a\x09self assert: 2 < 3.\x0a\x09\x0a\x09self deny: 3 < 2.\x0a\x09self deny: 2 > 3.\x0a\x0a\x09self assert: 3 >= 3.\x0a\x09self assert: 3.1 >= 3.\x0a\x09self assert: 3 <= 3.\x0a\x09self assert: 3 <= 3.1", messageSends: ["assert:", ">", "<", "deny:", ">=", "<="], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testCopying", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=_st((1)._copy()).__eq_eq((1)); $ctx1.sendIdx["=="]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $4=_st((1)._deepCopy()).__eq_eq((1)); $3=self._assert_($4); return self}, function($ctx1) {$ctx1.fill(self,"testCopying",{},smalltalk.NumberTest)})}, args: [], source: "testCopying\x0a\x09self assert: 1 copy == 1.\x0a\x09self assert: 1 deepCopy == 1", messageSends: ["assert:", "==", "copy", "deepCopy"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testEquality", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$9,$8,$7,$12,$11,$10,$15,$16,$14,$13,$18,$17,$20,$19,$22,$21,$24,$23; $2=(1).__eq((1)); $ctx1.sendIdx["="]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $4=(0).__eq((0)); $ctx1.sendIdx["="]=2; $3=self._assert_($4); $ctx1.sendIdx["assert:"]=2; $6=(1).__eq((0)); $ctx1.sendIdx["="]=3; $5=self._deny_($6); $ctx1.sendIdx["deny:"]=1; $9=(1)._yourself(); $ctx1.sendIdx["yourself"]=1; $8=_st($9).__eq((1)); $ctx1.sendIdx["="]=4; $7=self._assert_($8); $ctx1.sendIdx["assert:"]=3; $12=(1)._yourself(); $ctx1.sendIdx["yourself"]=2; $11=(1).__eq($12); $ctx1.sendIdx["="]=5; $10=self._assert_($11); $ctx1.sendIdx["assert:"]=4; $15=(1)._yourself(); $ctx1.sendIdx["yourself"]=3; $16=(1)._yourself(); $14=_st($15).__eq($16); $ctx1.sendIdx["="]=6; $13=self._assert_($14); $18=(0).__eq(false); $ctx1.sendIdx["="]=7; $17=self._deny_($18); $ctx1.sendIdx["deny:"]=2; $20=false.__eq((0)); $ctx1.sendIdx["="]=8; $19=self._deny_($20); $ctx1.sendIdx["deny:"]=3; $22="".__eq((0)); $ctx1.sendIdx["="]=9; $21=self._deny_($22); $ctx1.sendIdx["deny:"]=4; $24=(0).__eq(""); $23=self._deny_($24); return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.NumberTest)})}, args: [], source: "testEquality\x0a\x09self assert: (1 = 1).\x0a\x09self assert: (0 = 0).\x0a\x09self deny: (1 = 0).\x0a\x0a\x09self assert: (1 yourself = 1).\x0a\x09self assert: (1 = 1 yourself).\x0a\x09self assert: (1 yourself = 1 yourself).\x0a\x09\x0a\x09self deny: 0 = false.\x0a\x09self deny: false = 0.\x0a\x09self deny: '' = 0.\x0a\x09self deny: 0 = ''", messageSends: ["assert:", "=", "deny:", "yourself"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testFloor", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=(1.2)._floor(); $ctx1.sendIdx["floor"]=1; $1=self._assert_equals_($2,(1)); $ctx1.sendIdx["assert:equals:"]=1; $4=(-1.2)._floor(); $ctx1.sendIdx["floor"]=2; $3=self._assert_equals_($4,(-2)); $ctx1.sendIdx["assert:equals:"]=2; $6=(1)._floor(); $5=self._assert_equals_($6,(1)); return self}, function($ctx1) {$ctx1.fill(self,"testFloor",{},smalltalk.NumberTest)})}, args: [], source: "testFloor\x0a\x09self assert: 1.2 floor equals: 1.\x0a\x09self assert: -1.2 floor equals: -2.\x0a\x09self assert: 1.0 floor equals: 1.", messageSends: ["assert:equals:", "floor"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testHexNumbers", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$3,$2,$5,$4,$7,$6,$9,$8,$11,$10,$13,$12; $1=self._assert_equals_((9),(9)); $ctx1.sendIdx["assert:equals:"]=1; $3=(10)._truncated(); $ctx1.sendIdx["truncated"]=1; $2=self._assert_equals_($3,(10)); $ctx1.sendIdx["assert:equals:"]=2; $5=(11)._truncated(); $ctx1.sendIdx["truncated"]=2; $4=self._assert_equals_($5,(11)); $ctx1.sendIdx["assert:equals:"]=3; $7=(12)._truncated(); $ctx1.sendIdx["truncated"]=3; $6=self._assert_equals_($7,(12)); $ctx1.sendIdx["assert:equals:"]=4; $9=(13)._truncated(); $ctx1.sendIdx["truncated"]=4; $8=self._assert_equals_($9,(13)); $ctx1.sendIdx["assert:equals:"]=5; $11=(14)._truncated(); $ctx1.sendIdx["truncated"]=5; $10=self._assert_equals_($11,(14)); $ctx1.sendIdx["assert:equals:"]=6; $13=(15)._truncated(); $12=self._assert_equals_($13,(15)); return self}, function($ctx1) {$ctx1.fill(self,"testHexNumbers",{},smalltalk.NumberTest)})}, args: [], source: "testHexNumbers\x0a\x0a\x09self assert: 16r9 equals: 9.\x0a\x09self assert: 16rA truncated equals: 10.\x0a\x09self assert: 16rB truncated equals: 11.\x0a\x09self assert: 16rC truncated equals: 12.\x0a\x09self assert: 16rD truncated equals: 13.\x0a\x09self assert: 16rE truncated equals: 14.\x0a\x09self assert: 16rF truncated equals: 15", messageSends: ["assert:equals:", "truncated"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testIdentity", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$9,$8,$7,$12,$11,$10,$15,$16,$14,$13,$18,$17; $2=(1).__eq_eq((1)); $ctx1.sendIdx["=="]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $4=(0).__eq_eq((0)); $ctx1.sendIdx["=="]=2; $3=self._assert_($4); $ctx1.sendIdx["assert:"]=2; $6=(1).__eq_eq((0)); $ctx1.sendIdx["=="]=3; $5=self._deny_($6); $ctx1.sendIdx["deny:"]=1; $9=(1)._yourself(); $ctx1.sendIdx["yourself"]=1; $8=_st($9).__eq_eq((1)); $ctx1.sendIdx["=="]=4; $7=self._assert_($8); $ctx1.sendIdx["assert:"]=3; $12=(1)._yourself(); $ctx1.sendIdx["yourself"]=2; $11=(1).__eq_eq($12); $ctx1.sendIdx["=="]=5; $10=self._assert_($11); $ctx1.sendIdx["assert:"]=4; $15=(1)._yourself(); $ctx1.sendIdx["yourself"]=3; $16=(1)._yourself(); $14=_st($15).__eq_eq($16); $ctx1.sendIdx["=="]=6; $13=self._assert_($14); $18=(1).__eq_eq((2)); $17=self._deny_($18); return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.NumberTest)})}, args: [], source: "testIdentity\x0a\x09self assert: 1 == 1.\x0a\x09self assert: 0 == 0.\x0a\x09self deny: 1 == 0.\x0a\x0a\x09self assert: 1 yourself == 1.\x0a\x09self assert: 1 == 1 yourself.\x0a\x09self assert: 1 yourself == 1 yourself.\x0a\x09\x0a\x09self deny: 1 == 2", messageSends: ["assert:", "==", "deny:", "yourself"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testInvalidHexNumbers", category: 'tests', fn: function (){ var self=this; function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19,$20,$21,$22,$23,$24,$25,$26,$27,$28,$29,$30,$31,$32,$33,$34,$35,$36,$37,$38,$39,$40,$41; $1=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rG(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=1; $2=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rg(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=2; $3=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rH(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=3; $4=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rh(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=4; $5=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rI(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=5; $6=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._ri(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,6)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=6; $7=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rJ(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,7)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=7; $8=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rj(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,8)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=8; $9=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rK(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,9)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=9; $10=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rk(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,10)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=10; $11=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rL(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,11)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=11; $12=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rl(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,12)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=12; $13=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rM(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,13)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=13; $14=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rm(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,14)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=14; $15=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rN(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,15)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=15; $16=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rn(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,16)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=16; $17=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rO(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,17)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=17; $18=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._ro(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,18)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=18; $19=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rP(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,19)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=19; $20=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rp(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,20)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=20; $21=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rQ(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,21)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=21; $22=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rq(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,22)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=22; $23=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rR(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,23)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=23; $24=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rr(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,24)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=24; $25=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rS(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,25)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=25; $26=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rs(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,26)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=26; $27=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rT(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,27)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=27; $28=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rt(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,28)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=28; $29=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rU(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,29)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=29; $30=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._ru(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,30)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=30; $31=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rV(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,31)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=31; $32=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rv(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,32)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=32; $33=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rW(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,33)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=33; $34=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rw(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,34)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=34; $35=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rX(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,35)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=35; $36=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rx(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,36)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=36; $37=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rY(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,37)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=37; $38=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._ry(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,38)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=38; $39=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rZ(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,39)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=39; $40=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (16)._rz(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,40)})}),$MessageNotUnderstood()); $ctx1.sendIdx["should:raise:"]=40; $41=self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (11259375)._Z(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,41)})}),$MessageNotUnderstood()); return self}, function($ctx1) {$ctx1.fill(self,"testInvalidHexNumbers",{},smalltalk.NumberTest)})}, args: [], source: "testInvalidHexNumbers\x0a\x0a\x09self should: [16rG] raise: MessageNotUnderstood.\x0a\x09self should: [16rg] raise: MessageNotUnderstood.\x0a\x09self should: [16rH] raise: MessageNotUnderstood.\x0a\x09self should: [16rh] raise: MessageNotUnderstood.\x0a\x09self should: [16rI] raise: MessageNotUnderstood.\x0a\x09self should: [16ri] raise: MessageNotUnderstood.\x0a\x09self should: [16rJ] raise: MessageNotUnderstood.\x0a\x09self should: [16rj] raise: MessageNotUnderstood.\x0a\x09self should: [16rK] raise: MessageNotUnderstood.\x0a\x09self should: [16rk] raise: MessageNotUnderstood.\x0a\x09self should: [16rL] raise: MessageNotUnderstood.\x0a\x09self should: [16rl] raise: MessageNotUnderstood.\x0a\x09self should: [16rM] raise: MessageNotUnderstood.\x0a\x09self should: [16rm] raise: MessageNotUnderstood.\x0a\x09self should: [16rN] raise: MessageNotUnderstood.\x0a\x09self should: [16rn] raise: MessageNotUnderstood.\x0a\x09self should: [16rO] raise: MessageNotUnderstood.\x0a\x09self should: [16ro] raise: MessageNotUnderstood.\x0a\x09self should: [16rP] raise: MessageNotUnderstood.\x0a\x09self should: [16rp] raise: MessageNotUnderstood.\x0a\x09self should: [16rQ] raise: MessageNotUnderstood.\x0a\x09self should: [16rq] raise: MessageNotUnderstood.\x0a\x09self should: [16rR] raise: MessageNotUnderstood.\x0a\x09self should: [16rr] raise: MessageNotUnderstood.\x0a\x09self should: [16rS] raise: MessageNotUnderstood.\x0a\x09self should: [16rs] raise: MessageNotUnderstood.\x0a\x09self should: [16rT] raise: MessageNotUnderstood.\x0a\x09self should: [16rt] raise: MessageNotUnderstood.\x0a\x09self should: [16rU] raise: MessageNotUnderstood.\x0a\x09self should: [16ru] raise: MessageNotUnderstood.\x0a\x09self should: [16rV] raise: MessageNotUnderstood.\x0a\x09self should: [16rv] raise: MessageNotUnderstood.\x0a\x09self should: [16rW] raise: MessageNotUnderstood.\x0a\x09self should: [16rw] raise: MessageNotUnderstood.\x0a\x09self should: [16rX] raise: MessageNotUnderstood.\x0a\x09self should: [16rx] raise: MessageNotUnderstood.\x0a\x09self should: [16rY] raise: MessageNotUnderstood.\x0a\x09self should: [16ry] raise: MessageNotUnderstood.\x0a\x09self should: [16rZ] raise: MessageNotUnderstood.\x0a\x09self should: [16rz] raise: MessageNotUnderstood.\x0a\x09self should: [16rABcdEfZ] raise: MessageNotUnderstood.", messageSends: ["should:raise:", "rG", "rg", "rH", "rh", "rI", "ri", "rJ", "rj", "rK", "rk", "rL", "rl", "rM", "rm", "rN", "rn", "rO", "ro", "rP", "rp", "rQ", "rq", "rR", "rr", "rS", "rs", "rT", "rt", "rU", "ru", "rV", "rv", "rW", "rw", "rX", "rx", "rY", "ry", "rZ", "rz", "Z"], referencedClasses: ["MessageNotUnderstood"] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testLog", category: 'tests', fn: function (){ var self=this; function $Number(){return smalltalk.Number||(typeof Number=="undefined"?nil:Number)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3; $1=self._assert_equals_((10000)._log(),(4)); $ctx1.sendIdx["assert:equals:"]=1; $2=self._assert_equals_((512)._log_((2)),(9)); $ctx1.sendIdx["assert:equals:"]=2; $3=self._assert_equals_(_st(_st($Number())._e())._ln(),(1)); return self}, function($ctx1) {$ctx1.fill(self,"testLog",{},smalltalk.NumberTest)})}, args: [], source: "testLog\x0a\x09self assert: 10000 log equals: 4.\x0a\x09self assert: (512 log: 2) equals: 9.\x0a\x09self assert: Number e ln equals: 1.", messageSends: ["assert:equals:", "log", "log:", "ln", "e"], referencedClasses: ["Number"] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testMinMax", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2; $1=self._assert_equals_((2)._max_((5)),(5)); $ctx1.sendIdx["assert:equals:"]=1; $2=self._assert_equals_((2)._min_((5)),(2)); return self}, function($ctx1) {$ctx1.fill(self,"testMinMax",{},smalltalk.NumberTest)})}, args: [], source: "testMinMax\x0a\x09\x0a\x09self assert: (2 max: 5) equals: 5.\x0a\x09self assert: (2 min: 5) equals: 2", messageSends: ["assert:equals:", "max:", "min:"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testNegated", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=(3)._negated(); $ctx1.sendIdx["negated"]=1; $1=self._assert_equals_($2,(-3)); $ctx1.sendIdx["assert:equals:"]=1; $4=(-3)._negated(); $3=self._assert_equals_($4,(3)); return self}, function($ctx1) {$ctx1.fill(self,"testNegated",{},smalltalk.NumberTest)})}, args: [], source: "testNegated\x0a\x09self assert: 3 negated equals: -3.\x0a\x09self assert: -3 negated equals: 3", messageSends: ["assert:equals:", "negated"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testPrintShowingDecimalPlaces", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$7,$6,$5,$9,$8,$11,$10,$14,$13,$12,$17,$16,$15,$19,$18,$21,$20,$24,$23,$22,$26,$25,$28,$27,$30,$29; $2=(23)._printShowingDecimalPlaces_((2)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=1; $1=self._assert_equals_($2,"23.00"); $ctx1.sendIdx["assert:equals:"]=1; $4=(23.5698)._printShowingDecimalPlaces_((2)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=2; $3=self._assert_equals_($4,"23.57"); $ctx1.sendIdx["assert:equals:"]=2; $7=(234.567)._negated(); $ctx1.sendIdx["negated"]=1; $6=_st($7)._printShowingDecimalPlaces_((5)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=3; $5=self._assert_equals_($6,"-234.56700"); $ctx1.sendIdx["assert:equals:"]=3; $9=(23.4567)._printShowingDecimalPlaces_((0)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=4; $8=self._assert_equals_($9,"23"); $ctx1.sendIdx["assert:equals:"]=4; $11=(23.5567)._printShowingDecimalPlaces_((0)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=5; $10=self._assert_equals_($11,"24"); $ctx1.sendIdx["assert:equals:"]=5; $14=(23.4567)._negated(); $ctx1.sendIdx["negated"]=2; $13=_st($14)._printShowingDecimalPlaces_((0)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=6; $12=self._assert_equals_($13,"-23"); $ctx1.sendIdx["assert:equals:"]=6; $17=(23.5567)._negated(); $ctx1.sendIdx["negated"]=3; $16=_st($17)._printShowingDecimalPlaces_((0)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=7; $15=self._assert_equals_($16,"-24"); $ctx1.sendIdx["assert:equals:"]=7; $19=(100000000)._printShowingDecimalPlaces_((1)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=8; $18=self._assert_equals_($19,"100000000.0"); $ctx1.sendIdx["assert:equals:"]=8; $21=(0.98)._printShowingDecimalPlaces_((5)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=9; $20=self._assert_equals_($21,"0.98000"); $ctx1.sendIdx["assert:equals:"]=9; $24=(0.98)._negated(); $23=_st($24)._printShowingDecimalPlaces_((2)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=10; $22=self._assert_equals_($23,"-0.98"); $ctx1.sendIdx["assert:equals:"]=10; $26=(2.567)._printShowingDecimalPlaces_((2)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=11; $25=self._assert_equals_($26,"2.57"); $ctx1.sendIdx["assert:equals:"]=11; $28=(-2.567)._printShowingDecimalPlaces_((2)); $ctx1.sendIdx["printShowingDecimalPlaces:"]=12; $27=self._assert_equals_($28,"-2.57"); $ctx1.sendIdx["assert:equals:"]=12; $30=(0)._printShowingDecimalPlaces_((2)); $29=self._assert_equals_($30,"0.00"); return self}, function($ctx1) {$ctx1.fill(self,"testPrintShowingDecimalPlaces",{},smalltalk.NumberTest)})}, args: [], source: "testPrintShowingDecimalPlaces\x0a\x09self assert: (23 printShowingDecimalPlaces: 2) equals: '23.00'.\x0a\x09self assert: (23.5698 printShowingDecimalPlaces: 2) equals: '23.57'.\x0a\x09self assert: (234.567 negated printShowingDecimalPlaces: 5) equals: '-234.56700'.\x0a\x09self assert: (23.4567 printShowingDecimalPlaces: 0) equals: '23'.\x0a\x09self assert: (23.5567 printShowingDecimalPlaces: 0) equals: '24'.\x0a\x09self assert: (23.4567 negated printShowingDecimalPlaces: 0) equals: '-23'.\x0a\x09self assert: (23.5567 negated printShowingDecimalPlaces: 0) equals: '-24'.\x0a\x09self assert: (100000000 printShowingDecimalPlaces: 1) equals: '100000000.0'.\x0a\x09self assert: (0.98 printShowingDecimalPlaces: 5) equals: '0.98000'.\x0a\x09self assert: (0.98 negated printShowingDecimalPlaces: 2) equals: '-0.98'.\x0a\x09self assert: (2.567 printShowingDecimalPlaces: 2) equals: '2.57'.\x0a\x09self assert: (-2.567 printShowingDecimalPlaces: 2) equals: '-2.57'.\x0a\x09self assert: (0 printShowingDecimalPlaces: 2) equals: '0.00'.", messageSends: ["assert:equals:", "printShowingDecimalPlaces:", "negated"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testRaisedTo", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$9; $2=(2)._raisedTo_((4)); $ctx1.sendIdx["raisedTo:"]=1; $1=self._assert_equals_($2,(16)); $ctx1.sendIdx["assert:equals:"]=1; $4=(2)._raisedTo_((0)); $ctx1.sendIdx["raisedTo:"]=2; $3=self._assert_equals_($4,(1)); $ctx1.sendIdx["assert:equals:"]=2; $6=(2)._raisedTo_((-3)); $ctx1.sendIdx["raisedTo:"]=3; $5=self._assert_equals_($6,(0.125)); $ctx1.sendIdx["assert:equals:"]=3; $8=(4)._raisedTo_((0.5)); $7=self._assert_equals_($8,(2)); $ctx1.sendIdx["assert:equals:"]=4; $9=self._assert_equals_((2).__star_star((4)),(16)); return self}, function($ctx1) {$ctx1.fill(self,"testRaisedTo",{},smalltalk.NumberTest)})}, args: [], source: "testRaisedTo\x0a\x09self assert: (2 raisedTo: 4) equals: 16.\x0a\x09self assert: (2 raisedTo: 0) equals: 1.\x0a\x09self assert: (2 raisedTo: -3) equals: 0.125.\x0a\x09self assert: (4 raisedTo: 0.5) equals: 2.\x0a\x09\x0a\x09self assert: 2 ** 4 equals: 16.", messageSends: ["assert:equals:", "raisedTo:", "**"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testRounded", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=(3)._rounded(); $ctx1.sendIdx["rounded"]=1; $1=self._assert_equals_($2,(3)); $ctx1.sendIdx["assert:equals:"]=1; $4=(3.212)._rounded(); $ctx1.sendIdx["rounded"]=2; $3=self._assert_equals_($4,(3)); $ctx1.sendIdx["assert:equals:"]=2; $6=(3.51)._rounded(); $5=self._assert_equals_($6,(4)); return self}, function($ctx1) {$ctx1.fill(self,"testRounded",{},smalltalk.NumberTest)})}, args: [], source: "testRounded\x0a\x09\x0a\x09self assert: 3 rounded equals: 3.\x0a\x09self assert: 3.212 rounded equals: 3.\x0a\x09self assert: 3.51 rounded equals: 4", messageSends: ["assert:equals:", "rounded"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testSign", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=(5)._sign(); $ctx1.sendIdx["sign"]=1; $1=self._assert_equals_($2,(1)); $ctx1.sendIdx["assert:equals:"]=1; $4=(0)._sign(); $ctx1.sendIdx["sign"]=2; $3=self._assert_equals_($4,(0)); $ctx1.sendIdx["assert:equals:"]=2; $6=(-1.4)._sign(); $5=self._assert_equals_($6,(-1)); return self}, function($ctx1) {$ctx1.fill(self,"testSign",{},smalltalk.NumberTest)})}, args: [], source: "testSign\x0a\x09self assert: 5 sign equals: 1.\x0a\x09self assert: 0 sign equals: 0.\x0a\x09self assert: -1.4 sign equals: -1.", messageSends: ["assert:equals:", "sign"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testSqrt", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; $2=(4)._sqrt(); $ctx1.sendIdx["sqrt"]=1; $1=self._assert_equals_($2,(2)); $ctx1.sendIdx["assert:equals:"]=1; $4=(16)._sqrt(); $3=self._assert_equals_($4,(4)); return self}, function($ctx1) {$ctx1.fill(self,"testSqrt",{},smalltalk.NumberTest)})}, args: [], source: "testSqrt\x0a\x09\x0a\x09self assert: 4 sqrt equals: 2.\x0a\x09self assert: 16 sqrt equals: 4", messageSends: ["assert:equals:", "sqrt"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testSquared", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_((4)._squared(),(16)); return self}, function($ctx1) {$ctx1.fill(self,"testSquared",{},smalltalk.NumberTest)})}, args: [], source: "testSquared\x0a\x09\x0a\x09self assert: 4 squared equals: 16", messageSends: ["assert:equals:", "squared"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testTimesRepeat", category: 'tests', fn: function (){ var self=this; var i; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; i=(0); $1=(0)._timesRepeat_((function(){ return smalltalk.withContext(function($ctx2) { i=_st(i).__plus((1)); $ctx2.sendIdx["+"]=1; return i; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $ctx1.sendIdx["timesRepeat:"]=1; $2=self._assert_equals_(i,(0)); $ctx1.sendIdx["assert:equals:"]=1; $3=(5)._timesRepeat_((function(){ return smalltalk.withContext(function($ctx2) { i=_st(i).__plus((1)); return i; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})})); $4=self._assert_equals_(i,(5)); return self}, function($ctx1) {$ctx1.fill(self,"testTimesRepeat",{i:i},smalltalk.NumberTest)})}, args: [], source: "testTimesRepeat\x0a\x09| i |\x0a\x0a\x09i := 0.\x0a\x090 timesRepeat: [i := i + 1].\x0a\x09self assert: i equals: 0.\x0a\x0a\x095 timesRepeat: [i := i + 1].\x0a\x09self assert: i equals: 5", messageSends: ["timesRepeat:", "+", "assert:equals:"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testTo", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_((1)._to_((5)),[(1), (2), (3), (4), (5)]); return self}, function($ctx1) {$ctx1.fill(self,"testTo",{},smalltalk.NumberTest)})}, args: [], source: "testTo\x0a\x09self assert: (1 to: 5) equals: #(1 2 3 4 5)", messageSends: ["assert:equals:", "to:"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testToBy", category: 'tests', fn: function (){ var self=this; function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $1; $1=(0)._to_by_((6),(2)); $ctx1.sendIdx["to:by:"]=1; self._assert_equals_($1,[(0), (2), (4), (6)]); self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return (1)._to_by_((4),(0)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testToBy",{},smalltalk.NumberTest)})}, args: [], source: "testToBy\x0a\x09self assert: (0 to: 6 by: 2) equals: #(0 2 4 6).\x0a\x0a\x09self should: [1 to: 4 by: 0] raise: Error", messageSends: ["assert:equals:", "to:by:", "should:raise:"], referencedClasses: ["Error"] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testTrigonometry", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4,$5,$6; $1=self._assert_equals_((0)._cos(),(1)); $ctx1.sendIdx["assert:equals:"]=1; $2=self._assert_equals_((0)._sin(),(0)); $ctx1.sendIdx["assert:equals:"]=2; $3=self._assert_equals_((0)._tan(),(0)); $ctx1.sendIdx["assert:equals:"]=3; $4=self._assert_equals_((1)._arcCos(),(0)); $ctx1.sendIdx["assert:equals:"]=4; $5=self._assert_equals_((0)._arcSin(),(0)); $ctx1.sendIdx["assert:equals:"]=5; $6=self._assert_equals_((0)._arcTan(),(0)); return self}, function($ctx1) {$ctx1.fill(self,"testTrigonometry",{},smalltalk.NumberTest)})}, args: [], source: "testTrigonometry\x0a\x09self assert: 0 cos equals: 1.\x0a\x09self assert: 0 sin equals: 0.\x0a\x09self assert: 0 tan equals: 0.\x0a\x09self assert: 1 arcCos equals: 0.\x0a\x09self assert: 0 arcSin equals: 0.\x0a\x09self assert: 0 arcTan equals: 0.", messageSends: ["assert:equals:", "cos", "sin", "tan", "arcCos", "arcSin", "arcTan"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addMethod( smalltalk.method({ selector: "testTruncated", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; $2=(3)._truncated(); $ctx1.sendIdx["truncated"]=1; $1=self._assert_equals_($2,(3)); $ctx1.sendIdx["assert:equals:"]=1; $4=(3.212)._truncated(); $ctx1.sendIdx["truncated"]=2; $3=self._assert_equals_($4,(3)); $ctx1.sendIdx["assert:equals:"]=2; $6=(3.51)._truncated(); $5=self._assert_equals_($6,(3)); return self}, function($ctx1) {$ctx1.fill(self,"testTruncated",{},smalltalk.NumberTest)})}, args: [], source: "testTruncated\x0a\x09\x0a\x09self assert: 3 truncated equals: 3.\x0a\x09self assert: 3.212 truncated equals: 3.\x0a\x09self assert: 3.51 truncated equals: 3", messageSends: ["assert:equals:", "truncated"], referencedClasses: [] }), smalltalk.NumberTest); smalltalk.addClass('ObjectMock', smalltalk.Object, ['foo', 'bar'], 'Kernel-Tests'); smalltalk.ObjectMock.comment="ObjectMock is there only to perform tests on classes."; smalltalk.addMethod( smalltalk.method({ selector: "foo", category: 'not yet classified', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=self["@foo"]; return $1; }, function($ctx1) {$ctx1.fill(self,"foo",{},smalltalk.ObjectMock)})}, args: [], source: "foo\x0a\x09^foo", messageSends: [], referencedClasses: [] }), smalltalk.ObjectMock); smalltalk.addMethod( smalltalk.method({ selector: "foo:", category: 'not yet classified', fn: function (anObject){ var self=this; return smalltalk.withContext(function($ctx1) { self["@foo"]=anObject; return self}, function($ctx1) {$ctx1.fill(self,"foo:",{anObject:anObject},smalltalk.ObjectMock)})}, args: ["anObject"], source: "foo: anObject\x0a\x09foo := anObject", messageSends: [], referencedClasses: [] }), smalltalk.ObjectMock); smalltalk.addClass('ObjectTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "notDefined", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return void 0;; return self}, function($ctx1) {$ctx1.fill(self,"notDefined",{},smalltalk.ObjectTest)})}, args: [], source: "notDefined\x0a\x09", messageSends: [], referencedClasses: [] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testBasicAccess", category: 'tests', fn: function (){ var self=this; var o; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; o=_st($Object())._new(); _st(o)._basicAt_put_("a",(1)); $2=_st(o)._basicAt_("a"); $ctx1.sendIdx["basicAt:"]=1; $1=self._assert_equals_($2,(1)); $ctx1.sendIdx["assert:equals:"]=1; $4=_st(o)._basicAt_("b"); $3=self._assert_equals_($4,nil); return self}, function($ctx1) {$ctx1.fill(self,"testBasicAccess",{o:o},smalltalk.ObjectTest)})}, args: [], source: "testBasicAccess\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09o basicAt: 'a' put: 1.\x0a\x09self assert: (o basicAt: 'a') equals: 1.\x0a\x09self assert: (o basicAt: 'b') equals: nil", messageSends: ["new", "basicAt:put:", "assert:equals:", "basicAt:"], referencedClasses: ["Object"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testBasicPerform", category: 'tests', fn: function (){ var self=this; var o; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; o=_st($Object())._new(); $1=_st(o)._basicAt_put_("func",(function(){ return smalltalk.withContext(function($ctx2) { return "hello"; }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); $ctx1.sendIdx["basicAt:put:"]=1; $2=_st(o)._basicAt_put_("func2",(function(a){ return smalltalk.withContext(function($ctx2) { return _st(a).__plus((1)); }, function($ctx2) {$ctx2.fillBlock({a:a},$ctx1,2)})})); $3=self._assert_equals_(_st(o)._basicPerform_("func"),"hello"); $ctx1.sendIdx["assert:equals:"]=1; $4=self._assert_equals_(_st(o)._basicPerform_withArguments_("func2",[(3)]),(4)); return self}, function($ctx1) {$ctx1.fill(self,"testBasicPerform",{o:o},smalltalk.ObjectTest)})}, args: [], source: "testBasicPerform\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09o basicAt: 'func' put: ['hello'].\x0a\x09o basicAt: 'func2' put: [:a | a + 1].\x0a\x0a\x09self assert: (o basicPerform: 'func') equals: 'hello'.\x0a\x09self assert: (o basicPerform: 'func2' withArguments: #(3)) equals: 4", messageSends: ["new", "basicAt:put:", "+", "assert:equals:", "basicPerform:", "basicPerform:withArguments:"], referencedClasses: ["Object"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testDNU", category: 'tests', fn: function (){ var self=this; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(_st($Object())._new())._foo(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$MessageNotUnderstood()); return self}, function($ctx1) {$ctx1.fill(self,"testDNU",{},smalltalk.ObjectTest)})}, args: [], source: "testDNU\x0a\x09self should: [Object new foo] raise: MessageNotUnderstood", messageSends: ["should:raise:", "foo", "new"], referencedClasses: ["Object", "MessageNotUnderstood"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testEquality", category: 'tests', fn: function (){ var self=this; var o; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1,$5,$4,$8,$7,$6,$11,$12,$10,$9; o=_st($Object())._new(); $ctx1.sendIdx["new"]=1; $2=o; $3=_st($Object())._new(); $1=_st($2).__eq($3); $ctx1.sendIdx["="]=1; self._deny_($1); $5=_st(o).__eq(o); $ctx1.sendIdx["="]=2; $4=self._assert_($5); $ctx1.sendIdx["assert:"]=1; $8=_st(o)._yourself(); $ctx1.sendIdx["yourself"]=1; $7=_st($8).__eq(o); $ctx1.sendIdx["="]=3; $6=self._assert_($7); $ctx1.sendIdx["assert:"]=2; $11=o; $12=_st(o)._yourself(); $10=_st($11).__eq($12); $9=self._assert_($10); return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{o:o},smalltalk.ObjectTest)})}, args: [], source: "testEquality\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09self deny: o = Object new.\x0a\x09self assert: (o = o).\x0a\x09self assert: (o yourself = o).\x0a\x09self assert: (o = o yourself)", messageSends: ["new", "deny:", "=", "assert:", "yourself"], referencedClasses: ["Object"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testHalt", category: 'tests', fn: function (){ var self=this; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(_st($Object())._new())._halt(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testHalt",{},smalltalk.ObjectTest)})}, args: [], source: "testHalt\x0a\x09self should: [Object new halt] raise: Error", messageSends: ["should:raise:", "halt", "new"], referencedClasses: ["Object", "Error"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testIdentity", category: 'tests', fn: function (){ var self=this; var o; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1,$5,$4,$8,$7,$6,$11,$12,$10,$9; o=_st($Object())._new(); $ctx1.sendIdx["new"]=1; $2=o; $3=_st($Object())._new(); $1=_st($2).__eq_eq($3); $ctx1.sendIdx["=="]=1; self._deny_($1); $5=_st(o).__eq_eq(o); $ctx1.sendIdx["=="]=2; $4=self._assert_($5); $ctx1.sendIdx["assert:"]=1; $8=_st(o)._yourself(); $ctx1.sendIdx["yourself"]=1; $7=_st($8).__eq_eq(o); $ctx1.sendIdx["=="]=3; $6=self._assert_($7); $ctx1.sendIdx["assert:"]=2; $11=o; $12=_st(o)._yourself(); $10=_st($11).__eq_eq($12); $9=self._assert_($10); return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{o:o},smalltalk.ObjectTest)})}, args: [], source: "testIdentity\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09self deny: o == Object new.\x0a\x09self assert: o == o.\x0a\x09self assert: o yourself == o.\x0a\x09self assert: o == o yourself", messageSends: ["new", "deny:", "==", "assert:", "yourself"], referencedClasses: ["Object"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfNil", category: 'tests', fn: function (){ var self=this; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$7,$6,$5,$4,$10,$9,$8,$13,$12,$11,$16,$15,$14; $3=_st($Object())._new(); $ctx1.sendIdx["new"]=1; $2=_st($3)._isNil(); $1=self._deny_($2); $ctx1.sendIdx["deny:"]=1; $7=_st($Object())._new(); $ctx1.sendIdx["new"]=2; if(($receiver = $7) == nil || $receiver == null){ $6=true; } else { $6=$7; }; $5=_st($6).__eq(true); $4=self._deny_($5); $10=_st($Object())._new(); $ctx1.sendIdx["new"]=3; if(($receiver = $10) == nil || $receiver == null){ $9=$10; } else { $9=true; }; $8=self._assert_equals_($9,true); $ctx1.sendIdx["assert:equals:"]=1; $13=_st($Object())._new(); $ctx1.sendIdx["new"]=4; if(($receiver = $13) == nil || $receiver == null){ $12=false; } else { $12=true; }; $11=self._assert_equals_($12,true); $ctx1.sendIdx["assert:equals:"]=2; $16=_st($Object())._new(); if(($receiver = $16) == nil || $receiver == null){ $15=false; } else { $15=true; }; $14=self._assert_equals_($15,true); return self}, function($ctx1) {$ctx1.fill(self,"testIfNil",{},smalltalk.ObjectTest)})}, args: [], source: "testIfNil\x0a\x09self deny: Object new isNil.\x0a\x09self deny: (Object new ifNil: [true]) = true.\x0a\x09self assert: (Object new ifNotNil: [true]) equals: true.\x0a\x0a\x09self assert: (Object new ifNil: [false] ifNotNil: [true]) equals: true.\x0a\x09self assert: (Object new ifNotNil: [true] ifNil: [false]) equals: true", messageSends: ["deny:", "isNil", "new", "=", "ifNil:", "assert:equals:", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"], referencedClasses: ["Object"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testInstVars", category: 'tests', fn: function (){ var self=this; var o; function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)} return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5; o=_st($ObjectMock())._new(); $2=_st(o)._instVarAt_("foo"); $ctx1.sendIdx["instVarAt:"]=1; $1=self._assert_equals_($2,nil); $ctx1.sendIdx["assert:equals:"]=1; _st(o)._instVarAt_put_("foo",(1)); $4=_st(o)._instVarAt_("foo"); $ctx1.sendIdx["instVarAt:"]=2; $3=self._assert_equals_($4,(1)); $ctx1.sendIdx["assert:equals:"]=2; $6=_st(o)._instVarAt_("foo"); $5=self._assert_equals_($6,(1)); return self}, function($ctx1) {$ctx1.fill(self,"testInstVars",{o:o},smalltalk.ObjectTest)})}, args: [], source: "testInstVars\x0a\x09| o |\x0a\x09o := ObjectMock new.\x0a\x09self assert: (o instVarAt: #foo) equals: nil.\x0a\x0a\x09o instVarAt: #foo put: 1.\x0a\x09self assert: (o instVarAt: #foo) equals: 1.\x0a\x09self assert: (o instVarAt: 'foo') equals: 1", messageSends: ["new", "assert:equals:", "instVarAt:", "instVarAt:put:"], referencedClasses: ["ObjectMock"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testNilUndefined", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(self._notDefined(),nil); return self}, function($ctx1) {$ctx1.fill(self,"testNilUndefined",{},smalltalk.ObjectTest)})}, args: [], source: "testNilUndefined\x0a\x09\x22nil in Smalltalk is the undefined object in JS\x22\x0a\x0a\x09self assert: self notDefined equals: nil", messageSends: ["assert:equals:", "notDefined"], referencedClasses: [] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testYourself", category: 'tests', fn: function (){ var self=this; var o; function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)} return smalltalk.withContext(function($ctx1) { o=_st($ObjectMock())._new(); self._assert_(_st(_st(o)._yourself()).__eq_eq(o)); return self}, function($ctx1) {$ctx1.fill(self,"testYourself",{o:o},smalltalk.ObjectTest)})}, args: [], source: "testYourself\x0a\x09| o |\x0a\x09o := ObjectMock new.\x0a\x09self assert: o yourself == o", messageSends: ["new", "assert:", "==", "yourself"], referencedClasses: ["ObjectMock"] }), smalltalk.ObjectTest); smalltalk.addMethod( smalltalk.method({ selector: "testidentityHash", category: 'tests', fn: function (){ var self=this; var o1,o2; function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)} return smalltalk.withContext(function($ctx1) { var $2,$3,$1,$5,$6,$4; o1=_st($Object())._new(); $ctx1.sendIdx["new"]=1; o2=_st($Object())._new(); $2=_st(o1)._identityHash(); $ctx1.sendIdx["identityHash"]=1; $3=_st(o1)._identityHash(); $ctx1.sendIdx["identityHash"]=2; $1=_st($2).__eq_eq($3); $ctx1.sendIdx["=="]=1; self._assert_($1); $5=_st(o1)._identityHash(); $ctx1.sendIdx["identityHash"]=3; $6=_st(o2)._identityHash(); $4=_st($5).__eq_eq($6); self._deny_($4); return self}, function($ctx1) {$ctx1.fill(self,"testidentityHash",{o1:o1,o2:o2},smalltalk.ObjectTest)})}, args: [], source: "testidentityHash\x0a\x09| o1 o2 |\x0a\x09\x0a\x09o1 := Object new.\x0a\x09o2 := Object new.\x0a\x0a\x09self assert: o1 identityHash == o1 identityHash.\x0a\x09self deny: o1 identityHash == o2 identityHash", messageSends: ["new", "assert:", "==", "identityHash", "deny:"], referencedClasses: ["Object"] }), smalltalk.ObjectTest); smalltalk.addClass('PointTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testAccessing", category: 'tests', fn: function (){ var self=this; function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)} return smalltalk.withContext(function($ctx1) { var $3,$2,$1,$6,$5,$4,$10,$9,$8,$7,$14,$13,$12,$11; $3=_st($Point())._x_y_((3),(4)); $ctx1.sendIdx["x:y:"]=1; $2=_st($3)._x(); $ctx1.sendIdx["x"]=1; $1=self._assert_equals_($2,(3)); $ctx1.sendIdx["assert:equals:"]=1; $6=_st($Point())._x_y_((3),(4)); $5=_st($6)._y(); $ctx1.sendIdx["y"]=1; $4=self._assert_equals_($5,(4)); $ctx1.sendIdx["assert:equals:"]=2; $10=_st($Point())._new(); $ctx1.sendIdx["new"]=1; $9=_st($10)._x_((3)); $8=_st($9)._x(); $7=self._assert_equals_($8,(3)); $ctx1.sendIdx["assert:equals:"]=3; $14=_st($Point())._new(); $13=_st($14)._y_((4)); $12=_st($13)._y(); $11=self._assert_equals_($12,(4)); return self}, function($ctx1) {$ctx1.fill(self,"testAccessing",{},smalltalk.PointTest)})}, args: [], source: "testAccessing\x0a\x09self assert: (Point x: 3 y: 4) x equals: 3.\x0a\x09self assert: (Point x: 3 y: 4) y equals: 4.\x0a\x09self assert: (Point new x: 3) x equals: 3.\x0a\x09self assert: (Point new y: 4) y equals: 4", messageSends: ["assert:equals:", "x", "x:y:", "y", "x:", "new", "y:"], referencedClasses: ["Point"] }), smalltalk.PointTest); smalltalk.addMethod( smalltalk.method({ selector: "testArithmetic", category: 'tests', fn: function (){ var self=this; function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)} return smalltalk.withContext(function($ctx1) { var $3,$4,$2,$5,$1,$8,$9,$7,$10,$6,$13,$14,$12,$15,$11,$18,$19,$17,$20,$16; $3=(3).__at((4)); $ctx1.sendIdx["@"]=1; $4=(3).__at((4)); $ctx1.sendIdx["@"]=2; $2=_st($3).__star($4); $5=_st($Point())._x_y_((9),(16)); $ctx1.sendIdx["x:y:"]=1; $1=self._assert_equals_($2,$5); $ctx1.sendIdx["assert:equals:"]=1; $8=(3).__at((4)); $ctx1.sendIdx["@"]=3; $9=(3).__at((4)); $ctx1.sendIdx["@"]=4; $7=_st($8).__plus($9); $10=_st($Point())._x_y_((6),(8)); $ctx1.sendIdx["x:y:"]=2; $6=self._assert_equals_($7,$10); $ctx1.sendIdx["assert:equals:"]=2; $13=(3).__at((4)); $ctx1.sendIdx["@"]=5; $14=(3).__at((4)); $ctx1.sendIdx["@"]=6; $12=_st($13).__minus($14); $15=_st($Point())._x_y_((0),(0)); $ctx1.sendIdx["x:y:"]=3; $11=self._assert_equals_($12,$15); $ctx1.sendIdx["assert:equals:"]=3; $18=(6).__at((8)); $ctx1.sendIdx["@"]=7; $19=(3).__at((4)); $17=_st($18).__slash($19); $20=_st($Point())._x_y_((2),(2)); $16=self._assert_equals_($17,$20); return self}, function($ctx1) {$ctx1.fill(self,"testArithmetic",{},smalltalk.PointTest)})}, args: [], source: "testArithmetic\x0a\x09self assert: 3@4 * (3@4 ) equals: (Point x: 9 y: 16).\x0a\x09self assert: 3@4 + (3@4 ) equals: (Point x: 6 y: 8).\x0a\x09self assert: 3@4 - (3@4 ) equals: (Point x: 0 y: 0).\x0a\x09self assert: 6@8 / (3@4 ) equals: (Point x: 2 y: 2)", messageSends: ["assert:equals:", "*", "@", "x:y:", "+", "-", "/"], referencedClasses: ["Point"] }), smalltalk.PointTest); smalltalk.addMethod( smalltalk.method({ selector: "testAt", category: 'tests', fn: function (){ var self=this; function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)} return smalltalk.withContext(function($ctx1) { self._assert_equals_((3).__at((4)),_st($Point())._x_y_((3),(4))); return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.PointTest)})}, args: [], source: "testAt\x0a\x09self assert: 3@4 equals: (Point x: 3 y: 4)", messageSends: ["assert:equals:", "@", "x:y:"], referencedClasses: ["Point"] }), smalltalk.PointTest); smalltalk.addMethod( smalltalk.method({ selector: "testEgality", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1,$5,$6,$4; $2=(3).__at((4)); $ctx1.sendIdx["@"]=1; $3=(3).__at((4)); $ctx1.sendIdx["@"]=2; $1=_st($2).__eq($3); $ctx1.sendIdx["="]=1; self._assert_($1); $5=(3).__at((5)); $ctx1.sendIdx["@"]=3; $6=(3).__at((6)); $4=_st($5).__eq($6); self._deny_($4); return self}, function($ctx1) {$ctx1.fill(self,"testEgality",{},smalltalk.PointTest)})}, args: [], source: "testEgality\x0a\x09self assert: (3@4 = (3@4)).\x0a\x09self deny: 3@5 = (3@6)", messageSends: ["assert:", "=", "@", "deny:"], referencedClasses: [] }), smalltalk.PointTest); smalltalk.addMethod( smalltalk.method({ selector: "testNew", category: 'tests', fn: function (){ var self=this; function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)} return smalltalk.withContext(function($ctx1) { var $4,$3,$2,$1,$9,$8,$7,$6,$5,$13,$12,$11,$10,$18,$17,$16,$15,$14; $4=_st($Point())._new(); $ctx1.sendIdx["new"]=1; $3=_st($4)._x_((3)); $ctx1.sendIdx["x:"]=1; $2=_st($3)._y(); $ctx1.sendIdx["y"]=1; $1=self._assert_equals_($2,nil); $ctx1.sendIdx["assert:equals:"]=1; $9=_st($Point())._new(); $ctx1.sendIdx["new"]=2; $8=_st($9)._x_((3)); $7=_st($8)._x(); $ctx1.sendIdx["x"]=1; $6=_st($7).__eq((0)); $ctx1.sendIdx["="]=1; $5=self._deny_($6); $ctx1.sendIdx["deny:"]=1; $13=_st($Point())._new(); $ctx1.sendIdx["new"]=3; $12=_st($13)._y_((4)); $ctx1.sendIdx["y:"]=1; $11=_st($12)._x(); $10=self._assert_equals_($11,nil); $18=_st($Point())._new(); $17=_st($18)._y_((4)); $16=_st($17)._y(); $15=_st($16).__eq((0)); $14=self._deny_($15); return self}, function($ctx1) {$ctx1.fill(self,"testNew",{},smalltalk.PointTest)})}, args: [], source: "testNew\x0a\x0a\x09self assert: (Point new x: 3) y equals: nil.\x0a\x09self deny: (Point new x: 3) x = 0.\x0a\x09self assert: (Point new y: 4) x equals: nil.\x0a\x09self deny: (Point new y: 4) y = 0", messageSends: ["assert:equals:", "y", "x:", "new", "deny:", "=", "x", "y:"], referencedClasses: ["Point"] }), smalltalk.PointTest); smalltalk.addMethod( smalltalk.method({ selector: "testTranslateBy", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $3,$4,$2,$5,$1,$8,$10,$9,$7,$11,$6,$14,$15,$13,$16,$12,$19,$21,$20,$18,$22,$17; $3=(3).__at((3)); $ctx1.sendIdx["@"]=1; $4=(0).__at((1)); $ctx1.sendIdx["@"]=2; $2=_st($3)._translateBy_($4); $ctx1.sendIdx["translateBy:"]=1; $5=(3).__at((4)); $ctx1.sendIdx["@"]=3; $1=self._assert_equals_($2,$5); $ctx1.sendIdx["assert:equals:"]=1; $8=(3).__at((3)); $ctx1.sendIdx["@"]=4; $10=(1)._negated(); $ctx1.sendIdx["negated"]=1; $9=(0).__at($10); $ctx1.sendIdx["@"]=5; $7=_st($8)._translateBy_($9); $ctx1.sendIdx["translateBy:"]=2; $11=(3).__at((2)); $ctx1.sendIdx["@"]=6; $6=self._assert_equals_($7,$11); $ctx1.sendIdx["assert:equals:"]=2; $14=(3).__at((3)); $ctx1.sendIdx["@"]=7; $15=(2).__at((3)); $ctx1.sendIdx["@"]=8; $13=_st($14)._translateBy_($15); $ctx1.sendIdx["translateBy:"]=3; $16=(5).__at((6)); $ctx1.sendIdx["@"]=9; $12=self._assert_equals_($13,$16); $ctx1.sendIdx["assert:equals:"]=3; $19=(3).__at((3)); $ctx1.sendIdx["@"]=10; $21=(3)._negated(); $20=_st($21).__at((0)); $ctx1.sendIdx["@"]=11; $18=_st($19)._translateBy_($20); $22=(0).__at((3)); $17=self._assert_equals_($18,$22); return self}, function($ctx1) {$ctx1.fill(self,"testTranslateBy",{},smalltalk.PointTest)})}, args: [], source: "testTranslateBy\x0a\x09self assert: (3@3 translateBy: 0@1) equals: 3@4.\x0a\x09self assert: (3@3 translateBy: 0@1 negated) equals: 3@2.\x0a\x09self assert: (3@3 translateBy: 2@3) equals: 5@6.\x0a\x09self assert: (3@3 translateBy: 3 negated @0) equals: 0@3.", messageSends: ["assert:equals:", "translateBy:", "@", "negated"], referencedClasses: [] }), smalltalk.PointTest); smalltalk.addClass('QueueTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testNextIfAbsent", category: 'tests', fn: function (){ var self=this; var queue; function $Queue(){return smalltalk.Queue||(typeof Queue=="undefined"?nil:Queue)} return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; queue=_st($Queue())._new(); _st(queue)._nextPut_("index1"); $2=_st(queue)._nextIfAbsent_("empty"); $ctx1.sendIdx["nextIfAbsent:"]=1; $1=_st($2).__eq("index1"); $ctx1.sendIdx["="]=1; self._assert_($1); $4=_st(queue)._nextIfAbsent_("empty"); $3=_st($4).__eq("index1"); self._deny_($3); return self}, function($ctx1) {$ctx1.fill(self,"testNextIfAbsent",{queue:queue},smalltalk.QueueTest)})}, args: [], source: "testNextIfAbsent\x0a\x09| queue |\x0a\x09queue := Queue new.\x0a\x09queue nextPut: 'index1'. \x0a\x0a\x09self assert: (queue nextIfAbsent: 'empty') = 'index1'.\x0a\x09self deny: (queue nextIfAbsent: 'empty') = 'index1'", messageSends: ["new", "nextPut:", "assert:", "=", "nextIfAbsent:", "deny:"], referencedClasses: ["Queue"] }), smalltalk.QueueTest); smalltalk.addMethod( smalltalk.method({ selector: "testQueueNext", category: 'tests', fn: function (){ var self=this; var queue; function $Queue(){return smalltalk.Queue||(typeof Queue=="undefined"?nil:Queue)} function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { var $1,$2,$4,$3,$6,$5; queue=_st($Queue())._new(); $1=queue; _st($1)._nextPut_("index1"); $ctx1.sendIdx["nextPut:"]=1; $2=_st($1)._nextPut_("index2"); $4=_st(queue)._next(); $ctx1.sendIdx["next"]=1; $3=_st($4).__eq("index1"); $ctx1.sendIdx["="]=1; self._assert_($3); $6=_st(queue)._next(); $ctx1.sendIdx["next"]=2; $5=_st($6).__eq("index"); self._deny_($5); self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(queue)._next(); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testQueueNext",{queue:queue},smalltalk.QueueTest)})}, args: [], source: "testQueueNext\x0a\x09| queue | \x0a\x09queue := Queue new.\x0a\x09queue \x0a\x09\x09nextPut: 'index1';\x0a\x09\x09nextPut: 'index2'.\x0a\x0a\x09self assert: queue next = 'index1'.\x0a\x09self deny: queue next = 'index'.\x0a\x09self should: [ queue next ] raise: Error", messageSends: ["new", "nextPut:", "assert:", "=", "next", "deny:", "should:raise:"], referencedClasses: ["Queue", "Error"] }), smalltalk.QueueTest); smalltalk.addClass('RandomTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testAtRandomNumber", category: 'tests', fn: function (){ var self=this; var val; return smalltalk.withContext(function($ctx1) { (100)._timesRepeat_((function(){ return smalltalk.withContext(function($ctx2) { val=(10)._atRandom(); val; self._assert_(_st(val).__gt((0))); return self._assert_(_st(val).__lt((11))); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); return self}, function($ctx1) {$ctx1.fill(self,"testAtRandomNumber",{val:val},smalltalk.RandomTest)})}, args: [], source: "testAtRandomNumber\x0a\x09|val|\x09\x0a\x0a\x09100 timesRepeat: [\x0a\x09\x09val := 10 atRandom.\x09\x0a\x09\x09self assert: (val > 0).\x0a\x09\x09self assert: (val <11)\x0a\x09]", messageSends: ["timesRepeat:", "atRandom", "assert:", ">", "<"], referencedClasses: [] }), smalltalk.RandomTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtRandomSequenceableCollection", category: 'tests', fn: function (){ var self=this; var val; return smalltalk.withContext(function($ctx1) { (100)._timesRepeat_((function(){ return smalltalk.withContext(function($ctx2) { val="abc"._atRandom(); val; return self._assert_(_st(_st(_st(val).__eq("a")).__or(_st(val).__eq("b"))).__or(_st(val).__eq("c"))); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})})); return self}, function($ctx1) {$ctx1.fill(self,"testAtRandomSequenceableCollection",{val:val},smalltalk.RandomTest)})}, args: [], source: "testAtRandomSequenceableCollection\x0a\x09|val|\x0a\x09\x0a\x09100 timesRepeat: [\x0a\x09\x09val := 'abc' atRandom.\x0a\x09\x09self assert: ((val = 'a') | (val = 'b') | (val = 'c' )).\x0a\x09].", messageSends: ["timesRepeat:", "atRandom", "assert:", "|", "="], referencedClasses: [] }), smalltalk.RandomTest); smalltalk.addMethod( smalltalk.method({ selector: "textNext", category: 'tests', fn: function (){ var self=this; function $Random(){return smalltalk.Random||(typeof Random=="undefined"?nil:Random)} return smalltalk.withContext(function($ctx1) { var $1; (10000)._timesRepeat_((function(){ var current,next; return smalltalk.withContext(function($ctx2) { next=_st(_st($Random())._new())._next(); next; self._assert_(_st(next).__gt_eq((0))); $ctx2.sendIdx["assert:"]=1; self._assert_(_st(next).__lt((1))); $1=_st(current).__eq(next); $ctx2.sendIdx["="]=1; self._deny_($1); return _st(next).__eq(current); }, function($ctx2) {$ctx2.fillBlock({current:current,next:next},$ctx1,1)})})); return self}, function($ctx1) {$ctx1.fill(self,"textNext",{},smalltalk.RandomTest)})}, args: [], source: "textNext\x0a\x0a\x0910000 timesRepeat: [\x0a\x09\x09\x09| current next |\x0a\x09\x09\x09next := Random new next.\x0a\x09\x09\x09self assert: (next >= 0).\x0a\x09\x09\x09self assert: (next < 1).\x0a\x09\x09\x09self deny: current = next.\x0a\x09\x09\x09next = current]", messageSends: ["timesRepeat:", "next", "new", "assert:", ">=", "<", "deny:", "="], referencedClasses: ["Random"] }), smalltalk.RandomTest); smalltalk.addClass('SetTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testAddRemove", category: 'tests', fn: function (){ var self=this; var set; function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)} return smalltalk.withContext(function($ctx1) { var $1,$2,$4,$3,$5,$7,$6,$8; set=_st($Set())._new(); $1=self._assert_(_st(set)._isEmpty()); $ctx1.sendIdx["assert:"]=1; $2=_st(set)._add_((3)); $ctx1.sendIdx["add:"]=1; $4=_st(set)._includes_((3)); $ctx1.sendIdx["includes:"]=1; $3=self._assert_($4); $ctx1.sendIdx["assert:"]=2; $5=_st(set)._add_((5)); $7=_st(set)._includes_((5)); $ctx1.sendIdx["includes:"]=2; $6=self._assert_($7); _st(set)._remove_((3)); $8=_st(set)._includes_((3)); self._deny_($8); return self}, function($ctx1) {$ctx1.fill(self,"testAddRemove",{set:set},smalltalk.SetTest)})}, args: [], source: "testAddRemove\x0a\x09| set |\x0a\x09set := Set new.\x0a\x09\x0a\x09self assert: set isEmpty.\x0a\x0a\x09set add: 3.\x0a\x09self assert: (set includes: 3).\x0a\x0a\x09set add: 5.\x0a\x09self assert: (set includes: 5).\x0a\x0a\x09set remove: 3.\x0a\x09self deny: (set includes: 3)", messageSends: ["new", "assert:", "isEmpty", "add:", "includes:", "remove:", "deny:"], referencedClasses: ["Set"] }), smalltalk.SetTest); smalltalk.addMethod( smalltalk.method({ selector: "testAt", category: 'tests', fn: function (){ var self=this; function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)} function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)} return smalltalk.withContext(function($ctx1) { self._should_raise_((function(){ return smalltalk.withContext(function($ctx2) { return _st(_st($Set())._new())._at_put_((1),(2)); }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}),$Error()); return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.SetTest)})}, args: [], source: "testAt\x0a\x09self should: [Set new at: 1 put: 2] raise: Error", messageSends: ["should:raise:", "at:put:", "new"], referencedClasses: ["Set", "Error"] }), smalltalk.SetTest); smalltalk.addMethod( smalltalk.method({ selector: "testCollect", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$3; $2=[(5), (6), (8)]._asSet(); $ctx1.sendIdx["asSet"]=1; $1=_st($2)._collect_((function(x){ return smalltalk.withContext(function($ctx2) { return _st(x).__backslash_backslash((3)); }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1,1)})})); $3=[(0), (2)]._asSet(); self._assert_equals_($1,$3); return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{},smalltalk.SetTest)})}, args: [], source: "testCollect\x0a\x09self assert: (#(5 6 8) asSet collect: [ :x | x \x5c\x5c 3 ]) equals: #(0 2) asSet", messageSends: ["assert:equals:", "collect:", "asSet", "\x5c\x5c"], referencedClasses: [] }), smalltalk.SetTest); smalltalk.addMethod( smalltalk.method({ selector: "testComparing", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$3,$1,$5,$6,$4,$9,$10,$8,$7,$13,$14,$12,$11; $2=[(0), (2)]._asSet(); $ctx1.sendIdx["asSet"]=1; $3=[(0), (2)]._asSet(); $ctx1.sendIdx["asSet"]=2; $1=self._assert_equals_($2,$3); $ctx1.sendIdx["assert:equals:"]=1; $5=[(2), (0)]._asSet(); $ctx1.sendIdx["asSet"]=3; $6=[(0), (2)]._asSet(); $ctx1.sendIdx["asSet"]=4; $4=self._assert_equals_($5,$6); $9=[(0), (2), (3)]._asSet(); $ctx1.sendIdx["asSet"]=5; $10=[(0), (2)]._asSet(); $ctx1.sendIdx["asSet"]=6; $8=_st($9).__eq($10); $ctx1.sendIdx["="]=1; $7=self._deny_($8); $ctx1.sendIdx["deny:"]=1; $13=[(1), (2)]._asSet(); $ctx1.sendIdx["asSet"]=7; $14=[(0), (2)]._asSet(); $12=_st($13).__eq($14); $11=self._deny_($12); return self}, function($ctx1) {$ctx1.fill(self,"testComparing",{},smalltalk.SetTest)})}, args: [], source: "testComparing\x0a\x09self assert: #(0 2) asSet equals: #(0 2) asSet.\x0a\x09self assert: #(2 0) asSet equals: #(0 2) asSet.\x0a\x09self deny: #(0 2 3) asSet = #(0 2) asSet.\x0a\x09self deny: #(1 2) asSet = #(0 2) asSet", messageSends: ["assert:equals:", "asSet", "deny:", "="], referencedClasses: [] }), smalltalk.SetTest); smalltalk.addMethod( smalltalk.method({ selector: "testPrintString", category: 'tests', fn: function (){ var self=this; var set; function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)} return smalltalk.withContext(function($ctx1) { var $2,$1,$3,$4,$6,$5,$7,$9,$8,$10,$11,$13,$12,$14,$16,$15,$17,$19,$18; set=_st($Set())._new(); $2=_st(set)._printString(); $ctx1.sendIdx["printString"]=1; $1=self._assert_equals_($2,"a Set ()"); $ctx1.sendIdx["assert:equals:"]=1; $3=set; _st($3)._add_((1)); $ctx1.sendIdx["add:"]=1; $4=_st($3)._add_((3)); $ctx1.sendIdx["add:"]=2; $6=_st(set)._printString(); $ctx1.sendIdx["printString"]=2; $5=self._assert_equals_($6,"a Set (1 3)"); $ctx1.sendIdx["assert:equals:"]=2; $7=_st(set)._add_("foo"); $ctx1.sendIdx["add:"]=3; $9=_st(set)._printString(); $ctx1.sendIdx["printString"]=3; $8=self._assert_equals_($9,"a Set (1 3 'foo')"); $ctx1.sendIdx["assert:equals:"]=3; $10=set; _st($10)._remove_((1)); $ctx1.sendIdx["remove:"]=1; $11=_st($10)._remove_((3)); $13=_st(set)._printString(); $ctx1.sendIdx["printString"]=4; $12=self._assert_equals_($13,"a Set ('foo')"); $ctx1.sendIdx["assert:equals:"]=4; $14=_st(set)._add_((3)); $ctx1.sendIdx["add:"]=4; $16=_st(set)._printString(); $ctx1.sendIdx["printString"]=5; $15=self._assert_equals_($16,"a Set ('foo' 3)"); $ctx1.sendIdx["assert:equals:"]=5; $17=_st(set)._add_((3)); $19=_st(set)._printString(); $18=self._assert_equals_($19,"a Set ('foo' 3)"); return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{set:set},smalltalk.SetTest)})}, args: [], source: "testPrintString\x0a\x09| set |\x0a\x09set := Set new.\x0a\x09self assert: set printString equals: 'a Set ()'.\x0a\x09set add: 1; add: 3.\x0a\x09self assert: set printString equals: 'a Set (1 3)'.\x0a\x09set add: 'foo'.\x0a\x09self assert: set printString equals: 'a Set (1 3 ''foo'')'.\x0a\x09set remove: 1; remove: 3.\x0a\x09self assert: set printString equals: 'a Set (''foo'')'.\x0a\x09set add: 3.\x0a\x09self assert: set printString equals: 'a Set (''foo'' 3)'.\x0a\x09set add: 3.\x0a\x09self assert: set printString equals: 'a Set (''foo'' 3)'", messageSends: ["new", "assert:equals:", "printString", "add:", "remove:"], referencedClasses: ["Set"] }), smalltalk.SetTest); smalltalk.addMethod( smalltalk.method({ selector: "testSize", category: 'tests', fn: function (){ var self=this; function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)} return smalltalk.withContext(function($ctx1) { var $2,$1,$5,$4,$3,$8,$7,$6; $2=_st(_st($Set())._new())._size(); $ctx1.sendIdx["size"]=1; $1=self._assert_equals_($2,(0)); $ctx1.sendIdx["assert:equals:"]=1; $5=_st($Set())._withAll_([(1), (2), (3), (4)]); $ctx1.sendIdx["withAll:"]=1; $4=_st($5)._size(); $ctx1.sendIdx["size"]=2; $3=self._assert_equals_($4,(4)); $ctx1.sendIdx["assert:equals:"]=2; $8=_st($Set())._withAll_([(1), (1), (1), (1)]); $7=_st($8)._size(); $6=self._assert_equals_($7,(1)); return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.SetTest)})}, args: [], source: "testSize\x0a\x09self assert: Set new size equals: 0.\x0a\x09self assert: (Set withAll: #(1 2 3 4)) size equals: 4.\x0a\x09self assert: (Set withAll: #(1 1 1 1)) size equals: 1", messageSends: ["assert:equals:", "size", "new", "withAll:"], referencedClasses: ["Set"] }), smalltalk.SetTest); smalltalk.addMethod( smalltalk.method({ selector: "testUnboxedObjects", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $4,$5,$3,$2,$1; $4="foo"._yourself(); $ctx1.sendIdx["yourself"]=1; $5="foo"._yourself(); $3=[$4,$5]; $2=_st($3)._asSet(); $1=_st($2)._asArray(); self._assert_equals_($1,["foo"]); return self}, function($ctx1) {$ctx1.fill(self,"testUnboxedObjects",{},smalltalk.SetTest)})}, args: [], source: "testUnboxedObjects\x0a\x09self assert: {'foo' yourself. 'foo' yourself} asSet asArray equals: #('foo')", messageSends: ["assert:equals:", "asArray", "asSet", "yourself"], referencedClasses: [] }), smalltalk.SetTest); smalltalk.addMethod( smalltalk.method({ selector: "testUnicity", category: 'tests', fn: function (){ var self=this; var set; function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)} return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$5,$4,$6,$8,$7,$9; set=_st($Set())._new(); $1=_st(set)._add_((21)); $ctx1.sendIdx["add:"]=1; $2=_st(set)._add_("hello"); $ctx1.sendIdx["add:"]=2; $3=_st(set)._add_((21)); $ctx1.sendIdx["add:"]=3; $5=_st(set)._size(); $ctx1.sendIdx["size"]=1; $4=self._assert_equals_($5,(2)); $ctx1.sendIdx["assert:equals:"]=1; $6=_st(set)._add_("hello"); $8=_st(set)._size(); $7=self._assert_equals_($8,(2)); $ctx1.sendIdx["assert:equals:"]=2; $9=self._assert_equals_(_st(set)._asArray(),[(21), "hello"]); return self}, function($ctx1) {$ctx1.fill(self,"testUnicity",{set:set},smalltalk.SetTest)})}, args: [], source: "testUnicity\x0a\x09| set |\x0a\x09set := Set new.\x0a\x09set add: 21.\x0a\x09set add: 'hello'.\x0a\x0a\x09set add: 21.\x0a\x09self assert: set size equals: 2.\x0a\x09\x0a\x09set add: 'hello'.\x0a\x09self assert: set size equals: 2.\x0a\x0a\x09self assert: set asArray equals: #(21 'hello')", messageSends: ["new", "add:", "assert:equals:", "size", "asArray"], referencedClasses: ["Set"] }), smalltalk.SetTest); smalltalk.addClass('StreamTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self._class())._collectionClass(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StreamTest)})}, args: [], source: "collectionClass\x0a\x09^ self class collectionClass", messageSends: ["collectionClass", "class"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "newCollection", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self._collectionClass())._new(); return $1; }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.StreamTest)})}, args: [], source: "newCollection\x0a\x09^ self collectionClass new", messageSends: ["new", "collectionClass"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "newStream", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(_st(self._collectionClass())._new())._stream(); return $1; }, function($ctx1) {$ctx1.fill(self,"newStream",{},smalltalk.StreamTest)})}, args: [], source: "newStream\x0a\x09^ self collectionClass new stream", messageSends: ["stream", "new", "collectionClass"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testAtStartAtEnd", category: 'tests', fn: function (){ var self=this; var stream; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$6,$5,$8,$7,$10,$9,$12,$11; stream=self._newStream(); $2=_st(stream)._atStart(); $ctx1.sendIdx["atStart"]=1; $1=self._assert_($2); $ctx1.sendIdx["assert:"]=1; $4=_st(stream)._atEnd(); $ctx1.sendIdx["atEnd"]=1; $3=self._assert_($4); $ctx1.sendIdx["assert:"]=2; _st(stream)._nextPutAll_(self._newCollection()); $6=_st(stream)._atEnd(); $ctx1.sendIdx["atEnd"]=2; $5=self._assert_($6); $8=_st(stream)._atStart(); $ctx1.sendIdx["atStart"]=2; $7=self._deny_($8); $ctx1.sendIdx["deny:"]=1; _st(stream)._position_((1)); $10=_st(stream)._atEnd(); $9=self._deny_($10); $ctx1.sendIdx["deny:"]=2; $12=_st(stream)._atStart(); $11=self._deny_($12); return self}, function($ctx1) {$ctx1.fill(self,"testAtStartAtEnd",{stream:stream},smalltalk.StreamTest)})}, args: [], source: "testAtStartAtEnd\x0a\x09| stream |\x0a\x09\x0a\x09stream := self newStream.\x0a\x09self assert: stream atStart.\x0a\x09self assert: stream atEnd.\x0a\x09\x0a\x09stream nextPutAll: self newCollection.\x0a\x09self assert: stream atEnd.\x0a\x09self deny: stream atStart.\x0a\x09\x0a\x09stream position: 1.\x0a\x09self deny: stream atEnd.\x0a\x09self deny: stream atStart", messageSends: ["newStream", "assert:", "atStart", "atEnd", "nextPutAll:", "newCollection", "deny:", "position:"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testContents", category: 'tests', fn: function (){ var self=this; var stream; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4; stream=self._newStream(); $1=stream; $2=self._newCollection(); $ctx1.sendIdx["newCollection"]=1; _st($1)._nextPutAll_($2); $3=_st(stream)._contents(); $4=self._newCollection(); self._assert_equals_($3,$4); return self}, function($ctx1) {$ctx1.fill(self,"testContents",{stream:stream},smalltalk.StreamTest)})}, args: [], source: "testContents\x0a\x09| stream |\x0a\x09\x0a\x09stream := self newStream.\x0a\x09stream nextPutAll: self newCollection.\x0a\x09\x0a\x09self assert: stream contents equals: self newCollection", messageSends: ["newStream", "nextPutAll:", "newCollection", "assert:equals:", "contents"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testIsEmpty", category: 'tests', fn: function (){ var self=this; var stream; return smalltalk.withContext(function($ctx1) { var $1,$2; stream=self._newStream(); $1=_st(stream)._isEmpty(); $ctx1.sendIdx["isEmpty"]=1; self._assert_($1); _st(stream)._nextPutAll_(self._newCollection()); $2=_st(stream)._isEmpty(); self._deny_($2); return self}, function($ctx1) {$ctx1.fill(self,"testIsEmpty",{stream:stream},smalltalk.StreamTest)})}, args: [], source: "testIsEmpty\x0a\x09| stream |\x0a\x09\x0a\x09stream := self newStream.\x0a\x09self assert: stream isEmpty.\x0a\x09\x0a\x09stream nextPutAll: self newCollection.\x0a\x09self deny: stream isEmpty", messageSends: ["newStream", "assert:", "isEmpty", "nextPutAll:", "newCollection", "deny:"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testPosition", category: 'tests', fn: function (){ var self=this; var collection,stream; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3,$5,$7,$6,$8,$10,$9; collection=self._newCollection(); stream=self._newStream(); _st(stream)._nextPutAll_(collection); $2=_st(stream)._position(); $ctx1.sendIdx["position"]=1; $1=self._assert_equals_($2,_st(collection)._size()); $ctx1.sendIdx["assert:equals:"]=1; _st(stream)._position_((0)); $4=_st(stream)._position(); $ctx1.sendIdx["position"]=2; $3=self._assert_equals_($4,(0)); $ctx1.sendIdx["assert:equals:"]=2; $5=_st(stream)._next(); $ctx1.sendIdx["next"]=1; $7=_st(stream)._position(); $ctx1.sendIdx["position"]=3; $6=self._assert_equals_($7,(1)); $ctx1.sendIdx["assert:equals:"]=3; $8=_st(stream)._next(); $10=_st(stream)._position(); $9=self._assert_equals_($10,(2)); return self}, function($ctx1) {$ctx1.fill(self,"testPosition",{collection:collection,stream:stream},smalltalk.StreamTest)})}, args: [], source: "testPosition\x0a\x09| collection stream |\x0a\x09\x0a\x09collection := self newCollection.\x0a\x09stream := self newStream.\x0a\x09\x0a\x09stream nextPutAll: collection.\x0a\x09self assert: stream position equals: collection size.\x0a\x09\x0a\x09stream position: 0.\x0a\x09self assert: stream position equals: 0.\x0a\x09\x0a\x09stream next.\x0a\x09self assert: stream position equals: 1.\x0a\x09\x0a\x09stream next.\x0a\x09self assert: stream position equals: 2", messageSends: ["newCollection", "newStream", "nextPutAll:", "assert:equals:", "position", "size", "position:", "next"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testReading", category: 'tests', fn: function (){ var self=this; var stream,collection; return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$5,$4; collection=self._newCollection(); stream=self._newStream(); $1=stream; _st($1)._nextPutAll_(collection); $2=_st($1)._position_((0)); _st(collection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { $3=_st(stream)._next(); $ctx2.sendIdx["next"]=1; return self._assert_equals_($3,each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); $5=_st(stream)._next(); $4=_st($5)._isNil(); self._assert_($4); return self}, function($ctx1) {$ctx1.fill(self,"testReading",{stream:stream,collection:collection},smalltalk.StreamTest)})}, args: [], source: "testReading\x0a\x09| stream collection |\x0a\x09\x0a\x09collection := self newCollection.\x0a\x09stream := self newStream.\x0a\x09\x0a\x09stream \x0a\x09\x09nextPutAll: collection;\x0a\x09\x09position: 0.\x0a\x09\x0a\x09collection do: [ :each |\x0a\x09\x09self assert: stream next equals: each ].\x0a\x09\x09\x0a\x09self assert: stream next isNil", messageSends: ["newCollection", "newStream", "nextPutAll:", "position:", "do:", "assert:equals:", "next", "assert:", "isNil"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testStreamContents", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return self}, function($ctx1) {$ctx1.fill(self,"testStreamContents",{},smalltalk.StreamTest)})}, args: [], source: "testStreamContents", messageSends: [], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testWrite", category: 'tests', fn: function (){ var self=this; var stream,collection; return smalltalk.withContext(function($ctx1) { collection=self._newCollection(); stream=self._newStream(); _st(collection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(stream).__lt_lt(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); self._assert_equals_(_st(stream)._contents(),collection); return self}, function($ctx1) {$ctx1.fill(self,"testWrite",{stream:stream,collection:collection},smalltalk.StreamTest)})}, args: [], source: "testWrite\x0a\x09| stream collection |\x0a\x09\x0a\x09collection := self newCollection.\x0a\x09stream := self newStream.\x0a\x09\x0a\x09collection do: [ :each | stream << each ].\x0a\x09self assert: stream contents equals: collection", messageSends: ["newCollection", "newStream", "do:", "<<", "assert:equals:", "contents"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "testWriting", category: 'tests', fn: function (){ var self=this; var stream,collection; return smalltalk.withContext(function($ctx1) { var $2,$1,$4,$3; collection=self._newCollection(); stream=self._newStream(); $ctx1.sendIdx["newStream"]=1; _st(collection)._do_((function(each){ return smalltalk.withContext(function($ctx2) { return _st(stream)._nextPut_(each); }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})); $2=_st(stream)._contents(); $ctx1.sendIdx["contents"]=1; $1=self._assert_equals_($2,collection); $ctx1.sendIdx["assert:equals:"]=1; stream=self._newStream(); _st(stream)._nextPutAll_(collection); $4=_st(stream)._contents(); $3=self._assert_equals_($4,collection); return self}, function($ctx1) {$ctx1.fill(self,"testWriting",{stream:stream,collection:collection},smalltalk.StreamTest)})}, args: [], source: "testWriting\x0a\x09| stream collection |\x0a\x09\x0a\x09collection := self newCollection.\x0a\x09stream := self newStream.\x0a\x09\x0a\x09collection do: [ :each | stream nextPut: each ].\x0a\x09self assert: stream contents equals: collection.\x0a\x09\x0a\x09stream := self newStream.\x0a\x09stream nextPutAll: collection.\x0a\x09self assert: stream contents equals: collection", messageSends: ["newCollection", "newStream", "do:", "nextPut:", "assert:equals:", "contents", "nextPutAll:"], referencedClasses: [] }), smalltalk.StreamTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return nil; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StreamTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ nil", messageSends: [], referencedClasses: [] }), smalltalk.StreamTest.klass); smalltalk.addMethod( smalltalk.method({ selector: "isAbstract", category: 'testing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=_st(self._collectionClass())._isNil(); return $1; }, function($ctx1) {$ctx1.fill(self,"isAbstract",{},smalltalk.StreamTest.klass)})}, args: [], source: "isAbstract\x0a\x09^ self collectionClass isNil", messageSends: ["isNil", "collectionClass"], referencedClasses: [] }), smalltalk.StreamTest.klass); smalltalk.addClass('ArrayStreamTest', smalltalk.StreamTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "newCollection", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $1; $1=[true,(1),(3).__at((4)),"foo"]; return $1; }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.ArrayStreamTest)})}, args: [], source: "newCollection\x0a\x09^ { true. 1. 3@4. 'foo' }", messageSends: ["@"], referencedClasses: [] }), smalltalk.ArrayStreamTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)} return smalltalk.withContext(function($ctx1) { var $1; $1=$Array(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.ArrayStreamTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ Array", messageSends: [], referencedClasses: ["Array"] }), smalltalk.ArrayStreamTest.klass); smalltalk.addClass('StringStreamTest', smalltalk.StreamTest, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "newCollection", category: 'accessing', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { return "hello world"; }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.StringStreamTest)})}, args: [], source: "newCollection\x0a\x09^ 'hello world'", messageSends: [], referencedClasses: [] }), smalltalk.StringStreamTest); smalltalk.addMethod( smalltalk.method({ selector: "collectionClass", category: 'accessing', fn: function (){ var self=this; function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)} return smalltalk.withContext(function($ctx1) { var $1; $1=$String(); return $1; }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StringStreamTest.klass)})}, args: [], source: "collectionClass\x0a\x09^ String", messageSends: [], referencedClasses: ["String"] }), smalltalk.StringStreamTest.klass); smalltalk.addClass('UndefinedTest', smalltalk.TestCase, [], 'Kernel-Tests'); smalltalk.addMethod( smalltalk.method({ selector: "testCopying", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_equals_(nil._copy(),nil); return self}, function($ctx1) {$ctx1.fill(self,"testCopying",{},smalltalk.UndefinedTest)})}, args: [], source: "testCopying\x0a\x09self assert: nil copy equals: nil", messageSends: ["assert:equals:", "copy"], referencedClasses: [] }), smalltalk.UndefinedTest); smalltalk.addMethod( smalltalk.method({ selector: "testDeepCopy", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_(_st(nil._deepCopy()).__eq(nil)); return self}, function($ctx1) {$ctx1.fill(self,"testDeepCopy",{},smalltalk.UndefinedTest)})}, args: [], source: "testDeepCopy\x0a\x09self assert: nil deepCopy = nil", messageSends: ["assert:", "=", "deepCopy"], referencedClasses: [] }), smalltalk.UndefinedTest); smalltalk.addMethod( smalltalk.method({ selector: "testIfNil", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { var $2,$1,$5,$4,$3,$7,$6,$10,$9,$8; if(($receiver = nil) == nil || $receiver == null){ $2=true; } else { $2=nil; }; $1=self._assert_equals_($2,true); $ctx1.sendIdx["assert:equals:"]=1; if(($receiver = nil) == nil || $receiver == null){ $5=nil; } else { $5=true; }; $4=_st($5).__eq(true); $ctx1.sendIdx["="]=1; $3=self._deny_($4); $ctx1.sendIdx["deny:"]=1; if(($receiver = nil) == nil || $receiver == null){ $7=true; } else { $7=false; }; $6=self._assert_equals_($7,true); if(($receiver = nil) == nil || $receiver == null){ $10=false; } else { $10=true; }; $9=_st($10).__eq(true); $8=self._deny_($9); return self}, function($ctx1) {$ctx1.fill(self,"testIfNil",{},smalltalk.UndefinedTest)})}, args: [], source: "testIfNil\x0a\x09self assert: (nil ifNil: [true]) equals: true.\x0a\x09self deny: (nil ifNotNil: [true]) = true.\x0a\x09self assert: (nil ifNil: [true] ifNotNil: [false]) equals: true.\x0a\x09self deny: (nil ifNotNil: [true] ifNil: [false]) = true", messageSends: ["assert:equals:", "ifNil:", "deny:", "=", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"], referencedClasses: [] }), smalltalk.UndefinedTest); smalltalk.addMethod( smalltalk.method({ selector: "testIsNil", category: 'tests', fn: function (){ var self=this; return smalltalk.withContext(function($ctx1) { self._assert_(nil._isNil()); self._deny_(nil._notNil()); return self}, function($ctx1) {$ctx1.fill(self,"testIsNil",{},smalltalk.UndefinedTest)})}, args: [], source: "testIsNil\x0a\x09self assert: nil isNil.\x0a\x09self deny: nil notNil.", messageSends: ["assert:", "isNil", "deny:", "notNil"], referencedClasses: [] }), smalltalk.UndefinedTest); });