2
0

Kernel-Tests.deploy.js 140 KB

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