Kernel-Tests.deploy.js 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777
  1. (function(smalltalk,nil,_st){
  2. smalltalk.addPackage('Kernel-Tests');
  3. smalltalk.addClass('BlockClosureTest', smalltalk.TestCase, [], 'Kernel-Tests');
  4. smalltalk.addMethod(
  5. smalltalk.method({
  6. selector: "testCanClearInterval",
  7. fn: function (){
  8. var self=this;
  9. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  10. return smalltalk.withContext(function($ctx1) {
  11. self._shouldnt_raise_((function(){
  12. return smalltalk.withContext(function($ctx2) {
  13. return _st(_st((function(){
  14. return smalltalk.withContext(function($ctx3) {
  15. return _st(_st($Error())._new())._signal();
  16. }, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}))._valueWithInterval_((0)))._clearInterval();
  17. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  18. return self}, function($ctx1) {$ctx1.fill(self,"testCanClearInterval",{},smalltalk.BlockClosureTest)})},
  19. messageSends: ["shouldnt:raise:", "clearInterval", "valueWithInterval:", "signal", "new"]}),
  20. smalltalk.BlockClosureTest);
  21. smalltalk.addMethod(
  22. smalltalk.method({
  23. selector: "testCanClearTimeout",
  24. fn: function (){
  25. var self=this;
  26. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  27. return smalltalk.withContext(function($ctx1) {
  28. self._shouldnt_raise_((function(){
  29. return smalltalk.withContext(function($ctx2) {
  30. return _st(_st((function(){
  31. return smalltalk.withContext(function($ctx3) {
  32. return _st(_st($Error())._new())._signal();
  33. }, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}))._valueWithTimeout_((0)))._clearTimeout();
  34. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  35. return self}, function($ctx1) {$ctx1.fill(self,"testCanClearTimeout",{},smalltalk.BlockClosureTest)})},
  36. messageSends: ["shouldnt:raise:", "clearTimeout", "valueWithTimeout:", "signal", "new"]}),
  37. smalltalk.BlockClosureTest);
  38. smalltalk.addMethod(
  39. smalltalk.method({
  40. selector: "testCompiledSource",
  41. fn: function (){
  42. var self=this;
  43. return smalltalk.withContext(function($ctx1) {
  44. self._assert_(_st(_st((function(){
  45. return smalltalk.withContext(function($ctx2) {
  46. return (1).__plus((1));
  47. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._compiledSource())._includesSubString_("function"));
  48. return self}, function($ctx1) {$ctx1.fill(self,"testCompiledSource",{},smalltalk.BlockClosureTest)})},
  49. messageSends: ["assert:", "includesSubString:", "compiledSource", "+"]}),
  50. smalltalk.BlockClosureTest);
  51. smalltalk.addMethod(
  52. smalltalk.method({
  53. selector: "testCurrySelf",
  54. fn: function (){
  55. var self=this;
  56. var curriedMethod,array;
  57. function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
  58. function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
  59. return smalltalk.withContext(function($ctx1) {
  60. curriedMethod=_st(_st((function(selfarg,x){
  61. return smalltalk.withContext(function($ctx2) {
  62. return _st(selfarg)._at_(x);
  63. }, function($ctx2) {$ctx2.fillBlock({selfarg:selfarg,x:x},$ctx1)})}))._currySelf())._asCompiledMethod_("foo:");
  64. array=[(3), (1), (4)];
  65. _st(_st($ClassBuilder())._new())._installMethod_forClass_category_(curriedMethod,$Array(),"**test helper");
  66. _st((function(){
  67. return smalltalk.withContext(function($ctx2) {
  68. return self._assert_equals_(_st(array)._foo_((2)),(1));
  69. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._ensure_((function(){
  70. return smalltalk.withContext(function($ctx2) {
  71. return _st($Array())._removeCompiledMethod_(curriedMethod);
  72. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  73. return self}, function($ctx1) {$ctx1.fill(self,"testCurrySelf",{curriedMethod:curriedMethod,array:array},smalltalk.BlockClosureTest)})},
  74. messageSends: ["asCompiledMethod:", "currySelf", "at:", "installMethod:forClass:category:", "new", "ensure:", "removeCompiledMethod:", "assert:equals:", "foo:"]}),
  75. smalltalk.BlockClosureTest);
  76. smalltalk.addMethod(
  77. smalltalk.method({
  78. selector: "testEnsure",
  79. fn: function (){
  80. var self=this;
  81. return smalltalk.withContext(function($ctx1) {
  82. self._assert_equals_(_st((function(){
  83. return smalltalk.withContext(function($ctx2) {
  84. return (3);
  85. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._ensure_((function(){
  86. return smalltalk.withContext(function($ctx2) {
  87. return (4);
  88. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(3));
  89. return self}, function($ctx1) {$ctx1.fill(self,"testEnsure",{},smalltalk.BlockClosureTest)})},
  90. messageSends: ["assert:equals:", "ensure:"]}),
  91. smalltalk.BlockClosureTest);
  92. smalltalk.addMethod(
  93. smalltalk.method({
  94. selector: "testEnsureRaises",
  95. fn: function (){
  96. var self=this;
  97. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  98. return smalltalk.withContext(function($ctx1) {
  99. self._should_raise_((function(){
  100. return smalltalk.withContext(function($ctx2) {
  101. return _st((function(){
  102. return smalltalk.withContext(function($ctx3) {
  103. return _st(_st($Error())._new())._signal();
  104. }, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}))._ensure_((function(){
  105. return smalltalk.withContext(function($ctx3) {
  106. return true;
  107. }, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}));
  108. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  109. return self}, function($ctx1) {$ctx1.fill(self,"testEnsureRaises",{},smalltalk.BlockClosureTest)})},
  110. messageSends: ["should:raise:", "ensure:", "signal", "new"]}),
  111. smalltalk.BlockClosureTest);
  112. smalltalk.addMethod(
  113. smalltalk.method({
  114. selector: "testExceptionSemantics",
  115. fn: function (){
  116. var self=this;
  117. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  118. return smalltalk.withContext(function($ctx1) {
  119. self._timeout_((100));
  120. _st(self._async_((function(){
  121. return smalltalk.withContext(function($ctx2) {
  122. return _st((function(){
  123. return smalltalk.withContext(function($ctx3) {
  124. self._assert_(true);
  125. _st($Error())._signal();
  126. self._deny_(true);
  127. return self._finished();
  128. }, function($ctx3) {$ctx3.fillBlock({},$ctx2)})}))._on_do_($Error(),(function(ex){
  129. return smalltalk.withContext(function($ctx3) {
  130. return self._finished();
  131. }, function($ctx3) {$ctx3.fillBlock({ex:ex},$ctx2)})}));
  132. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})))._valueWithTimeout_((0));
  133. return self}, function($ctx1) {$ctx1.fill(self,"testExceptionSemantics",{},smalltalk.BlockClosureTest)})},
  134. messageSends: ["timeout:", "valueWithTimeout:", "async:", "on:do:", "finished", "assert:", "signal", "deny:"]}),
  135. smalltalk.BlockClosureTest);
  136. smalltalk.addMethod(
  137. smalltalk.method({
  138. selector: "testNewWithValues",
  139. fn: function (){
  140. var self=this;
  141. return smalltalk.withContext(function($ctx1) {
  142. function theTestPrototype() {this.name = "theTestPrototype";}
  143. function theTestConstructor(arg1, arg2, arg3) {}
  144. theTestConstructor.prototype = new theTestPrototype;
  145. var theWrappedConstructor = _st(theTestConstructor);
  146. var theResult = theWrappedConstructor._newWithValues_([1, 2, 3]);
  147. self._assert_equals_(Object.getPrototypeOf(theResult).name, 'theTestPrototype');
  148. "newWithValues: cannot help if the argument list is wrong, and should warn that a mistake was made."
  149. function constructionShouldFail() {var anotherResult = theWrappedConstructor._newWithValues_('This is so wrong');}
  150. self._should_raise_(_st(constructionShouldFail), smalltalk.Error);;
  151. return self}, function($ctx1) {$ctx1.fill(self,"testNewWithValues",{},smalltalk.BlockClosureTest)})},
  152. messageSends: []}),
  153. smalltalk.BlockClosureTest);
  154. smalltalk.addMethod(
  155. smalltalk.method({
  156. selector: "testNumArgs",
  157. fn: function (){
  158. var self=this;
  159. return smalltalk.withContext(function($ctx1) {
  160. self._assert_equals_(_st((function(){
  161. return smalltalk.withContext(function($ctx2) {
  162. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._numArgs(),(0));
  163. self._assert_equals_(_st((function(a,b){
  164. return smalltalk.withContext(function($ctx2) {
  165. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}))._numArgs(),(2));
  166. return self}, function($ctx1) {$ctx1.fill(self,"testNumArgs",{},smalltalk.BlockClosureTest)})},
  167. messageSends: ["assert:equals:", "numArgs"]}),
  168. smalltalk.BlockClosureTest);
  169. smalltalk.addMethod(
  170. smalltalk.method({
  171. selector: "testOnDo",
  172. fn: function (){
  173. var self=this;
  174. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  175. return smalltalk.withContext(function($ctx1) {
  176. self._assert_(_st((function(){
  177. return smalltalk.withContext(function($ctx2) {
  178. return _st(_st($Error())._new())._signal();
  179. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_($Error(),(function(ex){
  180. return smalltalk.withContext(function($ctx2) {
  181. return true;
  182. }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})})));
  183. return self}, function($ctx1) {$ctx1.fill(self,"testOnDo",{},smalltalk.BlockClosureTest)})},
  184. messageSends: ["assert:", "on:do:", "signal", "new"]}),
  185. smalltalk.BlockClosureTest);
  186. smalltalk.addMethod(
  187. smalltalk.method({
  188. selector: "testValue",
  189. fn: function (){
  190. var self=this;
  191. return smalltalk.withContext(function($ctx1) {
  192. self._assert_equals_(_st((function(){
  193. return smalltalk.withContext(function($ctx2) {
  194. return (1).__plus((1));
  195. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._value(),(2));
  196. self._assert_equals_(_st((function(x){
  197. return smalltalk.withContext(function($ctx2) {
  198. return _st(x).__plus((1));
  199. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}))._value_((2)),(3));
  200. self._assert_equals_(_st((function(x,y){
  201. return smalltalk.withContext(function($ctx2) {
  202. return _st(x).__star(y);
  203. }, function($ctx2) {$ctx2.fillBlock({x:x,y:y},$ctx1)})}))._value_value_((2),(4)),(8));
  204. self._assert_equals_(_st((function(a,b,c){
  205. return smalltalk.withContext(function($ctx2) {
  206. return (1);
  207. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b,c:c},$ctx1)})}))._value(),(1));
  208. return self}, function($ctx1) {$ctx1.fill(self,"testValue",{},smalltalk.BlockClosureTest)})},
  209. messageSends: ["assert:equals:", "value", "+", "value:", "value:value:", "*"]}),
  210. smalltalk.BlockClosureTest);
  211. smalltalk.addMethod(
  212. smalltalk.method({
  213. selector: "testValueWithPossibleArguments",
  214. fn: function (){
  215. var self=this;
  216. return smalltalk.withContext(function($ctx1) {
  217. self._assert_equals_(_st((function(){
  218. return smalltalk.withContext(function($ctx2) {
  219. return (1);
  220. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._valueWithPossibleArguments_([(3), (4)]),(1));
  221. self._assert_equals_(_st((function(a){
  222. return smalltalk.withContext(function($ctx2) {
  223. return _st(a).__plus((4));
  224. }, function($ctx2) {$ctx2.fillBlock({a:a},$ctx1)})}))._valueWithPossibleArguments_([(3), (4)]),(7));
  225. self._assert_equals_(_st((function(a,b){
  226. return smalltalk.withContext(function($ctx2) {
  227. return _st(a).__plus(b);
  228. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}))._valueWithPossibleArguments_([(3), (4), (5)]),(7));
  229. return self}, function($ctx1) {$ctx1.fill(self,"testValueWithPossibleArguments",{},smalltalk.BlockClosureTest)})},
  230. messageSends: ["assert:equals:", "valueWithPossibleArguments:", "+"]}),
  231. smalltalk.BlockClosureTest);
  232. smalltalk.addMethod(
  233. smalltalk.method({
  234. selector: "testWhileFalse",
  235. fn: function (){
  236. var self=this;
  237. var i;
  238. return smalltalk.withContext(function($ctx1) {
  239. i=(0);
  240. _st((function(){
  241. return smalltalk.withContext(function($ctx2) {
  242. return _st(i).__gt((5));
  243. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
  244. return smalltalk.withContext(function($ctx2) {
  245. i=_st(i).__plus((1));
  246. return i;
  247. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  248. self._assert_equals_(i,(6));
  249. i=(0);
  250. _st((function(){
  251. return smalltalk.withContext(function($ctx2) {
  252. i=_st(i).__plus((1));
  253. i;
  254. return _st(i).__gt((5));
  255. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse();
  256. self._assert_equals_(i,(6));
  257. return self}, function($ctx1) {$ctx1.fill(self,"testWhileFalse",{i:i},smalltalk.BlockClosureTest)})},
  258. messageSends: ["whileFalse:", "+", ">", "assert:equals:", "whileFalse"]}),
  259. smalltalk.BlockClosureTest);
  260. smalltalk.addMethod(
  261. smalltalk.method({
  262. selector: "testWhileTrue",
  263. fn: function (){
  264. var self=this;
  265. var i;
  266. return smalltalk.withContext(function($ctx1) {
  267. i=(0);
  268. _st((function(){
  269. return smalltalk.withContext(function($ctx2) {
  270. return _st(i).__lt((5));
  271. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  272. return smalltalk.withContext(function($ctx2) {
  273. i=_st(i).__plus((1));
  274. return i;
  275. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  276. self._assert_equals_(i,(5));
  277. i=(0);
  278. _st((function(){
  279. return smalltalk.withContext(function($ctx2) {
  280. i=_st(i).__plus((1));
  281. i;
  282. return _st(i).__lt((5));
  283. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue();
  284. self._assert_equals_(i,(5));
  285. return self}, function($ctx1) {$ctx1.fill(self,"testWhileTrue",{i:i},smalltalk.BlockClosureTest)})},
  286. messageSends: ["whileTrue:", "+", "<", "assert:equals:", "whileTrue"]}),
  287. smalltalk.BlockClosureTest);
  288. smalltalk.addClass('BooleanTest', smalltalk.TestCase, [], 'Kernel-Tests');
  289. smalltalk.addMethod(
  290. smalltalk.method({
  291. selector: "testEquality",
  292. fn: function (){
  293. var self=this;
  294. return smalltalk.withContext(function($ctx1) {
  295. self._deny_((0).__eq(false));
  296. self._deny_(false.__eq((0)));
  297. self._deny_("".__eq(false));
  298. self._deny_(false.__eq(""));
  299. self._assert_(true.__eq(true));
  300. self._deny_(false.__eq(true));
  301. self._deny_(true.__eq(false));
  302. self._assert_(false.__eq(false));
  303. self._assert_(_st(true._yourself()).__eq(true));
  304. self._assert_(_st(true._yourself()).__eq(true._yourself()));
  305. return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.BooleanTest)})},
  306. messageSends: ["deny:", "=", "assert:", "yourself"]}),
  307. smalltalk.BooleanTest);
  308. smalltalk.addMethod(
  309. smalltalk.method({
  310. selector: "testIdentity",
  311. fn: function (){
  312. var self=this;
  313. return smalltalk.withContext(function($ctx1) {
  314. self._deny_((0).__eq_eq(false));
  315. self._deny_(false.__eq_eq((0)));
  316. self._deny_("".__eq_eq(false));
  317. self._deny_(false.__eq_eq(""));
  318. self._assert_(true.__eq_eq(true));
  319. self._deny_(false.__eq_eq(true));
  320. self._deny_(true.__eq_eq(false));
  321. self._assert_(false.__eq_eq(false));
  322. self._assert_(_st(true._yourself()).__eq_eq(true));
  323. self._assert_(_st(true._yourself()).__eq_eq(true._yourself()));
  324. return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.BooleanTest)})},
  325. messageSends: ["deny:", "==", "assert:", "yourself"]}),
  326. smalltalk.BooleanTest);
  327. smalltalk.addMethod(
  328. smalltalk.method({
  329. selector: "testIfTrueIfFalse",
  330. fn: function (){
  331. var self=this;
  332. return smalltalk.withContext(function($ctx1) {
  333. var $1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16;
  334. $1=self;
  335. if(smalltalk.assert(true)){
  336. $2="alternative block";
  337. };
  338. _st($1)._assert_equals_($2,"alternative block");
  339. $3=self;
  340. if(! smalltalk.assert(true)){
  341. $4="alternative block";
  342. };
  343. _st($3)._assert_equals_($4,nil);
  344. $5=self;
  345. if(smalltalk.assert(false)){
  346. $6="alternative block";
  347. };
  348. _st($5)._assert_equals_($6,nil);
  349. $7=self;
  350. if(! smalltalk.assert(false)){
  351. $8="alternative block";
  352. };
  353. _st($7)._assert_equals_($8,"alternative block");
  354. $9=self;
  355. if(smalltalk.assert(false)){
  356. $10="alternative block";
  357. } else {
  358. $10="alternative block2";
  359. };
  360. _st($9)._assert_equals_($10,"alternative block2");
  361. $11=self;
  362. if(smalltalk.assert(false)){
  363. $12="alternative block2";
  364. } else {
  365. $12="alternative block";
  366. };
  367. _st($11)._assert_equals_($12,"alternative block");
  368. $13=self;
  369. if(smalltalk.assert(true)){
  370. $14="alternative block";
  371. } else {
  372. $14="alternative block2";
  373. };
  374. _st($13)._assert_equals_($14,"alternative block");
  375. $15=self;
  376. if(smalltalk.assert(true)){
  377. $16="alternative block2";
  378. } else {
  379. $16="alternative block";
  380. };
  381. _st($15)._assert_equals_($16,"alternative block2");
  382. return self}, function($ctx1) {$ctx1.fill(self,"testIfTrueIfFalse",{},smalltalk.BooleanTest)})},
  383. messageSends: ["assert:equals:", "ifTrue:", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:"]}),
  384. smalltalk.BooleanTest);
  385. smalltalk.addMethod(
  386. smalltalk.method({
  387. selector: "testIfTrueIfFalseWithBoxing",
  388. fn: function (){
  389. var self=this;
  390. return smalltalk.withContext(function($ctx1) {
  391. var $1,$3,$2,$4,$6,$5,$7,$9,$8,$10,$12,$11,$13,$15,$14,$16,$18,$17,$19,$21,$20,$22,$24,$23;
  392. $1=self;
  393. $3=true._yourself();
  394. if(smalltalk.assert($3)){
  395. $2="alternative block";
  396. };
  397. _st($1)._assert_equals_($2,"alternative block");
  398. $4=self;
  399. $6=true._yourself();
  400. if(! smalltalk.assert($6)){
  401. $5="alternative block";
  402. };
  403. _st($4)._assert_equals_($5,nil);
  404. $7=self;
  405. $9=false._yourself();
  406. if(smalltalk.assert($9)){
  407. $8="alternative block";
  408. };
  409. _st($7)._assert_equals_($8,nil);
  410. $10=self;
  411. $12=false._yourself();
  412. if(! smalltalk.assert($12)){
  413. $11="alternative block";
  414. };
  415. _st($10)._assert_equals_($11,"alternative block");
  416. $13=self;
  417. $15=false._yourself();
  418. if(smalltalk.assert($15)){
  419. $14="alternative block";
  420. } else {
  421. $14="alternative block2";
  422. };
  423. _st($13)._assert_equals_($14,"alternative block2");
  424. $16=self;
  425. $18=false._yourself();
  426. if(smalltalk.assert($18)){
  427. $17="alternative block2";
  428. } else {
  429. $17="alternative block";
  430. };
  431. _st($16)._assert_equals_($17,"alternative block");
  432. $19=self;
  433. $21=true._yourself();
  434. if(smalltalk.assert($21)){
  435. $20="alternative block";
  436. } else {
  437. $20="alternative block2";
  438. };
  439. _st($19)._assert_equals_($20,"alternative block");
  440. $22=self;
  441. $24=true._yourself();
  442. if(smalltalk.assert($24)){
  443. $23="alternative block2";
  444. } else {
  445. $23="alternative block";
  446. };
  447. _st($22)._assert_equals_($23,"alternative block2");
  448. return self}, function($ctx1) {$ctx1.fill(self,"testIfTrueIfFalseWithBoxing",{},smalltalk.BooleanTest)})},
  449. messageSends: ["assert:equals:", "ifTrue:", "yourself", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:"]}),
  450. smalltalk.BooleanTest);
  451. smalltalk.addMethod(
  452. smalltalk.method({
  453. selector: "testLogic",
  454. fn: function (){
  455. var self=this;
  456. return smalltalk.withContext(function($ctx1) {
  457. var $1,$2,$3,$4,$5,$6,$7,$8;
  458. $1=self;
  459. _st($1)._assert_(true.__and(true));
  460. _st($1)._deny_(true.__and(false));
  461. _st($1)._deny_(false.__and(true));
  462. $2=_st($1)._deny_(false.__and(false));
  463. $3=self;
  464. _st($3)._assert_(true.__or(true));
  465. _st($3)._assert_(true.__or(false));
  466. _st($3)._assert_(false.__or(true));
  467. $4=_st($3)._deny_(false.__or(false));
  468. $5=self;
  469. _st($5)._assert_(true.__and((1).__gt((0))));
  470. _st($5)._deny_(_st((1).__gt((0))).__and(false));
  471. $6=_st($5)._deny_(_st((1).__gt((0))).__and((1).__gt((2))));
  472. $7=self;
  473. _st($7)._assert_(false.__or((1).__gt((0))));
  474. _st($7)._assert_(_st((1).__gt((0))).__or(false));
  475. $8=_st($7)._assert_(_st((1).__gt((0))).__or((1).__gt((2))));
  476. return self}, function($ctx1) {$ctx1.fill(self,"testLogic",{},smalltalk.BooleanTest)})},
  477. messageSends: ["assert:", "&", "deny:", "|", ">"]}),
  478. smalltalk.BooleanTest);
  479. smalltalk.addMethod(
  480. smalltalk.method({
  481. selector: "testLogicKeywords",
  482. fn: function (){
  483. var self=this;
  484. return smalltalk.withContext(function($ctx1) {
  485. var $1,$2,$3,$4,$5,$6,$7,$8;
  486. $1=self;
  487. _st($1)._assert_(true._and_((function(){
  488. return smalltalk.withContext(function($ctx2) {
  489. return true;
  490. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  491. _st($1)._deny_(true._and_((function(){
  492. return smalltalk.withContext(function($ctx2) {
  493. return false;
  494. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  495. _st($1)._deny_(false._and_((function(){
  496. return smalltalk.withContext(function($ctx2) {
  497. return true;
  498. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  499. $2=_st($1)._deny_(false._and_((function(){
  500. return smalltalk.withContext(function($ctx2) {
  501. return false;
  502. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  503. $3=self;
  504. _st($3)._assert_(true._or_((function(){
  505. return smalltalk.withContext(function($ctx2) {
  506. return true;
  507. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  508. _st($3)._assert_(true._or_((function(){
  509. return smalltalk.withContext(function($ctx2) {
  510. return false;
  511. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  512. _st($3)._assert_(false._or_((function(){
  513. return smalltalk.withContext(function($ctx2) {
  514. return true;
  515. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  516. $4=_st($3)._deny_(false._or_((function(){
  517. return smalltalk.withContext(function($ctx2) {
  518. return false;
  519. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  520. $5=self;
  521. _st($5)._assert_(true._and_((function(){
  522. return smalltalk.withContext(function($ctx2) {
  523. return (1).__gt((0));
  524. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  525. _st($5)._deny_(_st((1).__gt((0)))._and_((function(){
  526. return smalltalk.withContext(function($ctx2) {
  527. return false;
  528. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  529. $6=_st($5)._deny_(_st((1).__gt((0)))._and_((function(){
  530. return smalltalk.withContext(function($ctx2) {
  531. return (1).__gt((2));
  532. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  533. $7=self;
  534. _st($7)._assert_(false._or_((function(){
  535. return smalltalk.withContext(function($ctx2) {
  536. return (1).__gt((0));
  537. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  538. _st($7)._assert_(_st((1).__gt((0)))._or_((function(){
  539. return smalltalk.withContext(function($ctx2) {
  540. return false;
  541. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  542. $8=_st($7)._assert_(_st((1).__gt((0)))._or_((function(){
  543. return smalltalk.withContext(function($ctx2) {
  544. return (1).__gt((2));
  545. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
  546. return self}, function($ctx1) {$ctx1.fill(self,"testLogicKeywords",{},smalltalk.BooleanTest)})},
  547. messageSends: ["assert:", "and:", "deny:", "or:", ">"]}),
  548. smalltalk.BooleanTest);
  549. smalltalk.addMethod(
  550. smalltalk.method({
  551. selector: "testNonBooleanError",
  552. fn: function (){
  553. var self=this;
  554. function $NonBooleanReceiver(){return smalltalk.NonBooleanReceiver||(typeof NonBooleanReceiver=="undefined"?nil:NonBooleanReceiver)}
  555. return smalltalk.withContext(function($ctx1) {
  556. self._should_raise_((function(){
  557. return smalltalk.withContext(function($ctx2) {
  558. if(smalltalk.assert("")){
  559. } else {
  560. };
  561. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$NonBooleanReceiver());
  562. return self}, function($ctx1) {$ctx1.fill(self,"testNonBooleanError",{},smalltalk.BooleanTest)})},
  563. messageSends: ["should:raise:", "ifTrue:ifFalse:"]}),
  564. smalltalk.BooleanTest);
  565. smalltalk.addClass('ClassBuilderTest', smalltalk.TestCase, ['builder', 'theClass'], 'Kernel-Tests');
  566. smalltalk.addMethod(
  567. smalltalk.method({
  568. selector: "setUp",
  569. fn: function (){
  570. var self=this;
  571. function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
  572. return smalltalk.withContext(function($ctx1) {
  573. self["@builder"]=_st($ClassBuilder())._new();
  574. return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.ClassBuilderTest)})},
  575. messageSends: ["new"]}),
  576. smalltalk.ClassBuilderTest);
  577. smalltalk.addMethod(
  578. smalltalk.method({
  579. selector: "tearDown",
  580. fn: function (){
  581. var self=this;
  582. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  583. return smalltalk.withContext(function($ctx1) {
  584. var $1;
  585. $1=self["@theClass"];
  586. if(($receiver = $1) == nil || $receiver == undefined){
  587. $1;
  588. } else {
  589. _st(_st($Smalltalk())._current())._removeClass_(self["@theClass"]);
  590. self["@theClass"]=nil;
  591. self["@theClass"];
  592. };
  593. return self}, function($ctx1) {$ctx1.fill(self,"tearDown",{},smalltalk.ClassBuilderTest)})},
  594. messageSends: ["ifNotNil:", "removeClass:", "current"]}),
  595. smalltalk.ClassBuilderTest);
  596. smalltalk.addMethod(
  597. smalltalk.method({
  598. selector: "testClassCopy",
  599. fn: function (){
  600. var self=this;
  601. function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
  602. return smalltalk.withContext(function($ctx1) {
  603. self["@theClass"]=_st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
  604. self._assert_(_st(_st(self["@theClass"])._superclass()).__eq_eq(_st($ObjectMock())._superclass()));
  605. self._assert_(_st(_st(self["@theClass"])._instanceVariableNames()).__eq_eq(_st($ObjectMock())._instanceVariableNames()));
  606. self._assert_equals_(_st(self["@theClass"])._name(),"ObjectMock2");
  607. self._assert_(_st(_st(self["@theClass"])._package()).__eq_eq(_st($ObjectMock())._package()));
  608. self._assert_equals_(_st(_st(self["@theClass"])._methodDictionary())._keys(),_st(_st($ObjectMock())._methodDictionary())._keys());
  609. return self}, function($ctx1) {$ctx1.fill(self,"testClassCopy",{},smalltalk.ClassBuilderTest)})},
  610. messageSends: ["copyClass:named:", "assert:", "==", "superclass", "instanceVariableNames", "assert:equals:", "name", "package", "keys", "methodDictionary"]}),
  611. smalltalk.ClassBuilderTest);
  612. smalltalk.addMethod(
  613. smalltalk.method({
  614. selector: "testClassMigration",
  615. fn: function (){
  616. var self=this;
  617. var instance,oldClass;
  618. function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
  619. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  620. function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)}
  621. return smalltalk.withContext(function($ctx1) {
  622. oldClass=_st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
  623. instance=_st(_st(_st($Smalltalk())._current())._at_("ObjectMock2"))._new();
  624. _st($ObjectMock())._subclass_instanceVariableNames_package_(_st(_st($Smalltalk())._current())._at_("ObjectMock2"),"","Kernel-Tests");
  625. self._deny_(_st(oldClass).__eq_eq($ObjectMock2()));
  626. self._assert_(_st(_st($ObjectMock2())._superclass()).__eq_eq($ObjectMock()));
  627. self._assert_(_st(_st($ObjectMock2())._instanceVariableNames())._isEmpty());
  628. self._assert_equals_(_st($ObjectMock2())._selectors(),_st(oldClass)._selectors());
  629. self._assert_equals_(_st($ObjectMock2())._comment(),_st(oldClass)._comment());
  630. self._assert_equals_(_st(_st($ObjectMock2())._package())._name(),"Kernel-Tests");
  631. self._deny_(_st(_st(instance)._class()).__eq_eq($ObjectMock2()));
  632. self._assert_(_st(_st(_st($Smalltalk())._current())._at_(_st(_st(instance)._class())._name()))._isNil());
  633. _st(_st($Smalltalk())._current())._removeClass_($ObjectMock2());
  634. return self}, function($ctx1) {$ctx1.fill(self,"testClassMigration",{instance:instance,oldClass:oldClass},smalltalk.ClassBuilderTest)})},
  635. messageSends: ["copyClass:named:", "new", "at:", "current", "subclass:instanceVariableNames:package:", "deny:", "==", "assert:", "superclass", "isEmpty", "instanceVariableNames", "assert:equals:", "selectors", "comment", "name", "package", "class", "isNil", "removeClass:"]}),
  636. smalltalk.ClassBuilderTest);
  637. smalltalk.addMethod(
  638. smalltalk.method({
  639. selector: "testClassMigrationWithClassInstanceVariables",
  640. fn: function (){
  641. var self=this;
  642. function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
  643. function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)}
  644. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  645. return smalltalk.withContext(function($ctx1) {
  646. _st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
  647. _st(_st($ObjectMock2())._class())._instanceVariableNames_("foo bar");
  648. _st($ObjectMock())._subclass_instanceVariableNames_package_(_st(_st($Smalltalk())._current())._at_("ObjectMock2"),"","Kernel-Tests");
  649. self._assert_equals_(_st(_st($ObjectMock2())._class())._instanceVariableNames(),["foo", "bar"]);
  650. _st(_st($Smalltalk())._current())._removeClass_($ObjectMock2());
  651. return self}, function($ctx1) {$ctx1.fill(self,"testClassMigrationWithClassInstanceVariables",{},smalltalk.ClassBuilderTest)})},
  652. messageSends: ["copyClass:named:", "instanceVariableNames:", "class", "subclass:instanceVariableNames:package:", "at:", "current", "assert:equals:", "instanceVariableNames", "removeClass:"]}),
  653. smalltalk.ClassBuilderTest);
  654. smalltalk.addMethod(
  655. smalltalk.method({
  656. selector: "testClassMigrationWithSubclasses",
  657. fn: function (){
  658. var self=this;
  659. function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
  660. function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)}
  661. function $ObjectMock3(){return smalltalk.ObjectMock3||(typeof ObjectMock3=="undefined"?nil:ObjectMock3)}
  662. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  663. function $ObjectMock4(){return smalltalk.ObjectMock4||(typeof ObjectMock4=="undefined"?nil:ObjectMock4)}
  664. return smalltalk.withContext(function($ctx1) {
  665. _st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
  666. _st($ObjectMock2())._subclass_instanceVariableNames_package_("ObjectMock3","","Kernel-Tests");
  667. _st($ObjectMock3())._subclass_instanceVariableNames_package_("ObjectMock4","","Kernel-Tests");
  668. _st($ObjectMock())._subclass_instanceVariableNames_package_(_st(_st($Smalltalk())._current())._at_("ObjectMock2"),"","Kernel-Tests");
  669. self._assert_(_st(_st($ObjectMock())._subclasses())._includes_($ObjectMock2()));
  670. self._assert_(_st(_st($ObjectMock2())._subclasses())._includes_($ObjectMock3()));
  671. self._assert_(_st(_st($ObjectMock3())._subclasses())._includes_($ObjectMock4()));
  672. _st(_st($ObjectMock())._allSubclasses())._do_((function(each){
  673. return smalltalk.withContext(function($ctx2) {
  674. return _st(_st($Smalltalk())._current())._removeClass_(each);
  675. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  676. return self}, function($ctx1) {$ctx1.fill(self,"testClassMigrationWithSubclasses",{},smalltalk.ClassBuilderTest)})},
  677. messageSends: ["copyClass:named:", "subclass:instanceVariableNames:package:", "at:", "current", "assert:", "includes:", "subclasses", "do:", "removeClass:", "allSubclasses"]}),
  678. smalltalk.ClassBuilderTest);
  679. smalltalk.addMethod(
  680. smalltalk.method({
  681. selector: "testInstanceVariableNames",
  682. fn: function (){
  683. var self=this;
  684. return smalltalk.withContext(function($ctx1) {
  685. self._assert_equals_(_st(self["@builder"])._instanceVariableNamesFor_(" hello world "),["hello", "world"]);
  686. return self}, function($ctx1) {$ctx1.fill(self,"testInstanceVariableNames",{},smalltalk.ClassBuilderTest)})},
  687. messageSends: ["assert:equals:", "instanceVariableNamesFor:"]}),
  688. smalltalk.ClassBuilderTest);
  689. smalltalk.addClass('CollectionTest', smalltalk.TestCase, [], 'Kernel-Tests');
  690. smalltalk.addMethod(
  691. smalltalk.method({
  692. selector: "assertSameContents:as:",
  693. fn: function (aCollection,anotherCollection){
  694. var self=this;
  695. return smalltalk.withContext(function($ctx1) {
  696. self._assert_(_st(_st(aCollection)._size()).__eq(_st(anotherCollection)._size()));
  697. _st(aCollection)._do_((function(each){
  698. return smalltalk.withContext(function($ctx2) {
  699. return self._assert_(_st(_st(aCollection)._occurrencesOf_(each)).__eq(_st(anotherCollection)._occurrencesOf_(each)));
  700. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  701. return self}, function($ctx1) {$ctx1.fill(self,"assertSameContents:as:",{aCollection:aCollection,anotherCollection:anotherCollection},smalltalk.CollectionTest)})},
  702. messageSends: ["assert:", "=", "size", "do:", "occurrencesOf:"]}),
  703. smalltalk.CollectionTest);
  704. smalltalk.addMethod(
  705. smalltalk.method({
  706. selector: "collection",
  707. fn: function (){
  708. var self=this;
  709. return smalltalk.withContext(function($ctx1) {
  710. var $1;
  711. $1=_st(self._collectionClass())._withAll_(self._defaultValues());
  712. return $1;
  713. }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.CollectionTest)})},
  714. messageSends: ["withAll:", "defaultValues", "collectionClass"]}),
  715. smalltalk.CollectionTest);
  716. smalltalk.addMethod(
  717. smalltalk.method({
  718. selector: "collectionClass",
  719. fn: function (){
  720. var self=this;
  721. return smalltalk.withContext(function($ctx1) {
  722. var $1;
  723. $1=_st(self._class())._collectionClass();
  724. return $1;
  725. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.CollectionTest)})},
  726. messageSends: ["collectionClass", "class"]}),
  727. smalltalk.CollectionTest);
  728. smalltalk.addMethod(
  729. smalltalk.method({
  730. selector: "collectionWithDuplicates",
  731. fn: function (){
  732. var self=this;
  733. return smalltalk.withContext(function($ctx1) {
  734. var $1;
  735. $1=_st(self._collectionClass())._withAll_(["a", "b", "c", (1), (2), (1), "a"]);
  736. return $1;
  737. }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.CollectionTest)})},
  738. messageSends: ["withAll:", "collectionClass"]}),
  739. smalltalk.CollectionTest);
  740. smalltalk.addMethod(
  741. smalltalk.method({
  742. selector: "defaultValues",
  743. fn: function (){
  744. var self=this;
  745. return smalltalk.withContext(function($ctx1) {
  746. var $1;
  747. $1=[(1), (2), (3), (-4)];
  748. return $1;
  749. }, function($ctx1) {$ctx1.fill(self,"defaultValues",{},smalltalk.CollectionTest)})},
  750. messageSends: []}),
  751. smalltalk.CollectionTest);
  752. smalltalk.addMethod(
  753. smalltalk.method({
  754. selector: "isCollectionReadOnly",
  755. fn: function (){
  756. var self=this;
  757. return smalltalk.withContext(function($ctx1) {
  758. return false;
  759. }, function($ctx1) {$ctx1.fill(self,"isCollectionReadOnly",{},smalltalk.CollectionTest)})},
  760. messageSends: []}),
  761. smalltalk.CollectionTest);
  762. smalltalk.addMethod(
  763. smalltalk.method({
  764. selector: "testAsArray",
  765. fn: function (){
  766. var self=this;
  767. return smalltalk.withContext(function($ctx1) {
  768. self._assertSameContents_as_(self._collection(),_st(self._collection())._asArray());
  769. return self}, function($ctx1) {$ctx1.fill(self,"testAsArray",{},smalltalk.CollectionTest)})},
  770. messageSends: ["assertSameContents:as:", "collection", "asArray"]}),
  771. smalltalk.CollectionTest);
  772. smalltalk.addMethod(
  773. smalltalk.method({
  774. selector: "testAsOrderedCollection",
  775. fn: function (){
  776. var self=this;
  777. return smalltalk.withContext(function($ctx1) {
  778. self._assertSameContents_as_(self._collection(),_st(self._collection())._asOrderedCollection());
  779. return self}, function($ctx1) {$ctx1.fill(self,"testAsOrderedCollection",{},smalltalk.CollectionTest)})},
  780. messageSends: ["assertSameContents:as:", "collection", "asOrderedCollection"]}),
  781. smalltalk.CollectionTest);
  782. smalltalk.addMethod(
  783. smalltalk.method({
  784. selector: "testAsSet",
  785. fn: function (){
  786. var self=this;
  787. var c,set;
  788. return smalltalk.withContext(function($ctx1) {
  789. c=self._collectionWithDuplicates();
  790. set=_st(c)._asSet();
  791. self._assert_equals_(_st(set)._size(),(5));
  792. _st(c)._do_((function(each){
  793. return smalltalk.withContext(function($ctx2) {
  794. return self._assert_(_st(set)._includes_(each));
  795. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  796. return self}, function($ctx1) {$ctx1.fill(self,"testAsSet",{c:c,set:set},smalltalk.CollectionTest)})},
  797. messageSends: ["collectionWithDuplicates", "asSet", "assert:equals:", "size", "do:", "assert:", "includes:"]}),
  798. smalltalk.CollectionTest);
  799. smalltalk.addMethod(
  800. smalltalk.method({
  801. selector: "testCollect",
  802. fn: function (){
  803. var self=this;
  804. var newCollection;
  805. return smalltalk.withContext(function($ctx1) {
  806. newCollection=[(1), (2), (3), (4)];
  807. self._assertSameContents_as_(_st(self._collection())._collect_((function(each){
  808. return smalltalk.withContext(function($ctx2) {
  809. return _st(each)._abs();
  810. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
  811. return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{newCollection:newCollection},smalltalk.CollectionTest)})},
  812. messageSends: ["assertSameContents:as:", "collect:", "abs", "collection"]}),
  813. smalltalk.CollectionTest);
  814. smalltalk.addMethod(
  815. smalltalk.method({
  816. selector: "testDetect",
  817. fn: function (){
  818. var self=this;
  819. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  820. return smalltalk.withContext(function($ctx1) {
  821. self._assert_equals_(_st(self._collection())._detect_((function(each){
  822. return smalltalk.withContext(function($ctx2) {
  823. return _st(each).__lt((0));
  824. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),(-4));
  825. self._should_raise_((function(){
  826. return smalltalk.withContext(function($ctx2) {
  827. return _st(self._collection())._detect_((function(each){
  828. return smalltalk.withContext(function($ctx3) {
  829. return _st(each).__eq((6));
  830. }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx2)})}));
  831. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  832. return self}, function($ctx1) {$ctx1.fill(self,"testDetect",{},smalltalk.CollectionTest)})},
  833. messageSends: ["assert:equals:", "detect:", "<", "collection", "should:raise:", "="]}),
  834. smalltalk.CollectionTest);
  835. smalltalk.addMethod(
  836. smalltalk.method({
  837. selector: "testDo",
  838. fn: function (){
  839. var self=this;
  840. var newCollection;
  841. function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
  842. return smalltalk.withContext(function($ctx1) {
  843. newCollection=_st($OrderedCollection())._new();
  844. _st(self._collection())._do_((function(each){
  845. return smalltalk.withContext(function($ctx2) {
  846. return _st(newCollection)._add_(each);
  847. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  848. self._assertSameContents_as_(self._collection(),newCollection);
  849. return self}, function($ctx1) {$ctx1.fill(self,"testDo",{newCollection:newCollection},smalltalk.CollectionTest)})},
  850. messageSends: ["new", "do:", "add:", "collection", "assertSameContents:as:"]}),
  851. smalltalk.CollectionTest);
  852. smalltalk.addMethod(
  853. smalltalk.method({
  854. selector: "testIsEmpty",
  855. fn: function (){
  856. var self=this;
  857. return smalltalk.withContext(function($ctx1) {
  858. self._assert_(_st(_st(self._collectionClass())._new())._isEmpty());
  859. self._deny_(_st(self._collection())._isEmpty());
  860. return self}, function($ctx1) {$ctx1.fill(self,"testIsEmpty",{},smalltalk.CollectionTest)})},
  861. messageSends: ["assert:", "isEmpty", "new", "collectionClass", "deny:", "collection"]}),
  862. smalltalk.CollectionTest);
  863. smalltalk.addMethod(
  864. smalltalk.method({
  865. selector: "testSelect",
  866. fn: function (){
  867. var self=this;
  868. var newCollection;
  869. return smalltalk.withContext(function($ctx1) {
  870. newCollection=[(2), (-4)];
  871. self._assertSameContents_as_(_st(self._collection())._select_((function(each){
  872. return smalltalk.withContext(function($ctx2) {
  873. return _st(each)._even();
  874. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
  875. return self}, function($ctx1) {$ctx1.fill(self,"testSelect",{newCollection:newCollection},smalltalk.CollectionTest)})},
  876. messageSends: ["assertSameContents:as:", "select:", "even", "collection"]}),
  877. smalltalk.CollectionTest);
  878. smalltalk.addMethod(
  879. smalltalk.method({
  880. selector: "testSize",
  881. fn: function (){
  882. var self=this;
  883. return smalltalk.withContext(function($ctx1) {
  884. self._assert_equals_(_st(_st(self._collectionClass())._new())._size(),(0));
  885. self._assert_equals_(_st(self._collection())._size(),(4));
  886. return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.CollectionTest)})},
  887. messageSends: ["assert:equals:", "size", "new", "collectionClass", "collection"]}),
  888. smalltalk.CollectionTest);
  889. smalltalk.addMethod(
  890. smalltalk.method({
  891. selector: "collectionClass",
  892. fn: function (){
  893. var self=this;
  894. return smalltalk.withContext(function($ctx1) {
  895. return nil;
  896. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.CollectionTest.klass)})},
  897. messageSends: []}),
  898. smalltalk.CollectionTest.klass);
  899. smalltalk.addMethod(
  900. smalltalk.method({
  901. selector: "isAbstract",
  902. fn: function (){
  903. var self=this;
  904. return smalltalk.withContext(function($ctx1) {
  905. var $1;
  906. $1=_st(self._collectionClass())._isNil();
  907. return $1;
  908. }, function($ctx1) {$ctx1.fill(self,"isAbstract",{},smalltalk.CollectionTest.klass)})},
  909. messageSends: ["isNil", "collectionClass"]}),
  910. smalltalk.CollectionTest.klass);
  911. smalltalk.addClass('IndexableCollectionTest', smalltalk.CollectionTest, [], 'Kernel-Tests');
  912. smalltalk.addMethod(
  913. smalltalk.method({
  914. selector: "testAt",
  915. fn: function (){
  916. var self=this;
  917. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  918. return smalltalk.withContext(function($ctx1) {
  919. self._assert_equals_(_st(self._collection())._at_((4)),(-4));
  920. self._should_raise_((function(){
  921. return smalltalk.withContext(function($ctx2) {
  922. return _st(self._collection())._at_((5));
  923. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  924. return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.IndexableCollectionTest)})},
  925. messageSends: ["assert:equals:", "at:", "collection", "should:raise:"]}),
  926. smalltalk.IndexableCollectionTest);
  927. smalltalk.addMethod(
  928. smalltalk.method({
  929. selector: "testAtIfAbsent",
  930. fn: function (){
  931. var self=this;
  932. return smalltalk.withContext(function($ctx1) {
  933. self._assert_equals_(_st(self._collection())._at_ifAbsent_(_st(_st(self._collection())._size()).__plus((1)),(function(){
  934. return smalltalk.withContext(function($ctx2) {
  935. return "none";
  936. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"none");
  937. return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{},smalltalk.IndexableCollectionTest)})},
  938. messageSends: ["assert:equals:", "at:ifAbsent:", "+", "size", "collection"]}),
  939. smalltalk.IndexableCollectionTest);
  940. smalltalk.addMethod(
  941. smalltalk.method({
  942. selector: "testContains",
  943. fn: function (){
  944. var self=this;
  945. var collection;
  946. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  947. return smalltalk.withContext(function($ctx1) {
  948. collection=self._collection();
  949. self._assert_(_st(self._collection())._contains_((function(each){
  950. return smalltalk.withContext(function($ctx2) {
  951. return _st(each).__eq(_st(self._collection())._first());
  952. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
  953. self._deny_(_st(self._collection())._contains_((function(each){
  954. return smalltalk.withContext(function($ctx2) {
  955. return _st(each).__eq(_st($Object())._new());
  956. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
  957. return self}, function($ctx1) {$ctx1.fill(self,"testContains",{collection:collection},smalltalk.IndexableCollectionTest)})},
  958. messageSends: ["collection", "assert:", "contains:", "=", "first", "deny:", "new"]}),
  959. smalltalk.IndexableCollectionTest);
  960. smalltalk.addMethod(
  961. smalltalk.method({
  962. selector: "testIndexOf",
  963. fn: function (){
  964. var self=this;
  965. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  966. return smalltalk.withContext(function($ctx1) {
  967. self._assert_equals_(_st(self._collection())._indexOf_((2)),(2));
  968. self._should_raise_((function(){
  969. return smalltalk.withContext(function($ctx2) {
  970. return _st(self._collection())._indexOf_((999));
  971. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  972. self._assert_equals_(_st(self._collection())._indexOf_ifAbsent_((999),(function(){
  973. return smalltalk.withContext(function($ctx2) {
  974. return "sentinel";
  975. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"sentinel");
  976. return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.IndexableCollectionTest)})},
  977. messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"]}),
  978. smalltalk.IndexableCollectionTest);
  979. smalltalk.addMethod(
  980. smalltalk.method({
  981. selector: "testWithIndexDo",
  982. fn: function (){
  983. var self=this;
  984. var collection;
  985. return smalltalk.withContext(function($ctx1) {
  986. collection=self._collection();
  987. _st(self._collection())._withIndexDo_((function(each,index){
  988. return smalltalk.withContext(function($ctx2) {
  989. return self._assert_equals_(_st(collection)._at_(index),each);
  990. }, function($ctx2) {$ctx2.fillBlock({each:each,index:index},$ctx1)})}));
  991. return self}, function($ctx1) {$ctx1.fill(self,"testWithIndexDo",{collection:collection},smalltalk.IndexableCollectionTest)})},
  992. messageSends: ["collection", "withIndexDo:", "assert:equals:", "at:"]}),
  993. smalltalk.IndexableCollectionTest);
  994. smalltalk.addClass('HashedCollectionTest', smalltalk.IndexableCollectionTest, [], 'Kernel-Tests');
  995. smalltalk.addMethod(
  996. smalltalk.method({
  997. selector: "collection",
  998. fn: function (){
  999. var self=this;
  1000. return smalltalk.withContext(function($ctx1) {
  1001. var $1;
  1002. $1=smalltalk.HashedCollection._from_(["b".__minus_gt((1)),"a".__minus_gt((2)),"c".__minus_gt((3)),"d".__minus_gt((-4))]);
  1003. return $1;
  1004. }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.HashedCollectionTest)})},
  1005. messageSends: ["->"]}),
  1006. smalltalk.HashedCollectionTest);
  1007. smalltalk.addMethod(
  1008. smalltalk.method({
  1009. selector: "collectionWithDuplicates",
  1010. fn: function (){
  1011. var self=this;
  1012. return smalltalk.withContext(function($ctx1) {
  1013. var $1;
  1014. $1=smalltalk.HashedCollection._from_(["b".__minus_gt((1)),"a".__minus_gt((2)),"c".__minus_gt((3)),"d".__minus_gt((-4)),"e".__minus_gt((1)),"f".__minus_gt((2)),"g".__minus_gt((10))]);
  1015. return $1;
  1016. }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.HashedCollectionTest)})},
  1017. messageSends: ["->"]}),
  1018. smalltalk.HashedCollectionTest);
  1019. smalltalk.addMethod(
  1020. smalltalk.method({
  1021. selector: "testAsDictionary",
  1022. fn: function (){
  1023. var self=this;
  1024. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1025. return smalltalk.withContext(function($ctx1) {
  1026. self._assert_(_st(_st(_st(self._collectionClass())._new())._asDictionary())._isMemberOf_($Dictionary()));
  1027. return self}, function($ctx1) {$ctx1.fill(self,"testAsDictionary",{},smalltalk.HashedCollectionTest)})},
  1028. messageSends: ["assert:", "isMemberOf:", "asDictionary", "new", "collectionClass"]}),
  1029. smalltalk.HashedCollectionTest);
  1030. smalltalk.addMethod(
  1031. smalltalk.method({
  1032. selector: "testAt",
  1033. fn: function (){
  1034. var self=this;
  1035. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1036. return smalltalk.withContext(function($ctx1) {
  1037. self._assert_equals_(_st(self._collection())._at_("a"),(2));
  1038. self._should_raise_((function(){
  1039. return smalltalk.withContext(function($ctx2) {
  1040. return _st(self._collection())._at_((5));
  1041. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1042. return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.HashedCollectionTest)})},
  1043. messageSends: ["assert:equals:", "at:", "collection", "should:raise:"]}),
  1044. smalltalk.HashedCollectionTest);
  1045. smalltalk.addMethod(
  1046. smalltalk.method({
  1047. selector: "testContains",
  1048. fn: function (){
  1049. var self=this;
  1050. var collection;
  1051. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  1052. return smalltalk.withContext(function($ctx1) {
  1053. collection=self._collection();
  1054. self._assert_(_st(self._collection())._contains_((function(each){
  1055. return smalltalk.withContext(function($ctx2) {
  1056. return _st(each).__eq(_st(_st(self._collection())._values())._first());
  1057. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
  1058. self._deny_(_st(self._collection())._contains_((function(each){
  1059. return smalltalk.withContext(function($ctx2) {
  1060. return _st(each).__eq(_st($Object())._new());
  1061. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
  1062. return self}, function($ctx1) {$ctx1.fill(self,"testContains",{collection:collection},smalltalk.HashedCollectionTest)})},
  1063. messageSends: ["collection", "assert:", "contains:", "=", "first", "values", "deny:", "new"]}),
  1064. smalltalk.HashedCollectionTest);
  1065. smalltalk.addMethod(
  1066. smalltalk.method({
  1067. selector: "testFrom",
  1068. fn: function (){
  1069. var self=this;
  1070. var associations;
  1071. return smalltalk.withContext(function($ctx1) {
  1072. associations=["a".__minus_gt((1)),"b".__minus_gt((2))];
  1073. self._assertSameContents_as_(_st(_st(self._class())._collectionClass())._from_(associations),smalltalk.HashedCollection._from_(["a".__minus_gt((1)),"b".__minus_gt((2))]));
  1074. return self}, function($ctx1) {$ctx1.fill(self,"testFrom",{associations:associations},smalltalk.HashedCollectionTest)})},
  1075. messageSends: ["->", "assertSameContents:as:", "from:", "collectionClass", "class"]}),
  1076. smalltalk.HashedCollectionTest);
  1077. smalltalk.addMethod(
  1078. smalltalk.method({
  1079. selector: "testIndexOf",
  1080. fn: function (){
  1081. var self=this;
  1082. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1083. return smalltalk.withContext(function($ctx1) {
  1084. self._assert_equals_(_st(self._collection())._indexOf_((2)),"a");
  1085. self._should_raise_((function(){
  1086. return smalltalk.withContext(function($ctx2) {
  1087. return _st(self._collection())._indexOf_((999));
  1088. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1089. self._assert_equals_(_st(self._collection())._indexOf_ifAbsent_((999),(function(){
  1090. return smalltalk.withContext(function($ctx2) {
  1091. return "sentinel";
  1092. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"sentinel");
  1093. return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.HashedCollectionTest)})},
  1094. messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"]}),
  1095. smalltalk.HashedCollectionTest);
  1096. smalltalk.addMethod(
  1097. smalltalk.method({
  1098. selector: "testNewFromPairs",
  1099. fn: function (){
  1100. var self=this;
  1101. var flattenedAssociations;
  1102. return smalltalk.withContext(function($ctx1) {
  1103. flattenedAssociations=["a",(1),"b",(2)];
  1104. self._assertSameContents_as_(_st(_st(self._class())._collectionClass())._newFromPairs_(flattenedAssociations),smalltalk.HashedCollection._from_(["a".__minus_gt((1)),"b".__minus_gt((2))]));
  1105. return self}, function($ctx1) {$ctx1.fill(self,"testNewFromPairs",{flattenedAssociations:flattenedAssociations},smalltalk.HashedCollectionTest)})},
  1106. messageSends: ["assertSameContents:as:", "newFromPairs:", "collectionClass", "class", "->"]}),
  1107. smalltalk.HashedCollectionTest);
  1108. smalltalk.addMethod(
  1109. smalltalk.method({
  1110. selector: "collectionClass",
  1111. fn: function (){
  1112. var self=this;
  1113. function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
  1114. return smalltalk.withContext(function($ctx1) {
  1115. var $1;
  1116. $1=$HashedCollection();
  1117. return $1;
  1118. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.HashedCollectionTest.klass)})},
  1119. messageSends: []}),
  1120. smalltalk.HashedCollectionTest.klass);
  1121. smalltalk.addClass('DictionaryTest', smalltalk.HashedCollectionTest, [], 'Kernel-Tests');
  1122. smalltalk.addMethod(
  1123. smalltalk.method({
  1124. selector: "collection",
  1125. fn: function (){
  1126. var self=this;
  1127. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1128. return smalltalk.withContext(function($ctx1) {
  1129. var $2,$3,$1;
  1130. $2=_st($Dictionary())._new();
  1131. _st($2)._at_put_((1),(1));
  1132. _st($2)._at_put_("a",(2));
  1133. _st($2)._at_put_(true,(3));
  1134. _st($2)._at_put_((4),(-4));
  1135. $3=_st($2)._yourself();
  1136. $1=$3;
  1137. return $1;
  1138. }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.DictionaryTest)})},
  1139. messageSends: ["at:put:", "new", "yourself"]}),
  1140. smalltalk.DictionaryTest);
  1141. smalltalk.addMethod(
  1142. smalltalk.method({
  1143. selector: "collectionWithDuplicates",
  1144. fn: function (){
  1145. var self=this;
  1146. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1147. return smalltalk.withContext(function($ctx1) {
  1148. var $2,$3,$1;
  1149. $2=_st($Dictionary())._new();
  1150. _st($2)._at_put_((1),(1));
  1151. _st($2)._at_put_("a",(2));
  1152. _st($2)._at_put_(true,(3));
  1153. _st($2)._at_put_((4),(-4));
  1154. _st($2)._at_put_("b",(1));
  1155. _st($2)._at_put_((3),(3));
  1156. _st($2)._at_put_(false,(12));
  1157. $3=_st($2)._yourself();
  1158. $1=$3;
  1159. return $1;
  1160. }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.DictionaryTest)})},
  1161. messageSends: ["at:put:", "new", "yourself"]}),
  1162. smalltalk.DictionaryTest);
  1163. smalltalk.addMethod(
  1164. smalltalk.method({
  1165. selector: "testAccessing",
  1166. fn: function (){
  1167. var self=this;
  1168. var d;
  1169. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1170. return smalltalk.withContext(function($ctx1) {
  1171. d=_st($Dictionary())._new();
  1172. _st(d)._at_put_("hello","world");
  1173. self._assert_equals_(_st(d)._at_("hello"),"world");
  1174. self._assert_equals_(_st(d)._at_ifAbsent_("hello",(function(){
  1175. return smalltalk.withContext(function($ctx2) {
  1176. return nil;
  1177. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"world");
  1178. self._deny_(_st(_st(d)._at_ifAbsent_("foo",(function(){
  1179. return smalltalk.withContext(function($ctx2) {
  1180. return nil;
  1181. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))).__eq("world"));
  1182. self._assert_(_st(d)._includesKey_("hello"));
  1183. self._deny_(_st(d)._includesKey_("foo"));
  1184. _st(d)._at_put_((1),(2));
  1185. self._assert_equals_(_st(d)._at_((1)),(2));
  1186. _st(d)._at_put_((1).__at((3)),(3));
  1187. self._assert_equals_(_st(d)._at_((1).__at((3))),(3));
  1188. self._assert_(_st(d)._includesKey_((1).__at((3))));
  1189. self._deny_(_st(d)._includesKey_((3).__at((1))));
  1190. return self}, function($ctx1) {$ctx1.fill(self,"testAccessing",{d:d},smalltalk.DictionaryTest)})},
  1191. messageSends: ["new", "at:put:", "assert:equals:", "at:", "at:ifAbsent:", "deny:", "=", "assert:", "includesKey:", "@"]}),
  1192. smalltalk.DictionaryTest);
  1193. smalltalk.addMethod(
  1194. smalltalk.method({
  1195. selector: "testAsHashedCollection",
  1196. fn: function (){
  1197. var self=this;
  1198. function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
  1199. return smalltalk.withContext(function($ctx1) {
  1200. self._assert_(_st(_st(_st(self._collectionClass())._new())._asHashedCollection())._isMemberOf_($HashedCollection()));
  1201. return self}, function($ctx1) {$ctx1.fill(self,"testAsHashedCollection",{},smalltalk.DictionaryTest)})},
  1202. messageSends: ["assert:", "isMemberOf:", "asHashedCollection", "new", "collectionClass"]}),
  1203. smalltalk.DictionaryTest);
  1204. smalltalk.addMethod(
  1205. smalltalk.method({
  1206. selector: "testDynamicDictionaries",
  1207. fn: function (){
  1208. var self=this;
  1209. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1210. return smalltalk.withContext(function($ctx1) {
  1211. self._assert_equals_(_st(smalltalk.HashedCollection._from_(["hello".__minus_gt((1))]))._asDictionary(),_st($Dictionary())._with_("hello".__minus_gt((1))));
  1212. return self}, function($ctx1) {$ctx1.fill(self,"testDynamicDictionaries",{},smalltalk.DictionaryTest)})},
  1213. messageSends: ["assert:equals:", "asDictionary", "->", "with:"]}),
  1214. smalltalk.DictionaryTest);
  1215. smalltalk.addMethod(
  1216. smalltalk.method({
  1217. selector: "testEquality",
  1218. fn: function (){
  1219. var self=this;
  1220. var d1,d2;
  1221. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1222. return smalltalk.withContext(function($ctx1) {
  1223. var $1,$2,$3,$4,$5,$6,$7,$8,$9,$10;
  1224. self._assert_(_st(_st($Dictionary())._new()).__eq(_st($Dictionary())._new()));
  1225. $1=_st($Dictionary())._new();
  1226. _st($1)._at_put_((1),(2));
  1227. $2=_st($1)._yourself();
  1228. d1=$2;
  1229. $3=_st($Dictionary())._new();
  1230. _st($3)._at_put_((1),(2));
  1231. $4=_st($3)._yourself();
  1232. d2=$4;
  1233. self._assert_(_st(d1).__eq(d2));
  1234. $5=_st($Dictionary())._new();
  1235. _st($5)._at_put_((1),(3));
  1236. $6=_st($5)._yourself();
  1237. d2=$6;
  1238. self._deny_(_st(d1).__eq(d2));
  1239. $7=_st($Dictionary())._new();
  1240. _st($7)._at_put_((2),(2));
  1241. $8=_st($7)._yourself();
  1242. d2=$8;
  1243. self._deny_(_st(d1).__eq(d2));
  1244. $9=_st($Dictionary())._new();
  1245. _st($9)._at_put_((1),(2));
  1246. _st($9)._at_put_((3),(4));
  1247. $10=_st($9)._yourself();
  1248. d2=$10;
  1249. self._deny_(_st(d1).__eq(d2));
  1250. return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{d1:d1,d2:d2},smalltalk.DictionaryTest)})},
  1251. messageSends: ["assert:", "=", "new", "at:put:", "yourself", "deny:"]}),
  1252. smalltalk.DictionaryTest);
  1253. smalltalk.addMethod(
  1254. smalltalk.method({
  1255. selector: "testIfAbsent",
  1256. fn: function (){
  1257. var self=this;
  1258. var d,visited;
  1259. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1260. return smalltalk.withContext(function($ctx1) {
  1261. visited=false;
  1262. d=_st($Dictionary())._new();
  1263. _st(d)._at_ifAbsent_("hello",(function(){
  1264. return smalltalk.withContext(function($ctx2) {
  1265. visited=true;
  1266. return visited;
  1267. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1268. self._assert_(visited);
  1269. return self}, function($ctx1) {$ctx1.fill(self,"testIfAbsent",{d:d,visited:visited},smalltalk.DictionaryTest)})},
  1270. messageSends: ["new", "at:ifAbsent:", "assert:"]}),
  1271. smalltalk.DictionaryTest);
  1272. smalltalk.addMethod(
  1273. smalltalk.method({
  1274. selector: "testIfPresent",
  1275. fn: function (){
  1276. var self=this;
  1277. var d,visited,absent;
  1278. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1279. return smalltalk.withContext(function($ctx1) {
  1280. visited=false;
  1281. d=_st($Dictionary())._new();
  1282. _st(d)._at_put_("hello","world");
  1283. _st(d)._at_ifPresent_("hello",(function(value){
  1284. return smalltalk.withContext(function($ctx2) {
  1285. visited=value;
  1286. return visited;
  1287. }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}));
  1288. self._assert_equals_(visited,"world");
  1289. absent=_st(d)._at_ifPresent_("bye",(function(value){
  1290. return smalltalk.withContext(function($ctx2) {
  1291. visited=value;
  1292. return visited;
  1293. }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}));
  1294. self._assert_(_st(absent)._isNil());
  1295. return self}, function($ctx1) {$ctx1.fill(self,"testIfPresent",{d:d,visited:visited,absent:absent},smalltalk.DictionaryTest)})},
  1296. messageSends: ["new", "at:put:", "at:ifPresent:", "assert:equals:", "assert:", "isNil"]}),
  1297. smalltalk.DictionaryTest);
  1298. smalltalk.addMethod(
  1299. smalltalk.method({
  1300. selector: "testIfPresentIfAbsent",
  1301. fn: function (){
  1302. var self=this;
  1303. var d,visited;
  1304. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1305. return smalltalk.withContext(function($ctx1) {
  1306. visited=false;
  1307. d=_st($Dictionary())._new();
  1308. _st(d)._at_put_("hello","world");
  1309. _st(d)._at_ifPresent_ifAbsent_("hello",(function(value){
  1310. return smalltalk.withContext(function($ctx2) {
  1311. visited=value;
  1312. return visited;
  1313. }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}),(function(){
  1314. return smalltalk.withContext(function($ctx2) {
  1315. visited=true;
  1316. return visited;
  1317. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1318. self._assert_equals_(visited,"world");
  1319. _st(d)._at_ifPresent_ifAbsent_("buy",(function(value){
  1320. return smalltalk.withContext(function($ctx2) {
  1321. visited=value;
  1322. return visited;
  1323. }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}),(function(){
  1324. return smalltalk.withContext(function($ctx2) {
  1325. visited=true;
  1326. return visited;
  1327. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1328. self._assert_(visited);
  1329. return self}, function($ctx1) {$ctx1.fill(self,"testIfPresentIfAbsent",{d:d,visited:visited},smalltalk.DictionaryTest)})},
  1330. messageSends: ["new", "at:put:", "at:ifPresent:ifAbsent:", "assert:equals:", "assert:"]}),
  1331. smalltalk.DictionaryTest);
  1332. smalltalk.addMethod(
  1333. smalltalk.method({
  1334. selector: "testKeys",
  1335. fn: function (){
  1336. var self=this;
  1337. var d;
  1338. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1339. return smalltalk.withContext(function($ctx1) {
  1340. d=_st($Dictionary())._new();
  1341. _st(d)._at_put_((1),(2));
  1342. _st(d)._at_put_((2),(3));
  1343. _st(d)._at_put_((3),(4));
  1344. self._assert_equals_(_st(d)._keys(),[(1), (2), (3)]);
  1345. return self}, function($ctx1) {$ctx1.fill(self,"testKeys",{d:d},smalltalk.DictionaryTest)})},
  1346. messageSends: ["new", "at:put:", "assert:equals:", "keys"]}),
  1347. smalltalk.DictionaryTest);
  1348. smalltalk.addMethod(
  1349. smalltalk.method({
  1350. selector: "testPointKey",
  1351. fn: function (){
  1352. var self=this;
  1353. var d;
  1354. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1355. return smalltalk.withContext(function($ctx1) {
  1356. d=_st($Dictionary())._new();
  1357. _st(d)._at_put_((1).__at((1)),"foo");
  1358. self._assert_equals_(_st(d)._at_((1).__at((1))),"foo");
  1359. _st(d)._at_put_((1).__at((1)),"bar");
  1360. self._assert_equals_(_st(d)._at_((1).__at((1))),"bar");
  1361. _st(d)._removeKey_((1).__at((1)));
  1362. self._assert_equals_(_st(d)._at_ifAbsent_((1).__at((1)),(function(){
  1363. return smalltalk.withContext(function($ctx2) {
  1364. return "baz";
  1365. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"baz");
  1366. self._deny_(_st(d)._includesKey_((1).__at((1))));
  1367. return self}, function($ctx1) {$ctx1.fill(self,"testPointKey",{d:d},smalltalk.DictionaryTest)})},
  1368. messageSends: ["new", "at:put:", "@", "assert:equals:", "at:", "removeKey:", "at:ifAbsent:", "deny:", "includesKey:"]}),
  1369. smalltalk.DictionaryTest);
  1370. smalltalk.addMethod(
  1371. smalltalk.method({
  1372. selector: "testPrintString",
  1373. fn: function (){
  1374. var self=this;
  1375. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1376. return smalltalk.withContext(function($ctx1) {
  1377. var $1,$2;
  1378. $1=_st($Dictionary())._new();
  1379. _st($1)._at_put_("firstname","James");
  1380. _st($1)._at_put_("lastname","Bond");
  1381. $2=_st($1)._printString();
  1382. self._assert_equals_($2,"a Dictionary ('firstname' -> 'James' , 'lastname' -> 'Bond')");
  1383. return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{},smalltalk.DictionaryTest)})},
  1384. messageSends: ["assert:equals:", "at:put:", "new", "printString"]}),
  1385. smalltalk.DictionaryTest);
  1386. smalltalk.addMethod(
  1387. smalltalk.method({
  1388. selector: "testRemoveKey",
  1389. fn: function (){
  1390. var self=this;
  1391. var d,key;
  1392. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1393. return smalltalk.withContext(function($ctx1) {
  1394. d=_st($Dictionary())._new();
  1395. _st(d)._at_put_((1),(2));
  1396. _st(d)._at_put_((2),(3));
  1397. _st(d)._at_put_((3),(4));
  1398. key=(2);
  1399. self._assert_equals_(_st(d)._keys(),[(1), (2), (3)]);
  1400. _st(d)._removeKey_(key);
  1401. self._assert_equals_(_st(d)._keys(),[(1), (3)]);
  1402. self._assert_equals_(_st(d)._values(),[(2), (4)]);
  1403. self._deny_(_st(d)._includesKey_((2)));
  1404. return self}, function($ctx1) {$ctx1.fill(self,"testRemoveKey",{d:d,key:key},smalltalk.DictionaryTest)})},
  1405. messageSends: ["new", "at:put:", "assert:equals:", "keys", "removeKey:", "values", "deny:", "includesKey:"]}),
  1406. smalltalk.DictionaryTest);
  1407. smalltalk.addMethod(
  1408. smalltalk.method({
  1409. selector: "testRemoveKeyIfAbsent",
  1410. fn: function (){
  1411. var self=this;
  1412. var d,key;
  1413. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1414. return smalltalk.withContext(function($ctx1) {
  1415. d=_st($Dictionary())._new();
  1416. _st(d)._at_put_((1),(2));
  1417. _st(d)._at_put_((2),(3));
  1418. _st(d)._at_put_((3),(4));
  1419. key=(2);
  1420. self._assert_equals_(_st(d)._removeKey_(key),(3));
  1421. key=(3);
  1422. self._assert_equals_(_st(d)._removeKey_ifAbsent_(key,(function(){
  1423. return smalltalk.withContext(function($ctx2) {
  1424. return (42);
  1425. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(4));
  1426. key="why";
  1427. self._assert_equals_(_st(d)._removeKey_ifAbsent_(key,(function(){
  1428. return smalltalk.withContext(function($ctx2) {
  1429. return (42);
  1430. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(42));
  1431. return self}, function($ctx1) {$ctx1.fill(self,"testRemoveKeyIfAbsent",{d:d,key:key},smalltalk.DictionaryTest)})},
  1432. messageSends: ["new", "at:put:", "assert:equals:", "removeKey:", "removeKey:ifAbsent:"]}),
  1433. smalltalk.DictionaryTest);
  1434. smalltalk.addMethod(
  1435. smalltalk.method({
  1436. selector: "testSize",
  1437. fn: function (){
  1438. var self=this;
  1439. var d;
  1440. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1441. return smalltalk.withContext(function($ctx1) {
  1442. d=_st($Dictionary())._new();
  1443. self._assert_equals_(_st(d)._size(),(0));
  1444. _st(d)._at_put_((1),(2));
  1445. self._assert_equals_(_st(d)._size(),(1));
  1446. _st(d)._at_put_((2),(3));
  1447. self._assert_equals_(_st(d)._size(),(2));
  1448. return self}, function($ctx1) {$ctx1.fill(self,"testSize",{d:d},smalltalk.DictionaryTest)})},
  1449. messageSends: ["new", "assert:equals:", "size", "at:put:"]}),
  1450. smalltalk.DictionaryTest);
  1451. smalltalk.addMethod(
  1452. smalltalk.method({
  1453. selector: "testValues",
  1454. fn: function (){
  1455. var self=this;
  1456. var d;
  1457. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1458. return smalltalk.withContext(function($ctx1) {
  1459. d=_st($Dictionary())._new();
  1460. _st(d)._at_put_((1),(2));
  1461. _st(d)._at_put_((2),(3));
  1462. _st(d)._at_put_((3),(4));
  1463. self._assert_equals_(_st(d)._values(),[(2), (3), (4)]);
  1464. return self}, function($ctx1) {$ctx1.fill(self,"testValues",{d:d},smalltalk.DictionaryTest)})},
  1465. messageSends: ["new", "at:put:", "assert:equals:", "values"]}),
  1466. smalltalk.DictionaryTest);
  1467. smalltalk.addMethod(
  1468. smalltalk.method({
  1469. selector: "collectionClass",
  1470. fn: function (){
  1471. var self=this;
  1472. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  1473. return smalltalk.withContext(function($ctx1) {
  1474. var $1;
  1475. $1=$Dictionary();
  1476. return $1;
  1477. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.DictionaryTest.klass)})},
  1478. messageSends: []}),
  1479. smalltalk.DictionaryTest.klass);
  1480. smalltalk.addClass('SequenceableCollectionTest', smalltalk.IndexableCollectionTest, [], 'Kernel-Tests');
  1481. smalltalk.addClass('ArrayTest', smalltalk.SequenceableCollectionTest, [], 'Kernel-Tests');
  1482. smalltalk.addMethod(
  1483. smalltalk.method({
  1484. selector: "testAtIfAbsent",
  1485. fn: function (){
  1486. var self=this;
  1487. var array;
  1488. return smalltalk.withContext(function($ctx1) {
  1489. array=["hello", "world"];
  1490. self._assert_equals_(_st(array)._at_((1)),"hello");
  1491. self._assert_equals_(_st(array)._at_((2)),"world");
  1492. self._assert_equals_(_st(array)._at_ifAbsent_((2),(function(){
  1493. return smalltalk.withContext(function($ctx2) {
  1494. return "not found";
  1495. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"world");
  1496. self._assert_equals_(_st(array)._at_ifAbsent_((0),(function(){
  1497. return smalltalk.withContext(function($ctx2) {
  1498. return "not found";
  1499. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not found");
  1500. self._assert_equals_(_st(array)._at_ifAbsent_((-10),(function(){
  1501. return smalltalk.withContext(function($ctx2) {
  1502. return "not found";
  1503. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not found");
  1504. self._assert_equals_(_st(array)._at_ifAbsent_((3),(function(){
  1505. return smalltalk.withContext(function($ctx2) {
  1506. return "not found";
  1507. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not found");
  1508. return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{array:array},smalltalk.ArrayTest)})},
  1509. messageSends: ["assert:equals:", "at:", "at:ifAbsent:"]}),
  1510. smalltalk.ArrayTest);
  1511. smalltalk.addMethod(
  1512. smalltalk.method({
  1513. selector: "testFirstN",
  1514. fn: function (){
  1515. var self=this;
  1516. return smalltalk.withContext(function($ctx1) {
  1517. self._assert_equals_(_st([(1),(2),(3),(4),(5)])._first_((3)),[(1),(2),(3)]);
  1518. return self}, function($ctx1) {$ctx1.fill(self,"testFirstN",{},smalltalk.ArrayTest)})},
  1519. messageSends: ["assert:equals:", "first:"]}),
  1520. smalltalk.ArrayTest);
  1521. smalltalk.addMethod(
  1522. smalltalk.method({
  1523. selector: "testIfEmpty",
  1524. fn: function (){
  1525. var self=this;
  1526. return smalltalk.withContext(function($ctx1) {
  1527. self._assert_equals_(""._ifEmpty_((function(){
  1528. return smalltalk.withContext(function($ctx2) {
  1529. return "zork";
  1530. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"zork");
  1531. return self}, function($ctx1) {$ctx1.fill(self,"testIfEmpty",{},smalltalk.ArrayTest)})},
  1532. messageSends: ["assert:equals:", "ifEmpty:"]}),
  1533. smalltalk.ArrayTest);
  1534. smalltalk.addMethod(
  1535. smalltalk.method({
  1536. selector: "testPrintString",
  1537. fn: function (){
  1538. var self=this;
  1539. var array;
  1540. function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
  1541. return smalltalk.withContext(function($ctx1) {
  1542. var $1,$2,$3,$4;
  1543. array=_st($Array())._new();
  1544. self._assert_equals_(_st(array)._printString(),"an Array ()");
  1545. $1=array;
  1546. _st($1)._add_((1));
  1547. $2=_st($1)._add_((3));
  1548. self._assert_equals_(_st(array)._printString(),"an Array (1 3)");
  1549. _st(array)._add_("foo");
  1550. self._assert_equals_(_st(array)._printString(),"an Array (1 3 'foo')");
  1551. $3=array;
  1552. _st($3)._remove_((1));
  1553. $4=_st($3)._remove_((3));
  1554. self._assert_equals_(_st(array)._printString(),"an Array ('foo')");
  1555. _st(array)._addLast_((3));
  1556. self._assert_equals_(_st(array)._printString(),"an Array ('foo' 3)");
  1557. _st(array)._addLast_((3));
  1558. self._assert_equals_(_st(array)._printString(),"an Array ('foo' 3 3)");
  1559. return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{array:array},smalltalk.ArrayTest)})},
  1560. messageSends: ["new", "assert:equals:", "printString", "add:", "remove:", "addLast:"]}),
  1561. smalltalk.ArrayTest);
  1562. smalltalk.addMethod(
  1563. smalltalk.method({
  1564. selector: "testRemoveFromTo",
  1565. fn: function (){
  1566. var self=this;
  1567. return smalltalk.withContext(function($ctx1) {
  1568. self._assert_equals_([(1), (2), (3), (4)]._removeFrom_to_((1),(3)),[(4)]);
  1569. self._assert_equals_([(1), (2), (3), (4)]._removeFrom_to_((2),(3)),[(1), (4)]);
  1570. self._assert_equals_([(1), (2), (3), (4)]._removeFrom_to_((2),(4)),[(1)]);
  1571. return self}, function($ctx1) {$ctx1.fill(self,"testRemoveFromTo",{},smalltalk.ArrayTest)})},
  1572. messageSends: ["assert:equals:", "removeFrom:to:"]}),
  1573. smalltalk.ArrayTest);
  1574. smalltalk.addMethod(
  1575. smalltalk.method({
  1576. selector: "testRemoveIndex",
  1577. fn: function (){
  1578. var self=this;
  1579. return smalltalk.withContext(function($ctx1) {
  1580. self._assert_equals_([(1), (2), (3), (4)]._removeIndex_((2)),[(1), (3), (4)]);
  1581. self._assert_equals_([(1), (2), (3), (4)]._removeIndex_((1)),[(2), (3), (4)]);
  1582. self._assert_equals_(["hello"]._removeIndex_((1)),[]);
  1583. return self}, function($ctx1) {$ctx1.fill(self,"testRemoveIndex",{},smalltalk.ArrayTest)})},
  1584. messageSends: ["assert:equals:", "removeIndex:"]}),
  1585. smalltalk.ArrayTest);
  1586. smalltalk.addMethod(
  1587. smalltalk.method({
  1588. selector: "collectionClass",
  1589. fn: function (){
  1590. var self=this;
  1591. function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
  1592. return smalltalk.withContext(function($ctx1) {
  1593. var $1;
  1594. $1=$Array();
  1595. return $1;
  1596. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.ArrayTest.klass)})},
  1597. messageSends: []}),
  1598. smalltalk.ArrayTest.klass);
  1599. smalltalk.addClass('StringTest', smalltalk.SequenceableCollectionTest, [], 'Kernel-Tests');
  1600. smalltalk.addMethod(
  1601. smalltalk.method({
  1602. selector: "collection",
  1603. fn: function (){
  1604. var self=this;
  1605. return smalltalk.withContext(function($ctx1) {
  1606. return "hello";
  1607. }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.StringTest)})},
  1608. messageSends: []}),
  1609. smalltalk.StringTest);
  1610. smalltalk.addMethod(
  1611. smalltalk.method({
  1612. selector: "collectionWithDuplicates",
  1613. fn: function (){
  1614. var self=this;
  1615. return smalltalk.withContext(function($ctx1) {
  1616. return "abbaerte";
  1617. }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.StringTest)})},
  1618. messageSends: []}),
  1619. smalltalk.StringTest);
  1620. smalltalk.addMethod(
  1621. smalltalk.method({
  1622. selector: "testAddRemove",
  1623. fn: function (){
  1624. var self=this;
  1625. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1626. return smalltalk.withContext(function($ctx1) {
  1627. self._should_raise_((function(){
  1628. return smalltalk.withContext(function($ctx2) {
  1629. return "hello"._add_("a");
  1630. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1631. self._should_raise_((function(){
  1632. return smalltalk.withContext(function($ctx2) {
  1633. return "hello"._remove_("h");
  1634. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1635. return self}, function($ctx1) {$ctx1.fill(self,"testAddRemove",{},smalltalk.StringTest)})},
  1636. messageSends: ["should:raise:", "add:", "remove:"]}),
  1637. smalltalk.StringTest);
  1638. smalltalk.addMethod(
  1639. smalltalk.method({
  1640. selector: "testAsArray",
  1641. fn: function (){
  1642. var self=this;
  1643. return smalltalk.withContext(function($ctx1) {
  1644. self._assert_equals_("hello"._asArray(),["h", "e", "l", "l", "o"]);
  1645. return self}, function($ctx1) {$ctx1.fill(self,"testAsArray",{},smalltalk.StringTest)})},
  1646. messageSends: ["assert:equals:", "asArray"]}),
  1647. smalltalk.StringTest);
  1648. smalltalk.addMethod(
  1649. smalltalk.method({
  1650. selector: "testAt",
  1651. fn: function (){
  1652. var self=this;
  1653. return smalltalk.withContext(function($ctx1) {
  1654. self._assert_equals_("hello"._at_((1)),"h");
  1655. self._assert_equals_("hello"._at_((5)),"o");
  1656. self._assert_equals_("hello"._at_ifAbsent_((6),(function(){
  1657. return smalltalk.withContext(function($ctx2) {
  1658. return nil;
  1659. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),nil);
  1660. return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.StringTest)})},
  1661. messageSends: ["assert:equals:", "at:", "at:ifAbsent:"]}),
  1662. smalltalk.StringTest);
  1663. smalltalk.addMethod(
  1664. smalltalk.method({
  1665. selector: "testAtPut",
  1666. fn: function (){
  1667. var self=this;
  1668. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1669. return smalltalk.withContext(function($ctx1) {
  1670. self._should_raise_((function(){
  1671. return smalltalk.withContext(function($ctx2) {
  1672. return "hello"._at_put_((1),"a");
  1673. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1674. return self}, function($ctx1) {$ctx1.fill(self,"testAtPut",{},smalltalk.StringTest)})},
  1675. messageSends: ["should:raise:", "at:put:"]}),
  1676. smalltalk.StringTest);
  1677. smalltalk.addMethod(
  1678. smalltalk.method({
  1679. selector: "testCollect",
  1680. fn: function (){
  1681. var self=this;
  1682. var newCollection;
  1683. return smalltalk.withContext(function($ctx1) {
  1684. newCollection="hheelllloo";
  1685. self._assertSameContents_as_(_st(self._collection())._collect_((function(each){
  1686. return smalltalk.withContext(function($ctx2) {
  1687. return _st(each).__comma(each);
  1688. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
  1689. return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{newCollection:newCollection},smalltalk.StringTest)})},
  1690. messageSends: ["assertSameContents:as:", "collect:", ",", "collection"]}),
  1691. smalltalk.StringTest);
  1692. smalltalk.addMethod(
  1693. smalltalk.method({
  1694. selector: "testCopyWithoutAll",
  1695. fn: function (){
  1696. var self=this;
  1697. return smalltalk.withContext(function($ctx1) {
  1698. self._assert_equals_("*hello* *world*"._copyWithoutAll_("*"),"hello world");
  1699. return self}, function($ctx1) {$ctx1.fill(self,"testCopyWithoutAll",{},smalltalk.StringTest)})},
  1700. messageSends: ["assert:equals:", "copyWithoutAll:"]}),
  1701. smalltalk.StringTest);
  1702. smalltalk.addMethod(
  1703. smalltalk.method({
  1704. selector: "testDetect",
  1705. fn: function (){
  1706. var self=this;
  1707. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1708. return smalltalk.withContext(function($ctx1) {
  1709. self._assert_equals_(_st(self._collection())._detect_((function(each){
  1710. return smalltalk.withContext(function($ctx2) {
  1711. return _st(each).__eq("h");
  1712. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),"h");
  1713. self._should_raise_((function(){
  1714. return smalltalk.withContext(function($ctx2) {
  1715. return _st(self._collection())._detect_((function(each){
  1716. return smalltalk.withContext(function($ctx3) {
  1717. return _st(each).__eq((6));
  1718. }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx2)})}));
  1719. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1720. return self}, function($ctx1) {$ctx1.fill(self,"testDetect",{},smalltalk.StringTest)})},
  1721. messageSends: ["assert:equals:", "detect:", "=", "collection", "should:raise:"]}),
  1722. smalltalk.StringTest);
  1723. smalltalk.addMethod(
  1724. smalltalk.method({
  1725. selector: "testEquality",
  1726. fn: function (){
  1727. var self=this;
  1728. return smalltalk.withContext(function($ctx1) {
  1729. self._assert_equals_("hello","hello");
  1730. self._deny_("hello".__eq("world"));
  1731. self._deny_("hello".__eq([]._at_ifAbsent_((1),(function(){
  1732. return smalltalk.withContext(function($ctx2) {
  1733. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))));
  1734. self._assert_equals_("hello","hello"._yourself());
  1735. self._assert_equals_("hello"._yourself(),"hello");
  1736. self._deny_("".__eq((0)));
  1737. return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.StringTest)})},
  1738. messageSends: ["assert:equals:", "deny:", "=", "at:ifAbsent:", "yourself"]}),
  1739. smalltalk.StringTest);
  1740. smalltalk.addMethod(
  1741. smalltalk.method({
  1742. selector: "testIdentity",
  1743. fn: function (){
  1744. var self=this;
  1745. return smalltalk.withContext(function($ctx1) {
  1746. self._assert_("hello".__eq_eq("hello"));
  1747. self._deny_("hello".__eq_eq("world"));
  1748. self._assert_("hello".__eq_eq("hello"._yourself()));
  1749. self._assert_(_st("hello"._yourself()).__eq_eq("hello"));
  1750. self._deny_("".__eq_eq((0)));
  1751. return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.StringTest)})},
  1752. messageSends: ["assert:", "==", "deny:", "yourself"]}),
  1753. smalltalk.StringTest);
  1754. smalltalk.addMethod(
  1755. smalltalk.method({
  1756. selector: "testIncludesSubString",
  1757. fn: function (){
  1758. var self=this;
  1759. return smalltalk.withContext(function($ctx1) {
  1760. self._assert_("amber"._includesSubString_("ber"));
  1761. self._deny_("amber"._includesSubString_("zork"));
  1762. return self}, function($ctx1) {$ctx1.fill(self,"testIncludesSubString",{},smalltalk.StringTest)})},
  1763. messageSends: ["assert:", "includesSubString:", "deny:"]}),
  1764. smalltalk.StringTest);
  1765. smalltalk.addMethod(
  1766. smalltalk.method({
  1767. selector: "testIndexOf",
  1768. fn: function (){
  1769. var self=this;
  1770. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1771. return smalltalk.withContext(function($ctx1) {
  1772. self._assert_equals_(_st(self._collection())._indexOf_("e"),(2));
  1773. self._should_raise_((function(){
  1774. return smalltalk.withContext(function($ctx2) {
  1775. return _st(self._collection())._indexOf_((999));
  1776. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1777. self._assert_equals_(_st(self._collection())._indexOf_ifAbsent_((999),(function(){
  1778. return smalltalk.withContext(function($ctx2) {
  1779. return "sentinel";
  1780. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"sentinel");
  1781. return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.StringTest)})},
  1782. messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"]}),
  1783. smalltalk.StringTest);
  1784. smalltalk.addMethod(
  1785. smalltalk.method({
  1786. selector: "testJoin",
  1787. fn: function (){
  1788. var self=this;
  1789. return smalltalk.withContext(function($ctx1) {
  1790. self._assert_equals_(","._join_(["hello", "world"]),"hello,world");
  1791. return self}, function($ctx1) {$ctx1.fill(self,"testJoin",{},smalltalk.StringTest)})},
  1792. messageSends: ["assert:equals:", "join:"]}),
  1793. smalltalk.StringTest);
  1794. smalltalk.addMethod(
  1795. smalltalk.method({
  1796. selector: "testSelect",
  1797. fn: function (){
  1798. var self=this;
  1799. var newCollection;
  1800. return smalltalk.withContext(function($ctx1) {
  1801. newCollection="o";
  1802. self._assertSameContents_as_(_st(self._collection())._select_((function(each){
  1803. return smalltalk.withContext(function($ctx2) {
  1804. return _st(each).__eq("o");
  1805. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
  1806. return self}, function($ctx1) {$ctx1.fill(self,"testSelect",{newCollection:newCollection},smalltalk.StringTest)})},
  1807. messageSends: ["assertSameContents:as:", "select:", "=", "collection"]}),
  1808. smalltalk.StringTest);
  1809. smalltalk.addMethod(
  1810. smalltalk.method({
  1811. selector: "testSize",
  1812. fn: function (){
  1813. var self=this;
  1814. return smalltalk.withContext(function($ctx1) {
  1815. self._assert_equals_("smalltalk"._size(),(9));
  1816. self._assert_equals_(""._size(),(0));
  1817. return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.StringTest)})},
  1818. messageSends: ["assert:equals:", "size"]}),
  1819. smalltalk.StringTest);
  1820. smalltalk.addMethod(
  1821. smalltalk.method({
  1822. selector: "testStreamContents",
  1823. fn: function (){
  1824. var self=this;
  1825. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  1826. return smalltalk.withContext(function($ctx1) {
  1827. var $1,$2;
  1828. self._assert_equals_(_st($String())._streamContents_((function(aStream){
  1829. return smalltalk.withContext(function($ctx2) {
  1830. $1=aStream;
  1831. _st($1)._nextPutAll_("hello");
  1832. _st($1)._space();
  1833. $2=_st($1)._nextPutAll_("world");
  1834. return $2;
  1835. }, function($ctx2) {$ctx2.fillBlock({aStream:aStream},$ctx1)})})),"hello world");
  1836. return self}, function($ctx1) {$ctx1.fill(self,"testStreamContents",{},smalltalk.StringTest)})},
  1837. messageSends: ["assert:equals:", "streamContents:", "nextPutAll:", "space"]}),
  1838. smalltalk.StringTest);
  1839. smalltalk.addMethod(
  1840. smalltalk.method({
  1841. selector: "collectionClass",
  1842. fn: function (){
  1843. var self=this;
  1844. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  1845. return smalltalk.withContext(function($ctx1) {
  1846. var $1;
  1847. $1=$String();
  1848. return $1;
  1849. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StringTest.klass)})},
  1850. messageSends: []}),
  1851. smalltalk.StringTest.klass);
  1852. smalltalk.addClass('ConsoleTranscriptTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1853. smalltalk.addMethod(
  1854. smalltalk.method({
  1855. selector: "testShow",
  1856. fn: function (){
  1857. var self=this;
  1858. var originalTranscript;
  1859. function $Transcript(){return smalltalk.Transcript||(typeof Transcript=="undefined"?nil:Transcript)}
  1860. function $ConsoleTranscript(){return smalltalk.ConsoleTranscript||(typeof ConsoleTranscript=="undefined"?nil:ConsoleTranscript)}
  1861. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1862. return smalltalk.withContext(function($ctx1) {
  1863. originalTranscript=_st($Transcript())._current();
  1864. _st($Transcript())._register_(_st($ConsoleTranscript())._new());
  1865. self._shouldnt_raise_((function(){
  1866. return smalltalk.withContext(function($ctx2) {
  1867. return _st($Transcript())._show_("Hello console!");
  1868. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1869. self._shouldnt_raise_((function(){
  1870. return smalltalk.withContext(function($ctx2) {
  1871. return _st($Transcript())._show_(console);
  1872. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  1873. _st($Transcript())._register_(originalTranscript);
  1874. return self}, function($ctx1) {$ctx1.fill(self,"testShow",{originalTranscript:originalTranscript},smalltalk.ConsoleTranscriptTest)})},
  1875. messageSends: ["current", "register:", "new", "shouldnt:raise:", "show:"]}),
  1876. smalltalk.ConsoleTranscriptTest);
  1877. smalltalk.addClass('JSObjectProxyTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1878. smalltalk.addMethod(
  1879. smalltalk.method({
  1880. selector: "jsObject",
  1881. fn: function (){
  1882. var self=this;
  1883. return smalltalk.withContext(function($ctx1) {
  1884. return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}, d: '', 'e': null, 'f': undefined};
  1885. return self}, function($ctx1) {$ctx1.fill(self,"jsObject",{},smalltalk.JSObjectProxyTest)})},
  1886. messageSends: []}),
  1887. smalltalk.JSObjectProxyTest);
  1888. smalltalk.addMethod(
  1889. smalltalk.method({
  1890. selector: "testAtIfAbsent",
  1891. fn: function (){
  1892. var self=this;
  1893. var testObject;
  1894. return smalltalk.withContext(function($ctx1) {
  1895. testObject=self._jsObject();
  1896. self._assert_equals_(_st(testObject)._at_ifAbsent_("abc",(function(){
  1897. return smalltalk.withContext(function($ctx2) {
  1898. return "Property does not exist";
  1899. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"Property does not exist");
  1900. self._assert_equals_(_st(testObject)._at_ifAbsent_("e",(function(){
  1901. return smalltalk.withContext(function($ctx2) {
  1902. return "Property does not exist";
  1903. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),nil);
  1904. self._assert_equals_(_st(testObject)._at_ifAbsent_("a",(function(){
  1905. return smalltalk.withContext(function($ctx2) {
  1906. return "Property does not exist";
  1907. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(1));
  1908. self._assert_equals_(_st(testObject)._at_ifAbsent_("f",(function(){
  1909. return smalltalk.withContext(function($ctx2) {
  1910. return "Property does not exist";
  1911. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),nil);
  1912. return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
  1913. messageSends: ["jsObject", "assert:equals:", "at:ifAbsent:"]}),
  1914. smalltalk.JSObjectProxyTest);
  1915. smalltalk.addMethod(
  1916. smalltalk.method({
  1917. selector: "testAtIfPresent",
  1918. fn: function (){
  1919. var self=this;
  1920. var testObject;
  1921. return smalltalk.withContext(function($ctx1) {
  1922. testObject=self._jsObject();
  1923. self._assert_equals_(_st(testObject)._at_ifPresent_("abc",(function(x){
  1924. return smalltalk.withContext(function($ctx2) {
  1925. return "hello ".__comma(_st(x)._asString());
  1926. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),nil);
  1927. self._assert_equals_(_st(testObject)._at_ifPresent_("e",(function(x){
  1928. return smalltalk.withContext(function($ctx2) {
  1929. return "hello ".__comma(_st(x)._asString());
  1930. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),"hello nil");
  1931. self._assert_equals_(_st(testObject)._at_ifPresent_("a",(function(x){
  1932. return smalltalk.withContext(function($ctx2) {
  1933. return "hello ".__comma(_st(x)._asString());
  1934. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),"hello 1");
  1935. self._assert_equals_(_st(testObject)._at_ifPresent_("f",(function(x){
  1936. return smalltalk.withContext(function($ctx2) {
  1937. return "hello ".__comma(_st(x)._asString());
  1938. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),"hello nil");
  1939. return self}, function($ctx1) {$ctx1.fill(self,"testAtIfPresent",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
  1940. messageSends: ["jsObject", "assert:equals:", "at:ifPresent:", ",", "asString"]}),
  1941. smalltalk.JSObjectProxyTest);
  1942. smalltalk.addMethod(
  1943. smalltalk.method({
  1944. selector: "testAtIfPresentIfAbsent",
  1945. fn: function (){
  1946. var self=this;
  1947. var testObject;
  1948. return smalltalk.withContext(function($ctx1) {
  1949. testObject=self._jsObject();
  1950. self._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("abc",(function(x){
  1951. return smalltalk.withContext(function($ctx2) {
  1952. return "hello ".__comma(_st(x)._asString());
  1953. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
  1954. return smalltalk.withContext(function($ctx2) {
  1955. return "not present";
  1956. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not present");
  1957. self._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("e",(function(x){
  1958. return smalltalk.withContext(function($ctx2) {
  1959. return "hello ".__comma(_st(x)._asString());
  1960. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
  1961. return smalltalk.withContext(function($ctx2) {
  1962. return "not present";
  1963. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"hello nil");
  1964. self._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("a",(function(x){
  1965. return smalltalk.withContext(function($ctx2) {
  1966. return "hello ".__comma(_st(x)._asString());
  1967. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
  1968. return smalltalk.withContext(function($ctx2) {
  1969. return "not present";
  1970. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"hello 1");
  1971. self._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("f",(function(x){
  1972. return smalltalk.withContext(function($ctx2) {
  1973. return "hello ".__comma(_st(x)._asString());
  1974. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
  1975. return smalltalk.withContext(function($ctx2) {
  1976. return "not present";
  1977. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"hello nil");
  1978. return self}, function($ctx1) {$ctx1.fill(self,"testAtIfPresentIfAbsent",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
  1979. messageSends: ["jsObject", "assert:equals:", "at:ifPresent:ifAbsent:", ",", "asString"]}),
  1980. smalltalk.JSObjectProxyTest);
  1981. smalltalk.addMethod(
  1982. smalltalk.method({
  1983. selector: "testDNU",
  1984. fn: function (){
  1985. var self=this;
  1986. function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
  1987. return smalltalk.withContext(function($ctx1) {
  1988. self._should_raise_((function(){
  1989. return smalltalk.withContext(function($ctx2) {
  1990. return _st(self._jsObject())._foo();
  1991. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  1992. return self}, function($ctx1) {$ctx1.fill(self,"testDNU",{},smalltalk.JSObjectProxyTest)})},
  1993. messageSends: ["should:raise:", "foo", "jsObject"]}),
  1994. smalltalk.JSObjectProxyTest);
  1995. smalltalk.addMethod(
  1996. smalltalk.method({
  1997. selector: "testMessageSend",
  1998. fn: function (){
  1999. var self=this;
  2000. return smalltalk.withContext(function($ctx1) {
  2001. self._assert_equals_(_st(self._jsObject())._a(),(1));
  2002. self._assert_equals_(_st(self._jsObject())._b(),(2));
  2003. self._assert_equals_(_st(self._jsObject())._c_((3)),(3));
  2004. return self}, function($ctx1) {$ctx1.fill(self,"testMessageSend",{},smalltalk.JSObjectProxyTest)})},
  2005. messageSends: ["assert:equals:", "a", "jsObject", "b", "c:"]}),
  2006. smalltalk.JSObjectProxyTest);
  2007. smalltalk.addMethod(
  2008. smalltalk.method({
  2009. selector: "testMethodWithArguments",
  2010. fn: function (){
  2011. var self=this;
  2012. return smalltalk.withContext(function($ctx1) {
  2013. self._assert_equals_(_st(self._jsObject())._c_((1)),(1));
  2014. return self}, function($ctx1) {$ctx1.fill(self,"testMethodWithArguments",{},smalltalk.JSObjectProxyTest)})},
  2015. messageSends: ["assert:equals:", "c:", "jsObject"]}),
  2016. smalltalk.JSObjectProxyTest);
  2017. smalltalk.addMethod(
  2018. smalltalk.method({
  2019. selector: "testPrinting",
  2020. fn: function (){
  2021. var self=this;
  2022. return smalltalk.withContext(function($ctx1) {
  2023. self._assert_equals_(_st(self._jsObject())._printString(),"[object Object]");
  2024. return self}, function($ctx1) {$ctx1.fill(self,"testPrinting",{},smalltalk.JSObjectProxyTest)})},
  2025. messageSends: ["assert:equals:", "printString", "jsObject"]}),
  2026. smalltalk.JSObjectProxyTest);
  2027. smalltalk.addMethod(
  2028. smalltalk.method({
  2029. selector: "testPropertyThatReturnsEmptyString",
  2030. fn: function (){
  2031. var self=this;
  2032. var object;
  2033. return smalltalk.withContext(function($ctx1) {
  2034. object=self._jsObject();
  2035. self._assert_equals_(_st(object)._d(),"");
  2036. _st(object)._d_("hello");
  2037. self._assert_equals_(_st(object)._d(),"hello");
  2038. return self}, function($ctx1) {$ctx1.fill(self,"testPropertyThatReturnsEmptyString",{object:object},smalltalk.JSObjectProxyTest)})},
  2039. messageSends: ["jsObject", "assert:equals:", "d", "d:"]}),
  2040. smalltalk.JSObjectProxyTest);
  2041. smalltalk.addMethod(
  2042. smalltalk.method({
  2043. selector: "testPropertyThatReturnsUndefined",
  2044. fn: function (){
  2045. var self=this;
  2046. var object;
  2047. function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
  2048. return smalltalk.withContext(function($ctx1) {
  2049. object=self._jsObject();
  2050. self._shouldnt_raise_((function(){
  2051. return smalltalk.withContext(function($ctx2) {
  2052. return _st(object)._e();
  2053. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2054. self._assert_(_st(_st(object)._e())._isNil());
  2055. return self}, function($ctx1) {$ctx1.fill(self,"testPropertyThatReturnsUndefined",{object:object},smalltalk.JSObjectProxyTest)})},
  2056. messageSends: ["jsObject", "shouldnt:raise:", "e", "assert:", "isNil"]}),
  2057. smalltalk.JSObjectProxyTest);
  2058. smalltalk.addMethod(
  2059. smalltalk.method({
  2060. selector: "testValue",
  2061. fn: function (){
  2062. var self=this;
  2063. var testObject;
  2064. return smalltalk.withContext(function($ctx1) {
  2065. testObject=self._jsObject();
  2066. self._assert_equals_(_st(_st(testObject)._value())._printString(),"[object Object]");
  2067. _st(testObject)._at_put_("value","aValue");
  2068. self._assert_equals_(_st(testObject)._value(),"aValue");
  2069. return self}, function($ctx1) {$ctx1.fill(self,"testValue",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
  2070. messageSends: ["jsObject", "assert:equals:", "printString", "value", "at:put:"]}),
  2071. smalltalk.JSObjectProxyTest);
  2072. smalltalk.addMethod(
  2073. smalltalk.method({
  2074. selector: "testYourself",
  2075. fn: function (){
  2076. var self=this;
  2077. var object;
  2078. return smalltalk.withContext(function($ctx1) {
  2079. var $1,$2;
  2080. $1=self._jsObject();
  2081. _st($1)._d_("test");
  2082. $2=_st($1)._yourself();
  2083. object=$2;
  2084. self._assert_equals_(_st(object)._d(),"test");
  2085. return self}, function($ctx1) {$ctx1.fill(self,"testYourself",{object:object},smalltalk.JSObjectProxyTest)})},
  2086. messageSends: ["d:", "jsObject", "yourself", "assert:equals:", "d"]}),
  2087. smalltalk.JSObjectProxyTest);
  2088. smalltalk.addClass('JavaScriptExceptionTest', smalltalk.TestCase, [], 'Kernel-Tests');
  2089. smalltalk.addMethod(
  2090. smalltalk.method({
  2091. selector: "testCatchingException",
  2092. fn: function (){
  2093. var self=this;
  2094. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  2095. return smalltalk.withContext(function($ctx1) {
  2096. _st((function(){
  2097. return smalltalk.withContext(function($ctx2) {
  2098. return self._throwException();
  2099. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_($Error(),(function(error){
  2100. return smalltalk.withContext(function($ctx2) {
  2101. return self._assert_(_st(_st(error)._exception()).__eq("test"));
  2102. }, function($ctx2) {$ctx2.fillBlock({error:error},$ctx1)})}));
  2103. return self}, function($ctx1) {$ctx1.fill(self,"testCatchingException",{},smalltalk.JavaScriptExceptionTest)})},
  2104. messageSends: ["on:do:", "assert:", "=", "exception", "throwException"]}),
  2105. smalltalk.JavaScriptExceptionTest);
  2106. smalltalk.addMethod(
  2107. smalltalk.method({
  2108. selector: "testRaisingException",
  2109. fn: function (){
  2110. var self=this;
  2111. function $JavaScriptException(){return smalltalk.JavaScriptException||(typeof JavaScriptException=="undefined"?nil:JavaScriptException)}
  2112. return smalltalk.withContext(function($ctx1) {
  2113. self._should_raise_((function(){
  2114. return smalltalk.withContext(function($ctx2) {
  2115. return self._throwException();
  2116. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$JavaScriptException());
  2117. return self}, function($ctx1) {$ctx1.fill(self,"testRaisingException",{},smalltalk.JavaScriptExceptionTest)})},
  2118. messageSends: ["should:raise:", "throwException"]}),
  2119. smalltalk.JavaScriptExceptionTest);
  2120. smalltalk.addMethod(
  2121. smalltalk.method({
  2122. selector: "throwException",
  2123. fn: function (){
  2124. var self=this;
  2125. return smalltalk.withContext(function($ctx1) {
  2126. throw 'test';
  2127. return self}, function($ctx1) {$ctx1.fill(self,"throwException",{},smalltalk.JavaScriptExceptionTest)})},
  2128. messageSends: []}),
  2129. smalltalk.JavaScriptExceptionTest);
  2130. smalltalk.addClass('MessageSendTest', smalltalk.TestCase, [], 'Kernel-Tests');
  2131. smalltalk.addMethod(
  2132. smalltalk.method({
  2133. selector: "testValue",
  2134. fn: function (){
  2135. var self=this;
  2136. var messageSend;
  2137. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2138. function $MessageSend(){return smalltalk.MessageSend||(typeof MessageSend=="undefined"?nil:MessageSend)}
  2139. return smalltalk.withContext(function($ctx1) {
  2140. var $1,$2;
  2141. $1=_st($MessageSend())._new();
  2142. _st($1)._receiver_(_st($Object())._new());
  2143. _st($1)._selector_("asString");
  2144. $2=_st($1)._yourself();
  2145. messageSend=$2;
  2146. self._assert_equals_(_st(messageSend)._value(),"an Object");
  2147. return self}, function($ctx1) {$ctx1.fill(self,"testValue",{messageSend:messageSend},smalltalk.MessageSendTest)})},
  2148. messageSends: ["receiver:", "new", "selector:", "yourself", "assert:equals:", "value"]}),
  2149. smalltalk.MessageSendTest);
  2150. smalltalk.addMethod(
  2151. smalltalk.method({
  2152. selector: "testValueWithArguments",
  2153. fn: function (){
  2154. var self=this;
  2155. var messageSend;
  2156. function $MessageSend(){return smalltalk.MessageSend||(typeof MessageSend=="undefined"?nil:MessageSend)}
  2157. return smalltalk.withContext(function($ctx1) {
  2158. var $1,$2;
  2159. $1=_st($MessageSend())._new();
  2160. _st($1)._receiver_((2));
  2161. _st($1)._selector_("+");
  2162. $2=_st($1)._yourself();
  2163. messageSend=$2;
  2164. self._assert_equals_(_st(messageSend)._value_((3)),(5));
  2165. self._assert_equals_(_st(messageSend)._valueWithPossibleArguments_([(4)]),(6));
  2166. return self}, function($ctx1) {$ctx1.fill(self,"testValueWithArguments",{messageSend:messageSend},smalltalk.MessageSendTest)})},
  2167. messageSends: ["receiver:", "new", "selector:", "yourself", "assert:equals:", "value:", "valueWithPossibleArguments:"]}),
  2168. smalltalk.MessageSendTest);
  2169. smalltalk.addClass('NumberTest', smalltalk.TestCase, [], 'Kernel-Tests');
  2170. smalltalk.addMethod(
  2171. smalltalk.method({
  2172. selector: "testAbs",
  2173. fn: function (){
  2174. var self=this;
  2175. return smalltalk.withContext(function($ctx1) {
  2176. self._assert_equals_((4)._abs(),(4));
  2177. self._assert_equals_((-4)._abs(),(4));
  2178. return self}, function($ctx1) {$ctx1.fill(self,"testAbs",{},smalltalk.NumberTest)})},
  2179. messageSends: ["assert:equals:", "abs"]}),
  2180. smalltalk.NumberTest);
  2181. smalltalk.addMethod(
  2182. smalltalk.method({
  2183. selector: "testArithmetic",
  2184. fn: function (){
  2185. var self=this;
  2186. return smalltalk.withContext(function($ctx1) {
  2187. self._assert_equals_((1.5).__plus((1)),(2.5));
  2188. self._assert_equals_((2).__minus((1)),(1));
  2189. self._assert_equals_((-2).__minus((1)),(-3));
  2190. self._assert_equals_((12).__slash((2)),(6));
  2191. self._assert_equals_((3).__star((4)),(12));
  2192. self._assert_equals_(_st((1).__plus((2))).__star((3)),(9));
  2193. self._assert_equals_((1).__plus((2).__star((3))),(7));
  2194. return self}, function($ctx1) {$ctx1.fill(self,"testArithmetic",{},smalltalk.NumberTest)})},
  2195. messageSends: ["assert:equals:", "+", "-", "/", "*"]}),
  2196. smalltalk.NumberTest);
  2197. smalltalk.addMethod(
  2198. smalltalk.method({
  2199. selector: "testComparison",
  2200. fn: function (){
  2201. var self=this;
  2202. return smalltalk.withContext(function($ctx1) {
  2203. self._assert_((3).__gt((2)));
  2204. self._assert_((2).__lt((3)));
  2205. self._deny_((3).__lt((2)));
  2206. self._deny_((2).__gt((3)));
  2207. self._assert_((3).__gt_eq((3)));
  2208. self._assert_((3.1).__gt_eq((3)));
  2209. self._assert_((3).__lt_eq((3)));
  2210. self._assert_((3).__lt_eq((3.1)));
  2211. return self}, function($ctx1) {$ctx1.fill(self,"testComparison",{},smalltalk.NumberTest)})},
  2212. messageSends: ["assert:", ">", "<", "deny:", ">=", "<="]}),
  2213. smalltalk.NumberTest);
  2214. smalltalk.addMethod(
  2215. smalltalk.method({
  2216. selector: "testCopying",
  2217. fn: function (){
  2218. var self=this;
  2219. return smalltalk.withContext(function($ctx1) {
  2220. self._assert_(_st((1)._copy()).__eq_eq((1)));
  2221. self._assert_(_st((1)._deepCopy()).__eq_eq((1)));
  2222. return self}, function($ctx1) {$ctx1.fill(self,"testCopying",{},smalltalk.NumberTest)})},
  2223. messageSends: ["assert:", "==", "copy", "deepCopy"]}),
  2224. smalltalk.NumberTest);
  2225. smalltalk.addMethod(
  2226. smalltalk.method({
  2227. selector: "testEquality",
  2228. fn: function (){
  2229. var self=this;
  2230. return smalltalk.withContext(function($ctx1) {
  2231. self._assert_((1).__eq((1)));
  2232. self._assert_((0).__eq((0)));
  2233. self._deny_((1).__eq((0)));
  2234. self._assert_(_st((1)._yourself()).__eq((1)));
  2235. self._assert_((1).__eq((1)._yourself()));
  2236. self._assert_(_st((1)._yourself()).__eq((1)._yourself()));
  2237. self._deny_((0).__eq(false));
  2238. self._deny_(false.__eq((0)));
  2239. self._deny_("".__eq((0)));
  2240. self._deny_((0).__eq(""));
  2241. return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.NumberTest)})},
  2242. messageSends: ["assert:", "=", "deny:", "yourself"]}),
  2243. smalltalk.NumberTest);
  2244. smalltalk.addMethod(
  2245. smalltalk.method({
  2246. selector: "testHexNumbers",
  2247. fn: function (){
  2248. var self=this;
  2249. return smalltalk.withContext(function($ctx1) {
  2250. self._assert_equals_((9),(9));
  2251. self._assert_equals_((10)._truncated(),(10));
  2252. self._assert_equals_((11)._truncated(),(11));
  2253. self._assert_equals_((12)._truncated(),(12));
  2254. self._assert_equals_((13)._truncated(),(13));
  2255. self._assert_equals_((14)._truncated(),(14));
  2256. self._assert_equals_((15)._truncated(),(15));
  2257. return self}, function($ctx1) {$ctx1.fill(self,"testHexNumbers",{},smalltalk.NumberTest)})},
  2258. messageSends: ["assert:equals:", "truncated"]}),
  2259. smalltalk.NumberTest);
  2260. smalltalk.addMethod(
  2261. smalltalk.method({
  2262. selector: "testIdentity",
  2263. fn: function (){
  2264. var self=this;
  2265. return smalltalk.withContext(function($ctx1) {
  2266. self._assert_((1).__eq_eq((1)));
  2267. self._assert_((0).__eq_eq((0)));
  2268. self._deny_((1).__eq_eq((0)));
  2269. self._assert_(_st((1)._yourself()).__eq_eq((1)));
  2270. self._assert_((1).__eq_eq((1)._yourself()));
  2271. self._assert_(_st((1)._yourself()).__eq_eq((1)._yourself()));
  2272. self._deny_((1).__eq_eq((2)));
  2273. return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.NumberTest)})},
  2274. messageSends: ["assert:", "==", "deny:", "yourself"]}),
  2275. smalltalk.NumberTest);
  2276. smalltalk.addMethod(
  2277. smalltalk.method({
  2278. selector: "testInvalidHexNumbers",
  2279. fn: function (){
  2280. var self=this;
  2281. function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
  2282. return smalltalk.withContext(function($ctx1) {
  2283. self._should_raise_((function(){
  2284. return smalltalk.withContext(function($ctx2) {
  2285. return (16)._rG();
  2286. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2287. self._should_raise_((function(){
  2288. return smalltalk.withContext(function($ctx2) {
  2289. return (16)._rg();
  2290. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2291. self._should_raise_((function(){
  2292. return smalltalk.withContext(function($ctx2) {
  2293. return (16)._rH();
  2294. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2295. self._should_raise_((function(){
  2296. return smalltalk.withContext(function($ctx2) {
  2297. return (16)._rh();
  2298. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2299. self._should_raise_((function(){
  2300. return smalltalk.withContext(function($ctx2) {
  2301. return (16)._rI();
  2302. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2303. self._should_raise_((function(){
  2304. return smalltalk.withContext(function($ctx2) {
  2305. return (16)._ri();
  2306. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2307. self._should_raise_((function(){
  2308. return smalltalk.withContext(function($ctx2) {
  2309. return (16)._rJ();
  2310. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2311. self._should_raise_((function(){
  2312. return smalltalk.withContext(function($ctx2) {
  2313. return (16)._rj();
  2314. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2315. self._should_raise_((function(){
  2316. return smalltalk.withContext(function($ctx2) {
  2317. return (16)._rK();
  2318. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2319. self._should_raise_((function(){
  2320. return smalltalk.withContext(function($ctx2) {
  2321. return (16)._rk();
  2322. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2323. self._should_raise_((function(){
  2324. return smalltalk.withContext(function($ctx2) {
  2325. return (16)._rL();
  2326. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2327. self._should_raise_((function(){
  2328. return smalltalk.withContext(function($ctx2) {
  2329. return (16)._rl();
  2330. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2331. self._should_raise_((function(){
  2332. return smalltalk.withContext(function($ctx2) {
  2333. return (16)._rM();
  2334. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2335. self._should_raise_((function(){
  2336. return smalltalk.withContext(function($ctx2) {
  2337. return (16)._rm();
  2338. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2339. self._should_raise_((function(){
  2340. return smalltalk.withContext(function($ctx2) {
  2341. return (16)._rN();
  2342. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2343. self._should_raise_((function(){
  2344. return smalltalk.withContext(function($ctx2) {
  2345. return (16)._rn();
  2346. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2347. self._should_raise_((function(){
  2348. return smalltalk.withContext(function($ctx2) {
  2349. return (16)._rO();
  2350. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2351. self._should_raise_((function(){
  2352. return smalltalk.withContext(function($ctx2) {
  2353. return (16)._ro();
  2354. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2355. self._should_raise_((function(){
  2356. return smalltalk.withContext(function($ctx2) {
  2357. return (16)._rP();
  2358. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2359. self._should_raise_((function(){
  2360. return smalltalk.withContext(function($ctx2) {
  2361. return (16)._rp();
  2362. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2363. self._should_raise_((function(){
  2364. return smalltalk.withContext(function($ctx2) {
  2365. return (16)._rQ();
  2366. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2367. self._should_raise_((function(){
  2368. return smalltalk.withContext(function($ctx2) {
  2369. return (16)._rq();
  2370. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2371. self._should_raise_((function(){
  2372. return smalltalk.withContext(function($ctx2) {
  2373. return (16)._rR();
  2374. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2375. self._should_raise_((function(){
  2376. return smalltalk.withContext(function($ctx2) {
  2377. return (16)._rr();
  2378. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2379. self._should_raise_((function(){
  2380. return smalltalk.withContext(function($ctx2) {
  2381. return (16)._rS();
  2382. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2383. self._should_raise_((function(){
  2384. return smalltalk.withContext(function($ctx2) {
  2385. return (16)._rs();
  2386. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2387. self._should_raise_((function(){
  2388. return smalltalk.withContext(function($ctx2) {
  2389. return (16)._rT();
  2390. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2391. self._should_raise_((function(){
  2392. return smalltalk.withContext(function($ctx2) {
  2393. return (16)._rt();
  2394. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2395. self._should_raise_((function(){
  2396. return smalltalk.withContext(function($ctx2) {
  2397. return (16)._rU();
  2398. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2399. self._should_raise_((function(){
  2400. return smalltalk.withContext(function($ctx2) {
  2401. return (16)._ru();
  2402. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2403. self._should_raise_((function(){
  2404. return smalltalk.withContext(function($ctx2) {
  2405. return (16)._rV();
  2406. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2407. self._should_raise_((function(){
  2408. return smalltalk.withContext(function($ctx2) {
  2409. return (16)._rv();
  2410. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2411. self._should_raise_((function(){
  2412. return smalltalk.withContext(function($ctx2) {
  2413. return (16)._rW();
  2414. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2415. self._should_raise_((function(){
  2416. return smalltalk.withContext(function($ctx2) {
  2417. return (16)._rw();
  2418. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2419. self._should_raise_((function(){
  2420. return smalltalk.withContext(function($ctx2) {
  2421. return (16)._rX();
  2422. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2423. self._should_raise_((function(){
  2424. return smalltalk.withContext(function($ctx2) {
  2425. return (16)._rx();
  2426. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2427. self._should_raise_((function(){
  2428. return smalltalk.withContext(function($ctx2) {
  2429. return (16)._rY();
  2430. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2431. self._should_raise_((function(){
  2432. return smalltalk.withContext(function($ctx2) {
  2433. return (16)._ry();
  2434. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2435. self._should_raise_((function(){
  2436. return smalltalk.withContext(function($ctx2) {
  2437. return (16)._rZ();
  2438. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2439. self._should_raise_((function(){
  2440. return smalltalk.withContext(function($ctx2) {
  2441. return (16)._rz();
  2442. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2443. self._should_raise_((function(){
  2444. return smalltalk.withContext(function($ctx2) {
  2445. return (11259375)._Z();
  2446. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2447. return self}, function($ctx1) {$ctx1.fill(self,"testInvalidHexNumbers",{},smalltalk.NumberTest)})},
  2448. 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"]}),
  2449. smalltalk.NumberTest);
  2450. smalltalk.addMethod(
  2451. smalltalk.method({
  2452. selector: "testMinMax",
  2453. fn: function (){
  2454. var self=this;
  2455. return smalltalk.withContext(function($ctx1) {
  2456. self._assert_equals_((2)._max_((5)),(5));
  2457. self._assert_equals_((2)._min_((5)),(2));
  2458. return self}, function($ctx1) {$ctx1.fill(self,"testMinMax",{},smalltalk.NumberTest)})},
  2459. messageSends: ["assert:equals:", "max:", "min:"]}),
  2460. smalltalk.NumberTest);
  2461. smalltalk.addMethod(
  2462. smalltalk.method({
  2463. selector: "testNegated",
  2464. fn: function (){
  2465. var self=this;
  2466. return smalltalk.withContext(function($ctx1) {
  2467. self._assert_equals_((3)._negated(),(-3));
  2468. self._assert_equals_((-3)._negated(),(3));
  2469. return self}, function($ctx1) {$ctx1.fill(self,"testNegated",{},smalltalk.NumberTest)})},
  2470. messageSends: ["assert:equals:", "negated"]}),
  2471. smalltalk.NumberTest);
  2472. smalltalk.addMethod(
  2473. smalltalk.method({
  2474. selector: "testPrintShowingDecimalPlaces",
  2475. fn: function (){
  2476. var self=this;
  2477. return smalltalk.withContext(function($ctx1) {
  2478. self._assert_equals_((23)._printShowingDecimalPlaces_((2)),"23.00");
  2479. self._assert_equals_((23.5698)._printShowingDecimalPlaces_((2)),"23.57");
  2480. self._assert_equals_(_st((234.567)._negated())._printShowingDecimalPlaces_((5)),"-234.56700");
  2481. self._assert_equals_((23.4567)._printShowingDecimalPlaces_((0)),"23");
  2482. self._assert_equals_((23.5567)._printShowingDecimalPlaces_((0)),"24");
  2483. self._assert_equals_(_st((23.4567)._negated())._printShowingDecimalPlaces_((0)),"-23");
  2484. self._assert_equals_(_st((23.5567)._negated())._printShowingDecimalPlaces_((0)),"-24");
  2485. self._assert_equals_((100000000)._printShowingDecimalPlaces_((1)),"100000000.0");
  2486. self._assert_equals_((0.98)._printShowingDecimalPlaces_((5)),"0.98000");
  2487. self._assert_equals_(_st((0.98)._negated())._printShowingDecimalPlaces_((2)),"-0.98");
  2488. self._assert_equals_((2.567)._printShowingDecimalPlaces_((2)),"2.57");
  2489. self._assert_equals_((-2.567)._printShowingDecimalPlaces_((2)),"-2.57");
  2490. self._assert_equals_((0)._printShowingDecimalPlaces_((2)),"0.00");
  2491. return self}, function($ctx1) {$ctx1.fill(self,"testPrintShowingDecimalPlaces",{},smalltalk.NumberTest)})},
  2492. messageSends: ["assert:equals:", "printShowingDecimalPlaces:", "negated"]}),
  2493. smalltalk.NumberTest);
  2494. smalltalk.addMethod(
  2495. smalltalk.method({
  2496. selector: "testRounded",
  2497. fn: function (){
  2498. var self=this;
  2499. return smalltalk.withContext(function($ctx1) {
  2500. self._assert_equals_((3)._rounded(),(3));
  2501. self._assert_equals_((3.212)._rounded(),(3));
  2502. self._assert_equals_((3.51)._rounded(),(4));
  2503. return self}, function($ctx1) {$ctx1.fill(self,"testRounded",{},smalltalk.NumberTest)})},
  2504. messageSends: ["assert:equals:", "rounded"]}),
  2505. smalltalk.NumberTest);
  2506. smalltalk.addMethod(
  2507. smalltalk.method({
  2508. selector: "testSqrt",
  2509. fn: function (){
  2510. var self=this;
  2511. return smalltalk.withContext(function($ctx1) {
  2512. self._assert_equals_((4)._sqrt(),(2));
  2513. self._assert_equals_((16)._sqrt(),(4));
  2514. return self}, function($ctx1) {$ctx1.fill(self,"testSqrt",{},smalltalk.NumberTest)})},
  2515. messageSends: ["assert:equals:", "sqrt"]}),
  2516. smalltalk.NumberTest);
  2517. smalltalk.addMethod(
  2518. smalltalk.method({
  2519. selector: "testSquared",
  2520. fn: function (){
  2521. var self=this;
  2522. return smalltalk.withContext(function($ctx1) {
  2523. self._assert_equals_((4)._squared(),(16));
  2524. return self}, function($ctx1) {$ctx1.fill(self,"testSquared",{},smalltalk.NumberTest)})},
  2525. messageSends: ["assert:equals:", "squared"]}),
  2526. smalltalk.NumberTest);
  2527. smalltalk.addMethod(
  2528. smalltalk.method({
  2529. selector: "testTimesRepeat",
  2530. fn: function (){
  2531. var self=this;
  2532. var i;
  2533. return smalltalk.withContext(function($ctx1) {
  2534. i=(0);
  2535. (0)._timesRepeat_((function(){
  2536. return smalltalk.withContext(function($ctx2) {
  2537. i=_st(i).__plus((1));
  2538. return i;
  2539. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2540. self._assert_equals_(i,(0));
  2541. (5)._timesRepeat_((function(){
  2542. return smalltalk.withContext(function($ctx2) {
  2543. i=_st(i).__plus((1));
  2544. return i;
  2545. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2546. self._assert_equals_(i,(5));
  2547. return self}, function($ctx1) {$ctx1.fill(self,"testTimesRepeat",{i:i},smalltalk.NumberTest)})},
  2548. messageSends: ["timesRepeat:", "+", "assert:equals:"]}),
  2549. smalltalk.NumberTest);
  2550. smalltalk.addMethod(
  2551. smalltalk.method({
  2552. selector: "testTo",
  2553. fn: function (){
  2554. var self=this;
  2555. return smalltalk.withContext(function($ctx1) {
  2556. self._assert_equals_((1)._to_((5)),[(1), (2), (3), (4), (5)]);
  2557. return self}, function($ctx1) {$ctx1.fill(self,"testTo",{},smalltalk.NumberTest)})},
  2558. messageSends: ["assert:equals:", "to:"]}),
  2559. smalltalk.NumberTest);
  2560. smalltalk.addMethod(
  2561. smalltalk.method({
  2562. selector: "testToBy",
  2563. fn: function (){
  2564. var self=this;
  2565. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  2566. return smalltalk.withContext(function($ctx1) {
  2567. self._assert_equals_((0)._to_by_((6),(2)),[(0), (2), (4), (6)]);
  2568. self._should_raise_((function(){
  2569. return smalltalk.withContext(function($ctx2) {
  2570. return (1)._to_by_((4),(0));
  2571. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  2572. return self}, function($ctx1) {$ctx1.fill(self,"testToBy",{},smalltalk.NumberTest)})},
  2573. messageSends: ["assert:equals:", "to:by:", "should:raise:"]}),
  2574. smalltalk.NumberTest);
  2575. smalltalk.addMethod(
  2576. smalltalk.method({
  2577. selector: "testTruncated",
  2578. fn: function (){
  2579. var self=this;
  2580. return smalltalk.withContext(function($ctx1) {
  2581. self._assert_equals_((3)._truncated(),(3));
  2582. self._assert_equals_((3.212)._truncated(),(3));
  2583. self._assert_equals_((3.51)._truncated(),(3));
  2584. return self}, function($ctx1) {$ctx1.fill(self,"testTruncated",{},smalltalk.NumberTest)})},
  2585. messageSends: ["assert:equals:", "truncated"]}),
  2586. smalltalk.NumberTest);
  2587. smalltalk.addClass('ObjectMock', smalltalk.Object, ['foo', 'bar'], 'Kernel-Tests');
  2588. smalltalk.addMethod(
  2589. smalltalk.method({
  2590. selector: "foo",
  2591. fn: function (){
  2592. var self=this;
  2593. return smalltalk.withContext(function($ctx1) {
  2594. var $1;
  2595. $1=self["@foo"];
  2596. return $1;
  2597. }, function($ctx1) {$ctx1.fill(self,"foo",{},smalltalk.ObjectMock)})},
  2598. messageSends: []}),
  2599. smalltalk.ObjectMock);
  2600. smalltalk.addMethod(
  2601. smalltalk.method({
  2602. selector: "foo:",
  2603. fn: function (anObject){
  2604. var self=this;
  2605. return smalltalk.withContext(function($ctx1) {
  2606. self["@foo"]=anObject;
  2607. return self}, function($ctx1) {$ctx1.fill(self,"foo:",{anObject:anObject},smalltalk.ObjectMock)})},
  2608. messageSends: []}),
  2609. smalltalk.ObjectMock);
  2610. smalltalk.addClass('ObjectMock2', smalltalk.ObjectMock, [], 'Kernel-Tests');
  2611. smalltalk.addMethod(
  2612. smalltalk.method({
  2613. selector: "foo",
  2614. fn: function (){
  2615. var self=this;
  2616. return smalltalk.withContext(function($ctx1) {
  2617. var $1;
  2618. $1=self["@foo"];
  2619. return $1;
  2620. }, function($ctx1) {$ctx1.fill(self,"foo",{},smalltalk.ObjectMock2)})},
  2621. messageSends: []}),
  2622. smalltalk.ObjectMock2);
  2623. smalltalk.addMethod(
  2624. smalltalk.method({
  2625. selector: "foo:",
  2626. fn: function (anObject){
  2627. var self=this;
  2628. return smalltalk.withContext(function($ctx1) {
  2629. self["@foo"]=anObject;
  2630. return self}, function($ctx1) {$ctx1.fill(self,"foo:",{anObject:anObject},smalltalk.ObjectMock2)})},
  2631. messageSends: []}),
  2632. smalltalk.ObjectMock2);
  2633. smalltalk.addClass('ObjectMock3', smalltalk.ObjectMock2, [], 'Kernel-Tests');
  2634. smalltalk.addClass('ObjectMock4', smalltalk.ObjectMock3, [], 'Kernel-Tests');
  2635. smalltalk.addClass('ObjectTest', smalltalk.TestCase, [], 'Kernel-Tests');
  2636. smalltalk.addMethod(
  2637. smalltalk.method({
  2638. selector: "notDefined",
  2639. fn: function (){
  2640. var self=this;
  2641. return smalltalk.withContext(function($ctx1) {
  2642. return undefined;;
  2643. return self}, function($ctx1) {$ctx1.fill(self,"notDefined",{},smalltalk.ObjectTest)})},
  2644. messageSends: []}),
  2645. smalltalk.ObjectTest);
  2646. smalltalk.addMethod(
  2647. smalltalk.method({
  2648. selector: "testBasicAccess",
  2649. fn: function (){
  2650. var self=this;
  2651. var o;
  2652. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2653. return smalltalk.withContext(function($ctx1) {
  2654. o=_st($Object())._new();
  2655. _st(o)._basicAt_put_("a",(1));
  2656. self._assert_equals_(_st(o)._basicAt_("a"),(1));
  2657. self._assert_equals_(_st(o)._basicAt_("b"),nil);
  2658. return self}, function($ctx1) {$ctx1.fill(self,"testBasicAccess",{o:o},smalltalk.ObjectTest)})},
  2659. messageSends: ["new", "basicAt:put:", "assert:equals:", "basicAt:"]}),
  2660. smalltalk.ObjectTest);
  2661. smalltalk.addMethod(
  2662. smalltalk.method({
  2663. selector: "testBasicPerform",
  2664. fn: function (){
  2665. var self=this;
  2666. var o;
  2667. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2668. return smalltalk.withContext(function($ctx1) {
  2669. o=_st($Object())._new();
  2670. _st(o)._basicAt_put_("func",(function(){
  2671. return smalltalk.withContext(function($ctx2) {
  2672. return "hello";
  2673. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2674. _st(o)._basicAt_put_("func2",(function(a){
  2675. return smalltalk.withContext(function($ctx2) {
  2676. return _st(a).__plus((1));
  2677. }, function($ctx2) {$ctx2.fillBlock({a:a},$ctx1)})}));
  2678. self._assert_equals_(_st(o)._basicPerform_("func"),"hello");
  2679. self._assert_equals_(_st(o)._basicPerform_withArguments_("func2",[(3)]),(4));
  2680. return self}, function($ctx1) {$ctx1.fill(self,"testBasicPerform",{o:o},smalltalk.ObjectTest)})},
  2681. messageSends: ["new", "basicAt:put:", "+", "assert:equals:", "basicPerform:", "basicPerform:withArguments:"]}),
  2682. smalltalk.ObjectTest);
  2683. smalltalk.addMethod(
  2684. smalltalk.method({
  2685. selector: "testDNU",
  2686. fn: function (){
  2687. var self=this;
  2688. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2689. function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
  2690. return smalltalk.withContext(function($ctx1) {
  2691. self._should_raise_((function(){
  2692. return smalltalk.withContext(function($ctx2) {
  2693. return _st(_st($Object())._new())._foo();
  2694. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
  2695. return self}, function($ctx1) {$ctx1.fill(self,"testDNU",{},smalltalk.ObjectTest)})},
  2696. messageSends: ["should:raise:", "foo", "new"]}),
  2697. smalltalk.ObjectTest);
  2698. smalltalk.addMethod(
  2699. smalltalk.method({
  2700. selector: "testEquality",
  2701. fn: function (){
  2702. var self=this;
  2703. var o;
  2704. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2705. return smalltalk.withContext(function($ctx1) {
  2706. o=_st($Object())._new();
  2707. self._deny_(_st(o).__eq(_st($Object())._new()));
  2708. self._assert_(_st(o).__eq(o));
  2709. self._assert_(_st(_st(o)._yourself()).__eq(o));
  2710. self._assert_(_st(o).__eq(_st(o)._yourself()));
  2711. return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{o:o},smalltalk.ObjectTest)})},
  2712. messageSends: ["new", "deny:", "=", "assert:", "yourself"]}),
  2713. smalltalk.ObjectTest);
  2714. smalltalk.addMethod(
  2715. smalltalk.method({
  2716. selector: "testHalt",
  2717. fn: function (){
  2718. var self=this;
  2719. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2720. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  2721. return smalltalk.withContext(function($ctx1) {
  2722. self._should_raise_((function(){
  2723. return smalltalk.withContext(function($ctx2) {
  2724. return _st(_st($Object())._new())._halt();
  2725. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  2726. return self}, function($ctx1) {$ctx1.fill(self,"testHalt",{},smalltalk.ObjectTest)})},
  2727. messageSends: ["should:raise:", "halt", "new"]}),
  2728. smalltalk.ObjectTest);
  2729. smalltalk.addMethod(
  2730. smalltalk.method({
  2731. selector: "testIdentity",
  2732. fn: function (){
  2733. var self=this;
  2734. var o;
  2735. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2736. return smalltalk.withContext(function($ctx1) {
  2737. o=_st($Object())._new();
  2738. self._deny_(_st(o).__eq_eq(_st($Object())._new()));
  2739. self._assert_(_st(o).__eq_eq(o));
  2740. self._assert_(_st(_st(o)._yourself()).__eq_eq(o));
  2741. self._assert_(_st(o).__eq_eq(_st(o)._yourself()));
  2742. return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{o:o},smalltalk.ObjectTest)})},
  2743. messageSends: ["new", "deny:", "==", "assert:", "yourself"]}),
  2744. smalltalk.ObjectTest);
  2745. smalltalk.addMethod(
  2746. smalltalk.method({
  2747. selector: "testIfNil",
  2748. fn: function (){
  2749. var self=this;
  2750. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2751. return smalltalk.withContext(function($ctx1) {
  2752. var $1,$4,$3,$2,$5,$7,$6,$8,$10,$9,$11,$13,$12;
  2753. self._deny_(_st(_st($Object())._new())._isNil());
  2754. $1=self;
  2755. $4=_st($Object())._new();
  2756. if(($receiver = $4) == nil || $receiver == undefined){
  2757. $3=true;
  2758. } else {
  2759. $3=$4;
  2760. };
  2761. $2=_st($3).__eq(true);
  2762. _st($1)._deny_($2);
  2763. $5=self;
  2764. $7=_st($Object())._new();
  2765. if(($receiver = $7) == nil || $receiver == undefined){
  2766. $6=$7;
  2767. } else {
  2768. $6=true;
  2769. };
  2770. _st($5)._assert_equals_($6,true);
  2771. $8=self;
  2772. $10=_st($Object())._new();
  2773. if(($receiver = $10) == nil || $receiver == undefined){
  2774. $9=false;
  2775. } else {
  2776. $9=true;
  2777. };
  2778. _st($8)._assert_equals_($9,true);
  2779. $11=self;
  2780. $13=_st($Object())._new();
  2781. if(($receiver = $13) == nil || $receiver == undefined){
  2782. $12=false;
  2783. } else {
  2784. $12=true;
  2785. };
  2786. _st($11)._assert_equals_($12,true);
  2787. return self}, function($ctx1) {$ctx1.fill(self,"testIfNil",{},smalltalk.ObjectTest)})},
  2788. messageSends: ["deny:", "isNil", "new", "=", "ifNil:", "assert:equals:", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"]}),
  2789. smalltalk.ObjectTest);
  2790. smalltalk.addMethod(
  2791. smalltalk.method({
  2792. selector: "testInstVars",
  2793. fn: function (){
  2794. var self=this;
  2795. var o;
  2796. function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
  2797. return smalltalk.withContext(function($ctx1) {
  2798. o=_st($ObjectMock())._new();
  2799. self._assert_equals_(_st(o)._instVarAt_("foo"),nil);
  2800. _st(o)._instVarAt_put_("foo",(1));
  2801. self._assert_equals_(_st(o)._instVarAt_("foo"),(1));
  2802. self._assert_equals_(_st(o)._instVarAt_("foo"),(1));
  2803. return self}, function($ctx1) {$ctx1.fill(self,"testInstVars",{o:o},smalltalk.ObjectTest)})},
  2804. messageSends: ["new", "assert:equals:", "instVarAt:", "instVarAt:put:"]}),
  2805. smalltalk.ObjectTest);
  2806. smalltalk.addMethod(
  2807. smalltalk.method({
  2808. selector: "testNilUndefined",
  2809. fn: function (){
  2810. var self=this;
  2811. return smalltalk.withContext(function($ctx1) {
  2812. self._assert_equals_(self._notDefined(),nil);
  2813. return self}, function($ctx1) {$ctx1.fill(self,"testNilUndefined",{},smalltalk.ObjectTest)})},
  2814. messageSends: ["assert:equals:", "notDefined"]}),
  2815. smalltalk.ObjectTest);
  2816. smalltalk.addMethod(
  2817. smalltalk.method({
  2818. selector: "testYourself",
  2819. fn: function (){
  2820. var self=this;
  2821. var o;
  2822. function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
  2823. return smalltalk.withContext(function($ctx1) {
  2824. o=_st($ObjectMock())._new();
  2825. self._assert_(_st(_st(o)._yourself()).__eq_eq(o));
  2826. return self}, function($ctx1) {$ctx1.fill(self,"testYourself",{o:o},smalltalk.ObjectTest)})},
  2827. messageSends: ["new", "assert:", "==", "yourself"]}),
  2828. smalltalk.ObjectTest);
  2829. smalltalk.addMethod(
  2830. smalltalk.method({
  2831. selector: "testidentityHash",
  2832. fn: function (){
  2833. var self=this;
  2834. var o1,o2;
  2835. function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
  2836. return smalltalk.withContext(function($ctx1) {
  2837. o1=_st($Object())._new();
  2838. o2=_st($Object())._new();
  2839. self._assert_(_st(_st(o1)._identityHash()).__eq_eq(_st(o1)._identityHash()));
  2840. self._deny_(_st(_st(o1)._identityHash()).__eq_eq(_st(o2)._identityHash()));
  2841. return self}, function($ctx1) {$ctx1.fill(self,"testidentityHash",{o1:o1,o2:o2},smalltalk.ObjectTest)})},
  2842. messageSends: ["new", "assert:", "==", "identityHash", "deny:"]}),
  2843. smalltalk.ObjectTest);
  2844. smalltalk.addClass('PackageTest', smalltalk.TestCase, ['zorkPackage', 'grulPackage', 'backUpCommitPathJs', 'backUpCommitPathSt'], 'Kernel-Tests');
  2845. smalltalk.addMethod(
  2846. smalltalk.method({
  2847. selector: "setUp",
  2848. fn: function (){
  2849. var self=this;
  2850. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  2851. return smalltalk.withContext(function($ctx1) {
  2852. var $1,$2;
  2853. self["@backUpCommitPathJs"]=_st($Package())._defaultCommitPathJs();
  2854. self["@backUpCommitPathSt"]=_st($Package())._defaultCommitPathSt();
  2855. _st($Package())._resetCommitPaths();
  2856. self["@zorkPackage"]=_st(_st($Package())._new())._name_("Zork");
  2857. $1=_st($Package())._new();
  2858. _st($1)._name_("Grul");
  2859. _st($1)._commitPathJs_("server/grul/js");
  2860. _st($1)._commitPathSt_("grul/st");
  2861. $2=_st($1)._yourself();
  2862. self["@grulPackage"]=$2;
  2863. return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.PackageTest)})},
  2864. messageSends: ["defaultCommitPathJs", "defaultCommitPathSt", "resetCommitPaths", "name:", "new", "commitPathJs:", "commitPathSt:", "yourself"]}),
  2865. smalltalk.PackageTest);
  2866. smalltalk.addMethod(
  2867. smalltalk.method({
  2868. selector: "tearDown",
  2869. fn: function (){
  2870. var self=this;
  2871. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  2872. return smalltalk.withContext(function($ctx1) {
  2873. var $1,$2;
  2874. $1=$Package();
  2875. _st($1)._defaultCommitPathJs_(self["@backUpCommitPathJs"]);
  2876. $2=_st($1)._defaultCommitPathSt_(self["@backUpCommitPathSt"]);
  2877. return self}, function($ctx1) {$ctx1.fill(self,"tearDown",{},smalltalk.PackageTest)})},
  2878. messageSends: ["defaultCommitPathJs:", "defaultCommitPathSt:"]}),
  2879. smalltalk.PackageTest);
  2880. smalltalk.addMethod(
  2881. smalltalk.method({
  2882. selector: "testGrulCommitPathJsShouldBeServerGrulJs",
  2883. fn: function (){
  2884. var self=this;
  2885. return smalltalk.withContext(function($ctx1) {
  2886. self._assert_equals_(_st(self["@grulPackage"])._commitPathJs(),"server/grul/js");
  2887. return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathJsShouldBeServerGrulJs",{},smalltalk.PackageTest)})},
  2888. messageSends: ["assert:equals:", "commitPathJs"]}),
  2889. smalltalk.PackageTest);
  2890. smalltalk.addMethod(
  2891. smalltalk.method({
  2892. selector: "testGrulCommitPathStShouldBeGrulSt",
  2893. fn: function (){
  2894. var self=this;
  2895. return smalltalk.withContext(function($ctx1) {
  2896. self._assert_equals_(_st(self["@grulPackage"])._commitPathSt(),"grul/st");
  2897. return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathStShouldBeGrulSt",{},smalltalk.PackageTest)})},
  2898. messageSends: ["assert:equals:", "commitPathSt"]}),
  2899. smalltalk.PackageTest);
  2900. smalltalk.addMethod(
  2901. smalltalk.method({
  2902. selector: "testZorkCommitPathJsShouldBeJs",
  2903. fn: function (){
  2904. var self=this;
  2905. return smalltalk.withContext(function($ctx1) {
  2906. self._assert_equals_(_st(self["@zorkPackage"])._commitPathJs(),"js");
  2907. return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathJsShouldBeJs",{},smalltalk.PackageTest)})},
  2908. messageSends: ["assert:equals:", "commitPathJs"]}),
  2909. smalltalk.PackageTest);
  2910. smalltalk.addMethod(
  2911. smalltalk.method({
  2912. selector: "testZorkCommitPathStShouldBeSt",
  2913. fn: function (){
  2914. var self=this;
  2915. return smalltalk.withContext(function($ctx1) {
  2916. self._assert_equals_(_st(self["@zorkPackage"])._commitPathSt(),"st");
  2917. return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathStShouldBeSt",{},smalltalk.PackageTest)})},
  2918. messageSends: ["assert:equals:", "commitPathSt"]}),
  2919. smalltalk.PackageTest);
  2920. smalltalk.addClass('PackageWithDefaultCommitPathChangedTest', smalltalk.PackageTest, [], 'Kernel-Tests');
  2921. smalltalk.addMethod(
  2922. smalltalk.method({
  2923. selector: "setUp",
  2924. fn: function (){
  2925. var self=this;
  2926. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  2927. return smalltalk.withContext(function($ctx1) {
  2928. var $1,$2;
  2929. smalltalk.PackageWithDefaultCommitPathChangedTest.superclass.fn.prototype._setUp.apply(_st(self), []);
  2930. $1=$Package();
  2931. _st($1)._defaultCommitPathJs_("javascripts/");
  2932. $2=_st($1)._defaultCommitPathSt_("smalltalk/");
  2933. return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
  2934. messageSends: ["setUp", "defaultCommitPathJs:", "defaultCommitPathSt:"]}),
  2935. smalltalk.PackageWithDefaultCommitPathChangedTest);
  2936. smalltalk.addMethod(
  2937. smalltalk.method({
  2938. selector: "testGrulCommitPathJsShouldBeServerGrulJs",
  2939. fn: function (){
  2940. var self=this;
  2941. return smalltalk.withContext(function($ctx1) {
  2942. self._assert_equals_(_st(self["@grulPackage"])._commitPathJs(),"server/grul/js");
  2943. return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathJsShouldBeServerGrulJs",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
  2944. messageSends: ["assert:equals:", "commitPathJs"]}),
  2945. smalltalk.PackageWithDefaultCommitPathChangedTest);
  2946. smalltalk.addMethod(
  2947. smalltalk.method({
  2948. selector: "testGrulCommitPathStShouldBeGrulSt",
  2949. fn: function (){
  2950. var self=this;
  2951. return smalltalk.withContext(function($ctx1) {
  2952. self._assert_equals_(_st(self["@grulPackage"])._commitPathSt(),"grul/st");
  2953. return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathStShouldBeGrulSt",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
  2954. messageSends: ["assert:equals:", "commitPathSt"]}),
  2955. smalltalk.PackageWithDefaultCommitPathChangedTest);
  2956. smalltalk.addMethod(
  2957. smalltalk.method({
  2958. selector: "testZorkCommitPathJsShouldBeJavascript",
  2959. fn: function (){
  2960. var self=this;
  2961. return smalltalk.withContext(function($ctx1) {
  2962. self._assert_equals_(_st(self["@zorkPackage"])._commitPathJs(),"javascripts/");
  2963. return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathJsShouldBeJavascript",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
  2964. messageSends: ["assert:equals:", "commitPathJs"]}),
  2965. smalltalk.PackageWithDefaultCommitPathChangedTest);
  2966. smalltalk.addMethod(
  2967. smalltalk.method({
  2968. selector: "testZorkCommitPathStShouldBeSmalltalk",
  2969. fn: function (){
  2970. var self=this;
  2971. return smalltalk.withContext(function($ctx1) {
  2972. self._assert_equals_(_st(self["@zorkPackage"])._commitPathSt(),"smalltalk/");
  2973. return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathStShouldBeSmalltalk",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
  2974. messageSends: ["assert:equals:", "commitPathSt"]}),
  2975. smalltalk.PackageWithDefaultCommitPathChangedTest);
  2976. smalltalk.addMethod(
  2977. smalltalk.method({
  2978. selector: "shouldInheritSelectors",
  2979. fn: function (){
  2980. var self=this;
  2981. return smalltalk.withContext(function($ctx1) {
  2982. return false;
  2983. }, function($ctx1) {$ctx1.fill(self,"shouldInheritSelectors",{},smalltalk.PackageWithDefaultCommitPathChangedTest.klass)})},
  2984. messageSends: []}),
  2985. smalltalk.PackageWithDefaultCommitPathChangedTest.klass);
  2986. smalltalk.addClass('PointTest', smalltalk.TestCase, [], 'Kernel-Tests');
  2987. smalltalk.addMethod(
  2988. smalltalk.method({
  2989. selector: "testAccessing",
  2990. fn: function (){
  2991. var self=this;
  2992. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  2993. return smalltalk.withContext(function($ctx1) {
  2994. self._assert_equals_(_st(_st($Point())._x_y_((3),(4)))._x(),(3));
  2995. self._assert_equals_(_st(_st($Point())._x_y_((3),(4)))._y(),(4));
  2996. self._assert_equals_(_st(_st(_st($Point())._new())._x_((3)))._x(),(3));
  2997. self._assert_equals_(_st(_st(_st($Point())._new())._y_((4)))._y(),(4));
  2998. return self}, function($ctx1) {$ctx1.fill(self,"testAccessing",{},smalltalk.PointTest)})},
  2999. messageSends: ["assert:equals:", "x", "x:y:", "y", "x:", "new", "y:"]}),
  3000. smalltalk.PointTest);
  3001. smalltalk.addMethod(
  3002. smalltalk.method({
  3003. selector: "testArithmetic",
  3004. fn: function (){
  3005. var self=this;
  3006. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  3007. return smalltalk.withContext(function($ctx1) {
  3008. self._assert_equals_(_st((3).__at((4))).__star((3).__at((4))),_st($Point())._x_y_((9),(16)));
  3009. self._assert_equals_(_st((3).__at((4))).__plus((3).__at((4))),_st($Point())._x_y_((6),(8)));
  3010. self._assert_equals_(_st((3).__at((4))).__minus((3).__at((4))),_st($Point())._x_y_((0),(0)));
  3011. self._assert_equals_(_st((6).__at((8))).__slash((3).__at((4))),_st($Point())._x_y_((2),(2)));
  3012. return self}, function($ctx1) {$ctx1.fill(self,"testArithmetic",{},smalltalk.PointTest)})},
  3013. messageSends: ["assert:equals:", "*", "@", "x:y:", "+", "-", "/"]}),
  3014. smalltalk.PointTest);
  3015. smalltalk.addMethod(
  3016. smalltalk.method({
  3017. selector: "testAt",
  3018. fn: function (){
  3019. var self=this;
  3020. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  3021. return smalltalk.withContext(function($ctx1) {
  3022. self._assert_equals_((3).__at((4)),_st($Point())._x_y_((3),(4)));
  3023. return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.PointTest)})},
  3024. messageSends: ["assert:equals:", "@", "x:y:"]}),
  3025. smalltalk.PointTest);
  3026. smalltalk.addMethod(
  3027. smalltalk.method({
  3028. selector: "testEgality",
  3029. fn: function (){
  3030. var self=this;
  3031. return smalltalk.withContext(function($ctx1) {
  3032. self._assert_(_st((3).__at((4))).__eq((3).__at((4))));
  3033. self._deny_(_st((3).__at((5))).__eq((3).__at((6))));
  3034. return self}, function($ctx1) {$ctx1.fill(self,"testEgality",{},smalltalk.PointTest)})},
  3035. messageSends: ["assert:", "=", "@", "deny:"]}),
  3036. smalltalk.PointTest);
  3037. smalltalk.addMethod(
  3038. smalltalk.method({
  3039. selector: "testTranslateBy",
  3040. fn: function (){
  3041. var self=this;
  3042. return smalltalk.withContext(function($ctx1) {
  3043. self._assert_equals_(_st((3).__at((3)))._translateBy_((0).__at((1))),(3).__at((4)));
  3044. self._assert_equals_(_st((3).__at((3)))._translateBy_((0).__at((1)._negated())),(3).__at((2)));
  3045. self._assert_equals_(_st((3).__at((3)))._translateBy_((2).__at((3))),(5).__at((6)));
  3046. self._assert_equals_(_st((3).__at((3)))._translateBy_(_st((3)._negated()).__at((0))),(0).__at((3)));
  3047. return self}, function($ctx1) {$ctx1.fill(self,"testTranslateBy",{},smalltalk.PointTest)})},
  3048. messageSends: ["assert:equals:", "translateBy:", "@", "negated"]}),
  3049. smalltalk.PointTest);
  3050. smalltalk.addClass('RandomTest', smalltalk.TestCase, [], 'Kernel-Tests');
  3051. smalltalk.addMethod(
  3052. smalltalk.method({
  3053. selector: "textNext",
  3054. fn: function (){
  3055. var self=this;
  3056. function $Random(){return smalltalk.Random||(typeof Random=="undefined"?nil:Random)}
  3057. return smalltalk.withContext(function($ctx1) {
  3058. (10000)._timesRepeat_((function(){
  3059. var current,next;
  3060. return smalltalk.withContext(function($ctx2) {
  3061. next=_st(_st($Random())._new())._next();
  3062. next;
  3063. self._assert_(_st(next).__gt_eq((0)));
  3064. self._assert_(_st(next).__lt((1)));
  3065. self._deny_(_st(current).__eq(next));
  3066. return _st(next).__eq(current);
  3067. }, function($ctx2) {$ctx2.fillBlock({current:current,next:next},$ctx1)})}));
  3068. return self}, function($ctx1) {$ctx1.fill(self,"textNext",{},smalltalk.RandomTest)})},
  3069. messageSends: ["timesRepeat:", "next", "new", "assert:", ">=", "<", "deny:", "="]}),
  3070. smalltalk.RandomTest);
  3071. smalltalk.addClass('SetTest', smalltalk.TestCase, [], 'Kernel-Tests');
  3072. smalltalk.addMethod(
  3073. smalltalk.method({
  3074. selector: "testAddRemove",
  3075. fn: function (){
  3076. var self=this;
  3077. var set;
  3078. function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
  3079. return smalltalk.withContext(function($ctx1) {
  3080. set=_st($Set())._new();
  3081. self._assert_(_st(set)._isEmpty());
  3082. _st(set)._add_((3));
  3083. self._assert_(_st(set)._includes_((3)));
  3084. _st(set)._add_((5));
  3085. self._assert_(_st(set)._includes_((5)));
  3086. _st(set)._remove_((3));
  3087. self._deny_(_st(set)._includes_((3)));
  3088. return self}, function($ctx1) {$ctx1.fill(self,"testAddRemove",{set:set},smalltalk.SetTest)})},
  3089. messageSends: ["new", "assert:", "isEmpty", "add:", "includes:", "remove:", "deny:"]}),
  3090. smalltalk.SetTest);
  3091. smalltalk.addMethod(
  3092. smalltalk.method({
  3093. selector: "testAt",
  3094. fn: function (){
  3095. var self=this;
  3096. function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
  3097. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  3098. return smalltalk.withContext(function($ctx1) {
  3099. self._should_raise_((function(){
  3100. return smalltalk.withContext(function($ctx2) {
  3101. return _st(_st($Set())._new())._at_put_((1),(2));
  3102. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
  3103. return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.SetTest)})},
  3104. messageSends: ["should:raise:", "at:put:", "new"]}),
  3105. smalltalk.SetTest);
  3106. smalltalk.addMethod(
  3107. smalltalk.method({
  3108. selector: "testCollect",
  3109. fn: function (){
  3110. var self=this;
  3111. return smalltalk.withContext(function($ctx1) {
  3112. self._assert_equals_(_st([(5), (6), (8)]._asSet())._collect_((function(x){
  3113. return smalltalk.withContext(function($ctx2) {
  3114. return _st(x).__backslash_backslash((3));
  3115. }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),[(0), (2)]._asSet());
  3116. return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{},smalltalk.SetTest)})},
  3117. messageSends: ["assert:equals:", "collect:", "\x5c\x5c", "asSet"]}),
  3118. smalltalk.SetTest);
  3119. smalltalk.addMethod(
  3120. smalltalk.method({
  3121. selector: "testComparing",
  3122. fn: function (){
  3123. var self=this;
  3124. return smalltalk.withContext(function($ctx1) {
  3125. self._assert_equals_([(0), (2)]._asSet(),[(0), (2)]._asSet());
  3126. self._assert_equals_([(2), (0)]._asSet(),[(0), (2)]._asSet());
  3127. self._deny_(_st([(0), (2), (3)]._asSet()).__eq([(0), (2)]._asSet()));
  3128. self._deny_(_st([(1), (2)]._asSet()).__eq([(0), (2)]._asSet()));
  3129. return self}, function($ctx1) {$ctx1.fill(self,"testComparing",{},smalltalk.SetTest)})},
  3130. messageSends: ["assert:equals:", "asSet", "deny:", "="]}),
  3131. smalltalk.SetTest);
  3132. smalltalk.addMethod(
  3133. smalltalk.method({
  3134. selector: "testPrintString",
  3135. fn: function (){
  3136. var self=this;
  3137. var set;
  3138. function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
  3139. return smalltalk.withContext(function($ctx1) {
  3140. var $1,$2,$3,$4;
  3141. set=_st($Set())._new();
  3142. self._assert_equals_(_st(set)._printString(),"a Set ()");
  3143. $1=set;
  3144. _st($1)._add_((1));
  3145. $2=_st($1)._add_((3));
  3146. self._assert_equals_(_st(set)._printString(),"a Set (1 3)");
  3147. _st(set)._add_("foo");
  3148. self._assert_equals_(_st(set)._printString(),"a Set (1 3 'foo')");
  3149. $3=set;
  3150. _st($3)._remove_((1));
  3151. $4=_st($3)._remove_((3));
  3152. self._assert_equals_(_st(set)._printString(),"a Set ('foo')");
  3153. _st(set)._add_((3));
  3154. self._assert_equals_(_st(set)._printString(),"a Set ('foo' 3)");
  3155. _st(set)._add_((3));
  3156. self._assert_equals_(_st(set)._printString(),"a Set ('foo' 3)");
  3157. return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{set:set},smalltalk.SetTest)})},
  3158. messageSends: ["new", "assert:equals:", "printString", "add:", "remove:"]}),
  3159. smalltalk.SetTest);
  3160. smalltalk.addMethod(
  3161. smalltalk.method({
  3162. selector: "testSize",
  3163. fn: function (){
  3164. var self=this;
  3165. function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
  3166. return smalltalk.withContext(function($ctx1) {
  3167. self._assert_equals_(_st(_st($Set())._new())._size(),(0));
  3168. self._assert_equals_(_st(_st($Set())._withAll_([(1), (2), (3), (4)]))._size(),(4));
  3169. self._assert_equals_(_st(_st($Set())._withAll_([(1), (1), (1), (1)]))._size(),(1));
  3170. return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.SetTest)})},
  3171. messageSends: ["assert:equals:", "size", "new", "withAll:"]}),
  3172. smalltalk.SetTest);
  3173. smalltalk.addMethod(
  3174. smalltalk.method({
  3175. selector: "testUnboxedObjects",
  3176. fn: function (){
  3177. var self=this;
  3178. return smalltalk.withContext(function($ctx1) {
  3179. self._assert_equals_(_st(_st(["foo"._yourself(),"foo"._yourself()])._asSet())._asArray(),["foo"]);
  3180. return self}, function($ctx1) {$ctx1.fill(self,"testUnboxedObjects",{},smalltalk.SetTest)})},
  3181. messageSends: ["assert:equals:", "asArray", "asSet", "yourself"]}),
  3182. smalltalk.SetTest);
  3183. smalltalk.addMethod(
  3184. smalltalk.method({
  3185. selector: "testUnicity",
  3186. fn: function (){
  3187. var self=this;
  3188. var set;
  3189. function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
  3190. return smalltalk.withContext(function($ctx1) {
  3191. set=_st($Set())._new();
  3192. _st(set)._add_((21));
  3193. _st(set)._add_("hello");
  3194. _st(set)._add_((21));
  3195. self._assert_equals_(_st(set)._size(),(2));
  3196. _st(set)._add_("hello");
  3197. self._assert_equals_(_st(set)._size(),(2));
  3198. self._assert_equals_(_st(set)._asArray(),[(21), "hello"]);
  3199. return self}, function($ctx1) {$ctx1.fill(self,"testUnicity",{set:set},smalltalk.SetTest)})},
  3200. messageSends: ["new", "add:", "assert:equals:", "size", "asArray"]}),
  3201. smalltalk.SetTest);
  3202. smalltalk.addClass('StreamTest', smalltalk.TestCase, [], 'Kernel-Tests');
  3203. smalltalk.addMethod(
  3204. smalltalk.method({
  3205. selector: "collectionClass",
  3206. fn: function (){
  3207. var self=this;
  3208. return smalltalk.withContext(function($ctx1) {
  3209. var $1;
  3210. $1=_st(self._class())._collectionClass();
  3211. return $1;
  3212. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StreamTest)})},
  3213. messageSends: ["collectionClass", "class"]}),
  3214. smalltalk.StreamTest);
  3215. smalltalk.addMethod(
  3216. smalltalk.method({
  3217. selector: "newCollection",
  3218. fn: function (){
  3219. var self=this;
  3220. return smalltalk.withContext(function($ctx1) {
  3221. var $1;
  3222. $1=_st(self._collectionClass())._new();
  3223. return $1;
  3224. }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.StreamTest)})},
  3225. messageSends: ["new", "collectionClass"]}),
  3226. smalltalk.StreamTest);
  3227. smalltalk.addMethod(
  3228. smalltalk.method({
  3229. selector: "newStream",
  3230. fn: function (){
  3231. var self=this;
  3232. return smalltalk.withContext(function($ctx1) {
  3233. var $1;
  3234. $1=_st(_st(self._collectionClass())._new())._stream();
  3235. return $1;
  3236. }, function($ctx1) {$ctx1.fill(self,"newStream",{},smalltalk.StreamTest)})},
  3237. messageSends: ["stream", "new", "collectionClass"]}),
  3238. smalltalk.StreamTest);
  3239. smalltalk.addMethod(
  3240. smalltalk.method({
  3241. selector: "testAtStartAtEnd",
  3242. fn: function (){
  3243. var self=this;
  3244. var stream;
  3245. return smalltalk.withContext(function($ctx1) {
  3246. stream=self._newStream();
  3247. self._assert_(_st(stream)._atStart());
  3248. self._assert_(_st(stream)._atEnd());
  3249. _st(stream)._nextPutAll_(self._newCollection());
  3250. self._assert_(_st(stream)._atEnd());
  3251. self._deny_(_st(stream)._atStart());
  3252. _st(stream)._position_((1));
  3253. self._deny_(_st(stream)._atEnd());
  3254. self._deny_(_st(stream)._atStart());
  3255. return self}, function($ctx1) {$ctx1.fill(self,"testAtStartAtEnd",{stream:stream},smalltalk.StreamTest)})},
  3256. messageSends: ["newStream", "assert:", "atStart", "atEnd", "nextPutAll:", "newCollection", "deny:", "position:"]}),
  3257. smalltalk.StreamTest);
  3258. smalltalk.addMethod(
  3259. smalltalk.method({
  3260. selector: "testContents",
  3261. fn: function (){
  3262. var self=this;
  3263. var stream;
  3264. return smalltalk.withContext(function($ctx1) {
  3265. stream=self._newStream();
  3266. _st(stream)._nextPutAll_(self._newCollection());
  3267. self._assert_equals_(_st(stream)._contents(),self._newCollection());
  3268. return self}, function($ctx1) {$ctx1.fill(self,"testContents",{stream:stream},smalltalk.StreamTest)})},
  3269. messageSends: ["newStream", "nextPutAll:", "newCollection", "assert:equals:", "contents"]}),
  3270. smalltalk.StreamTest);
  3271. smalltalk.addMethod(
  3272. smalltalk.method({
  3273. selector: "testIsEmpty",
  3274. fn: function (){
  3275. var self=this;
  3276. var stream;
  3277. return smalltalk.withContext(function($ctx1) {
  3278. stream=self._newStream();
  3279. self._assert_(_st(stream)._isEmpty());
  3280. _st(stream)._nextPutAll_(self._newCollection());
  3281. self._deny_(_st(stream)._isEmpty());
  3282. return self}, function($ctx1) {$ctx1.fill(self,"testIsEmpty",{stream:stream},smalltalk.StreamTest)})},
  3283. messageSends: ["newStream", "assert:", "isEmpty", "nextPutAll:", "newCollection", "deny:"]}),
  3284. smalltalk.StreamTest);
  3285. smalltalk.addMethod(
  3286. smalltalk.method({
  3287. selector: "testPosition",
  3288. fn: function (){
  3289. var self=this;
  3290. var collection,stream;
  3291. return smalltalk.withContext(function($ctx1) {
  3292. collection=self._newCollection();
  3293. stream=self._newStream();
  3294. _st(stream)._nextPutAll_(collection);
  3295. self._assert_equals_(_st(stream)._position(),_st(collection)._size());
  3296. _st(stream)._position_((0));
  3297. self._assert_equals_(_st(stream)._position(),(0));
  3298. _st(stream)._next();
  3299. self._assert_equals_(_st(stream)._position(),(1));
  3300. _st(stream)._next();
  3301. self._assert_equals_(_st(stream)._position(),(2));
  3302. return self}, function($ctx1) {$ctx1.fill(self,"testPosition",{collection:collection,stream:stream},smalltalk.StreamTest)})},
  3303. messageSends: ["newCollection", "newStream", "nextPutAll:", "assert:equals:", "position", "size", "position:", "next"]}),
  3304. smalltalk.StreamTest);
  3305. smalltalk.addMethod(
  3306. smalltalk.method({
  3307. selector: "testReading",
  3308. fn: function (){
  3309. var self=this;
  3310. var stream,collection;
  3311. return smalltalk.withContext(function($ctx1) {
  3312. var $1,$2;
  3313. collection=self._newCollection();
  3314. stream=self._newStream();
  3315. $1=stream;
  3316. _st($1)._nextPutAll_(collection);
  3317. $2=_st($1)._position_((0));
  3318. _st(collection)._do_((function(each){
  3319. return smalltalk.withContext(function($ctx2) {
  3320. return self._assert_equals_(_st(stream)._next(),each);
  3321. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  3322. self._assert_(_st(_st(stream)._next())._isNil());
  3323. return self}, function($ctx1) {$ctx1.fill(self,"testReading",{stream:stream,collection:collection},smalltalk.StreamTest)})},
  3324. messageSends: ["newCollection", "newStream", "nextPutAll:", "position:", "do:", "assert:equals:", "next", "assert:", "isNil"]}),
  3325. smalltalk.StreamTest);
  3326. smalltalk.addMethod(
  3327. smalltalk.method({
  3328. selector: "testStreamContents",
  3329. fn: function (){
  3330. var self=this;
  3331. return smalltalk.withContext(function($ctx1) {
  3332. return self}, function($ctx1) {$ctx1.fill(self,"testStreamContents",{},smalltalk.StreamTest)})},
  3333. messageSends: []}),
  3334. smalltalk.StreamTest);
  3335. smalltalk.addMethod(
  3336. smalltalk.method({
  3337. selector: "testWrite",
  3338. fn: function (){
  3339. var self=this;
  3340. var stream,collection;
  3341. return smalltalk.withContext(function($ctx1) {
  3342. collection=self._newCollection();
  3343. stream=self._newStream();
  3344. _st(collection)._do_((function(each){
  3345. return smalltalk.withContext(function($ctx2) {
  3346. return _st(stream).__lt_lt(each);
  3347. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  3348. self._assert_equals_(_st(stream)._contents(),collection);
  3349. return self}, function($ctx1) {$ctx1.fill(self,"testWrite",{stream:stream,collection:collection},smalltalk.StreamTest)})},
  3350. messageSends: ["newCollection", "newStream", "do:", "<<", "assert:equals:", "contents"]}),
  3351. smalltalk.StreamTest);
  3352. smalltalk.addMethod(
  3353. smalltalk.method({
  3354. selector: "testWriting",
  3355. fn: function (){
  3356. var self=this;
  3357. var stream,collection;
  3358. return smalltalk.withContext(function($ctx1) {
  3359. collection=self._newCollection();
  3360. stream=self._newStream();
  3361. _st(collection)._do_((function(each){
  3362. return smalltalk.withContext(function($ctx2) {
  3363. return _st(stream)._nextPut_(each);
  3364. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  3365. self._assert_equals_(_st(stream)._contents(),collection);
  3366. stream=self._newStream();
  3367. _st(stream)._nextPutAll_(collection);
  3368. self._assert_equals_(_st(stream)._contents(),collection);
  3369. return self}, function($ctx1) {$ctx1.fill(self,"testWriting",{stream:stream,collection:collection},smalltalk.StreamTest)})},
  3370. messageSends: ["newCollection", "newStream", "do:", "nextPut:", "assert:equals:", "contents", "nextPutAll:"]}),
  3371. smalltalk.StreamTest);
  3372. smalltalk.addMethod(
  3373. smalltalk.method({
  3374. selector: "collectionClass",
  3375. fn: function (){
  3376. var self=this;
  3377. return smalltalk.withContext(function($ctx1) {
  3378. return nil;
  3379. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StreamTest.klass)})},
  3380. messageSends: []}),
  3381. smalltalk.StreamTest.klass);
  3382. smalltalk.addMethod(
  3383. smalltalk.method({
  3384. selector: "isAbstract",
  3385. fn: function (){
  3386. var self=this;
  3387. return smalltalk.withContext(function($ctx1) {
  3388. var $1;
  3389. $1=_st(self._collectionClass())._isNil();
  3390. return $1;
  3391. }, function($ctx1) {$ctx1.fill(self,"isAbstract",{},smalltalk.StreamTest.klass)})},
  3392. messageSends: ["isNil", "collectionClass"]}),
  3393. smalltalk.StreamTest.klass);
  3394. smalltalk.addClass('ArrayStreamTest', smalltalk.StreamTest, [], 'Kernel-Tests');
  3395. smalltalk.addMethod(
  3396. smalltalk.method({
  3397. selector: "newCollection",
  3398. fn: function (){
  3399. var self=this;
  3400. return smalltalk.withContext(function($ctx1) {
  3401. var $1;
  3402. $1=[true,(1),(3).__at((4)),"foo"];
  3403. return $1;
  3404. }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.ArrayStreamTest)})},
  3405. messageSends: ["@"]}),
  3406. smalltalk.ArrayStreamTest);
  3407. smalltalk.addMethod(
  3408. smalltalk.method({
  3409. selector: "collectionClass",
  3410. fn: function (){
  3411. var self=this;
  3412. function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
  3413. return smalltalk.withContext(function($ctx1) {
  3414. var $1;
  3415. $1=$Array();
  3416. return $1;
  3417. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.ArrayStreamTest.klass)})},
  3418. messageSends: []}),
  3419. smalltalk.ArrayStreamTest.klass);
  3420. smalltalk.addClass('StringStreamTest', smalltalk.StreamTest, [], 'Kernel-Tests');
  3421. smalltalk.addMethod(
  3422. smalltalk.method({
  3423. selector: "newCollection",
  3424. fn: function (){
  3425. var self=this;
  3426. return smalltalk.withContext(function($ctx1) {
  3427. return "hello world";
  3428. }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.StringStreamTest)})},
  3429. messageSends: []}),
  3430. smalltalk.StringStreamTest);
  3431. smalltalk.addMethod(
  3432. smalltalk.method({
  3433. selector: "collectionClass",
  3434. fn: function (){
  3435. var self=this;
  3436. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  3437. return smalltalk.withContext(function($ctx1) {
  3438. var $1;
  3439. $1=$String();
  3440. return $1;
  3441. }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StringStreamTest.klass)})},
  3442. messageSends: []}),
  3443. smalltalk.StringStreamTest.klass);
  3444. smalltalk.addClass('UndefinedTest', smalltalk.TestCase, [], 'Kernel-Tests');
  3445. smalltalk.addMethod(
  3446. smalltalk.method({
  3447. selector: "testCopying",
  3448. fn: function (){
  3449. var self=this;
  3450. return smalltalk.withContext(function($ctx1) {
  3451. self._assert_equals_(nil._copy(),nil);
  3452. return self}, function($ctx1) {$ctx1.fill(self,"testCopying",{},smalltalk.UndefinedTest)})},
  3453. messageSends: ["assert:equals:", "copy"]}),
  3454. smalltalk.UndefinedTest);
  3455. smalltalk.addMethod(
  3456. smalltalk.method({
  3457. selector: "testDeepCopy",
  3458. fn: function (){
  3459. var self=this;
  3460. return smalltalk.withContext(function($ctx1) {
  3461. self._assert_(_st(nil._deepCopy()).__eq(nil));
  3462. return self}, function($ctx1) {$ctx1.fill(self,"testDeepCopy",{},smalltalk.UndefinedTest)})},
  3463. messageSends: ["assert:", "=", "deepCopy"]}),
  3464. smalltalk.UndefinedTest);
  3465. smalltalk.addMethod(
  3466. smalltalk.method({
  3467. selector: "testIfNil",
  3468. fn: function (){
  3469. var self=this;
  3470. return smalltalk.withContext(function($ctx1) {
  3471. var $1,$2,$3,$5,$4,$6,$7,$8,$10,$9;
  3472. $1=self;
  3473. if(($receiver = nil) == nil || $receiver == undefined){
  3474. $2=true;
  3475. } else {
  3476. $2=nil;
  3477. };
  3478. _st($1)._assert_equals_($2,true);
  3479. $3=self;
  3480. if(($receiver = nil) == nil || $receiver == undefined){
  3481. $5=nil;
  3482. } else {
  3483. $5=true;
  3484. };
  3485. $4=_st($5).__eq(true);
  3486. _st($3)._deny_($4);
  3487. $6=self;
  3488. if(($receiver = nil) == nil || $receiver == undefined){
  3489. $7=true;
  3490. } else {
  3491. $7=false;
  3492. };
  3493. _st($6)._assert_equals_($7,true);
  3494. $8=self;
  3495. if(($receiver = nil) == nil || $receiver == undefined){
  3496. $10=false;
  3497. } else {
  3498. $10=true;
  3499. };
  3500. $9=_st($10).__eq(true);
  3501. _st($8)._deny_($9);
  3502. return self}, function($ctx1) {$ctx1.fill(self,"testIfNil",{},smalltalk.UndefinedTest)})},
  3503. messageSends: ["assert:equals:", "ifNil:", "deny:", "=", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"]}),
  3504. smalltalk.UndefinedTest);
  3505. smalltalk.addMethod(
  3506. smalltalk.method({
  3507. selector: "testIsNil",
  3508. fn: function (){
  3509. var self=this;
  3510. return smalltalk.withContext(function($ctx1) {
  3511. self._assert_(nil._isNil());
  3512. self._deny_(nil._notNil());
  3513. return self}, function($ctx1) {$ctx1.fill(self,"testIsNil",{},smalltalk.UndefinedTest)})},
  3514. messageSends: ["assert:", "isNil", "deny:", "notNil"]}),
  3515. smalltalk.UndefinedTest);
  3516. })(global_smalltalk,global_nil,global__st);