Kernel.deploy.js 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108
  1. smalltalk.addClass('Object', smalltalk.nil, [], 'Kernel');
  2. smalltalk.addMethod(
  3. '__eq',
  4. smalltalk.method({
  5. selector: '=',
  6. fn: function (anObject){
  7. var self=this;
  8. return smalltalk.send(self, "__eq_eq", [anObject]);
  9. return self;}
  10. }),
  11. smalltalk.Object);
  12. smalltalk.addMethod(
  13. '_~_eq',
  14. smalltalk.method({
  15. selector: '~=',
  16. fn: function (anObject){
  17. var self=this;
  18. return smalltalk.send(smalltalk.send(self, "__eq", [anObject]), "__eq", [false]);
  19. return self;}
  20. }),
  21. smalltalk.Object);
  22. smalltalk.addMethod(
  23. '_initialize',
  24. smalltalk.method({
  25. selector: 'initialize',
  26. fn: function (){
  27. var self=this;
  28. return self;}
  29. }),
  30. smalltalk.Object);
  31. smalltalk.addMethod(
  32. '_yourself',
  33. smalltalk.method({
  34. selector: 'yourself',
  35. fn: function (){
  36. var self=this;
  37. return self;
  38. return self;}
  39. }),
  40. smalltalk.Object);
  41. smalltalk.addMethod(
  42. '_class',
  43. smalltalk.method({
  44. selector: 'class',
  45. fn: function (){
  46. var self=this;
  47. return self.klass;
  48. return self;}
  49. }),
  50. smalltalk.Object);
  51. smalltalk.addMethod(
  52. '_size',
  53. smalltalk.method({
  54. selector: 'size',
  55. fn: function (){
  56. var self=this;
  57. smalltalk.send(self, "_error_", ["Object not indexable"]);
  58. return self;}
  59. }),
  60. smalltalk.Object);
  61. smalltalk.addMethod(
  62. '_copy',
  63. smalltalk.method({
  64. selector: 'copy',
  65. fn: function (){
  66. var self=this;
  67. return smalltalk.send(smalltalk.send(self, "_shallowCopy", []), "_postCopy", []);
  68. return self;}
  69. }),
  70. smalltalk.Object);
  71. smalltalk.addMethod(
  72. '_shallowCopy',
  73. smalltalk.method({
  74. selector: 'shallowCopy',
  75. fn: function (){
  76. var self=this;
  77. var copy = self.klass._new();
  78. for(var i in self) {
  79. if(/^@.+/.test(i)) {
  80. copy[i] = self[i];
  81. }
  82. }
  83. return copy;
  84. ;
  85. return self;}
  86. }),
  87. smalltalk.Object);
  88. smalltalk.addMethod(
  89. '_deepCopy',
  90. smalltalk.method({
  91. selector: 'deepCopy',
  92. fn: function (){
  93. var self=this;
  94. var copy = self.klass._new();
  95. for(var i in self) {
  96. if(/^@.+/.test(i)) {
  97. copy[i] = self[i]._deepCopy();
  98. }
  99. }
  100. return copy;
  101. ;
  102. return self;}
  103. }),
  104. smalltalk.Object);
  105. smalltalk.addMethod(
  106. '_postCopy',
  107. smalltalk.method({
  108. selector: 'postCopy',
  109. fn: function (){
  110. var self=this;
  111. return self;}
  112. }),
  113. smalltalk.Object);
  114. smalltalk.addMethod(
  115. '__minus_gt',
  116. smalltalk.method({
  117. selector: '->',
  118. fn: function (anObject){
  119. var self=this;
  120. return smalltalk.send((smalltalk.Association || Association), "_key_value_", [self, anObject]);
  121. return self;}
  122. }),
  123. smalltalk.Object);
  124. smalltalk.addMethod(
  125. '_asString',
  126. smalltalk.method({
  127. selector: 'asString',
  128. fn: function (){
  129. var self=this;
  130. return smalltalk.send(self, "_printString", []);
  131. return self;}
  132. }),
  133. smalltalk.Object);
  134. smalltalk.addMethod(
  135. '_asJavascript',
  136. smalltalk.method({
  137. selector: 'asJavascript',
  138. fn: function (){
  139. var self=this;
  140. return smalltalk.send(self, "_asString", []);
  141. return self;}
  142. }),
  143. smalltalk.Object);
  144. smalltalk.addMethod(
  145. '_perform_',
  146. smalltalk.method({
  147. selector: 'perform:',
  148. fn: function (aSymbol){
  149. var self=this;
  150. return smalltalk.send(self, "_perform_withArguments_", [aSymbol, []]);
  151. return self;}
  152. }),
  153. smalltalk.Object);
  154. smalltalk.addMethod(
  155. '_perform_withArguments_',
  156. smalltalk.method({
  157. selector: 'perform:withArguments:',
  158. fn: function (aSymbol, aCollection){
  159. var self=this;
  160. return smalltalk.send(self, "_basicPerform_withArguments_", [smalltalk.send(aSymbol, "_asSelector", []), aCollection]);
  161. return self;}
  162. }),
  163. smalltalk.Object);
  164. smalltalk.addMethod(
  165. '_instVarAt_',
  166. smalltalk.method({
  167. selector: 'instVarAt:',
  168. fn: function (aString){
  169. var self=this;
  170. return self['@'+aString];
  171. return self;}
  172. }),
  173. smalltalk.Object);
  174. smalltalk.addMethod(
  175. '_instVarAt_put_',
  176. smalltalk.method({
  177. selector: 'instVarAt:put:',
  178. fn: function (aString, anObject){
  179. var self=this;
  180. self['@' + aString] = anObject;
  181. return self;}
  182. }),
  183. smalltalk.Object);
  184. smalltalk.addMethod(
  185. '_basicAt_',
  186. smalltalk.method({
  187. selector: 'basicAt:',
  188. fn: function (aString){
  189. var self=this;
  190. return self[aString];
  191. return self;}
  192. }),
  193. smalltalk.Object);
  194. smalltalk.addMethod(
  195. '_basicAt_put_',
  196. smalltalk.method({
  197. selector: 'basicAt:put:',
  198. fn: function (aString, anObject){
  199. var self=this;
  200. return self[aString] = anObject;
  201. return self;}
  202. }),
  203. smalltalk.Object);
  204. smalltalk.addMethod(
  205. '_error_',
  206. smalltalk.method({
  207. selector: 'error:',
  208. fn: function (aString){
  209. var self=this;
  210. smalltalk.send((smalltalk.Error || Error), "_signal_", [aString]);
  211. return self;}
  212. }),
  213. smalltalk.Object);
  214. smalltalk.addMethod(
  215. '_subclassResponsibility',
  216. smalltalk.method({
  217. selector: 'subclassResponsibility',
  218. fn: function (){
  219. var self=this;
  220. smalltalk.send(self, "_error_", ["This method is a responsibility of a subclass"]);
  221. return self;}
  222. }),
  223. smalltalk.Object);
  224. smalltalk.addMethod(
  225. '_shouldNotImplement',
  226. smalltalk.method({
  227. selector: 'shouldNotImplement',
  228. fn: function (){
  229. var self=this;
  230. smalltalk.send(self, "_error_", [smalltalk.send("This method should not be implemented in ", "__comma", [smalltalk.send(smalltalk.send(self, "_class", []), "_name", [])])]);
  231. return self;}
  232. }),
  233. smalltalk.Object);
  234. smalltalk.addMethod(
  235. '_try_catch_',
  236. smalltalk.method({
  237. selector: 'try:catch:',
  238. fn: function (aBlock, anotherBlock){
  239. var self=this;
  240. try{aBlock()} catch(e) {anotherBlock(e)};
  241. return self;}
  242. }),
  243. smalltalk.Object);
  244. smalltalk.addMethod(
  245. '_printString',
  246. smalltalk.method({
  247. selector: 'printString',
  248. fn: function (){
  249. var self=this;
  250. return smalltalk.send("a ", "__comma", [smalltalk.send(smalltalk.send(self, "_class", []), "_name", [])]);
  251. return self;}
  252. }),
  253. smalltalk.Object);
  254. smalltalk.addMethod(
  255. '_printNl',
  256. smalltalk.method({
  257. selector: 'printNl',
  258. fn: function (){
  259. var self=this;
  260. console.log(self);
  261. return self;}
  262. }),
  263. smalltalk.Object);
  264. smalltalk.addMethod(
  265. '_isKindOf_',
  266. smalltalk.method({
  267. selector: 'isKindOf:',
  268. fn: function (aClass){
  269. var self=this;
  270. return ((($receiver = smalltalk.send(self, "_isMemberOf_", [aClass])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return true;})() : (function(){return smalltalk.send(smalltalk.send(self, "_class", []), "_inheritsFrom_", [aClass]);})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return true;}), (function(){return smalltalk.send(smalltalk.send(self, "_class", []), "_inheritsFrom_", [aClass]);})]));
  271. return self;}
  272. }),
  273. smalltalk.Object);
  274. smalltalk.addMethod(
  275. '_isMemberOf_',
  276. smalltalk.method({
  277. selector: 'isMemberOf:',
  278. fn: function (aClass){
  279. var self=this;
  280. return smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [aClass]);
  281. return self;}
  282. }),
  283. smalltalk.Object);
  284. smalltalk.addMethod(
  285. '_ifNil_',
  286. smalltalk.method({
  287. selector: 'ifNil:',
  288. fn: function (aBlock){
  289. var self=this;
  290. return self;
  291. return self;}
  292. }),
  293. smalltalk.Object);
  294. smalltalk.addMethod(
  295. '_ifNil_ifNotNil_',
  296. smalltalk.method({
  297. selector: 'ifNil:ifNotNil:',
  298. fn: function (aBlock, anotherBlock){
  299. var self=this;
  300. return smalltalk.send(anotherBlock, "_value", []);
  301. return self;}
  302. }),
  303. smalltalk.Object);
  304. smalltalk.addMethod(
  305. '_ifNotNil_',
  306. smalltalk.method({
  307. selector: 'ifNotNil:',
  308. fn: function (aBlock){
  309. var self=this;
  310. return smalltalk.send(aBlock, "_value", []);
  311. return self;}
  312. }),
  313. smalltalk.Object);
  314. smalltalk.addMethod(
  315. '_ifNotNil_ifNil_',
  316. smalltalk.method({
  317. selector: 'ifNotNil:ifNil:',
  318. fn: function (aBlock, anotherBlock){
  319. var self=this;
  320. return smalltalk.send(aBlock, "_value", []);
  321. return self;}
  322. }),
  323. smalltalk.Object);
  324. smalltalk.addMethod(
  325. '_isNil',
  326. smalltalk.method({
  327. selector: 'isNil',
  328. fn: function (){
  329. var self=this;
  330. return false;
  331. return self;}
  332. }),
  333. smalltalk.Object);
  334. smalltalk.addMethod(
  335. '_notNil',
  336. smalltalk.method({
  337. selector: 'notNil',
  338. fn: function (){
  339. var self=this;
  340. return smalltalk.send(smalltalk.send(self, "_isNil", []), "_not", []);
  341. return self;}
  342. }),
  343. smalltalk.Object);
  344. smalltalk.addMethod(
  345. '_isClass',
  346. smalltalk.method({
  347. selector: 'isClass',
  348. fn: function (){
  349. var self=this;
  350. return false;
  351. return self;}
  352. }),
  353. smalltalk.Object);
  354. smalltalk.addMethod(
  355. '_isMetaclass',
  356. smalltalk.method({
  357. selector: 'isMetaclass',
  358. fn: function (){
  359. var self=this;
  360. return false;
  361. return self;}
  362. }),
  363. smalltalk.Object);
  364. smalltalk.addMethod(
  365. '_isNumber',
  366. smalltalk.method({
  367. selector: 'isNumber',
  368. fn: function (){
  369. var self=this;
  370. return false;
  371. return self;}
  372. }),
  373. smalltalk.Object);
  374. smalltalk.addMethod(
  375. '_isString',
  376. smalltalk.method({
  377. selector: 'isString',
  378. fn: function (){
  379. var self=this;
  380. return false;
  381. return self;}
  382. }),
  383. smalltalk.Object);
  384. smalltalk.addMethod(
  385. '_isParseFailure',
  386. smalltalk.method({
  387. selector: 'isParseFailure',
  388. fn: function (){
  389. var self=this;
  390. return false;
  391. return self;}
  392. }),
  393. smalltalk.Object);
  394. smalltalk.addMethod(
  395. '_basicPerform_',
  396. smalltalk.method({
  397. selector: 'basicPerform:',
  398. fn: function (aSymbol){
  399. var self=this;
  400. return smalltalk.send(self, "_basicPerform_withArguments_", [aSymbol, []]);
  401. return self;}
  402. }),
  403. smalltalk.Object);
  404. smalltalk.addMethod(
  405. '_basicPerform_withArguments_',
  406. smalltalk.method({
  407. selector: 'basicPerform:withArguments:',
  408. fn: function (aSymbol, aCollection){
  409. var self=this;
  410. return self[aSymbol].apply(self, aCollection);;
  411. return self;}
  412. }),
  413. smalltalk.Object);
  414. smalltalk.addMethod(
  415. '_basicDelete_',
  416. smalltalk.method({
  417. selector: 'basicDelete:',
  418. fn: function (aString){
  419. var self=this;
  420. delete self[aString];
  421. return self;}
  422. }),
  423. smalltalk.Object);
  424. smalltalk.addMethod(
  425. '_doesNotUnderstand_',
  426. smalltalk.method({
  427. selector: 'doesNotUnderstand:',
  428. fn: function (aMessage){
  429. var self=this;
  430. (function($rec){smalltalk.send($rec, "_receiver_", [self]);smalltalk.send($rec, "_message_", [aMessage]);return smalltalk.send($rec, "_signal", []);})(smalltalk.send((smalltalk.MessageNotUnderstood || MessageNotUnderstood), "_new", []));
  431. return self;}
  432. }),
  433. smalltalk.Object);
  434. smalltalk.addMethod(
  435. '_asJSON',
  436. smalltalk.method({
  437. selector: 'asJSON',
  438. fn: function (){
  439. var self=this;
  440. return JSON.stringify(self._asJSONObject());
  441. return self;}
  442. }),
  443. smalltalk.Object);
  444. smalltalk.addMethod(
  445. '_asJSONObject',
  446. smalltalk.method({
  447. selector: 'asJSONObject',
  448. fn: function (){
  449. var self=this;
  450. var object=nil;
  451. object=smalltalk.send((smalltalk.Object || Object), "_new", []);
  452. smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_instanceVariableNames", []), "_do_", [(function(each){return smalltalk.send(object, "_basicAt_put_", [each, smalltalk.send(smalltalk.send(self, "_instVarAt_", [each]), "_asJSONObject", [])]);})]);
  453. return object;
  454. return self;}
  455. }),
  456. smalltalk.Object);
  457. smalltalk.addMethod(
  458. '_halt',
  459. smalltalk.method({
  460. selector: 'halt',
  461. fn: function (){
  462. var self=this;
  463. smalltalk.send(self, "_error_", ["Halt encountered"]);
  464. return self;}
  465. }),
  466. smalltalk.Object);
  467. smalltalk.addMethod(
  468. '_log_block_',
  469. smalltalk.method({
  470. selector: 'log:block:',
  471. fn: function (aString, aBlock){
  472. var self=this;
  473. var result=nil;
  474. smalltalk.send((typeof console == 'undefined' ? nil : console), "_log_", [smalltalk.send(smalltalk.send(aString, "__comma", [" time: "]), "__comma", [smalltalk.send(smalltalk.send((smalltalk.Date || Date), "_millisecondsToRun_", [(function(){return result=smalltalk.send(aBlock, "_value", []);})]), "_printString", [])])]);
  475. return result;
  476. return self;}
  477. }),
  478. smalltalk.Object);
  479. smalltalk.addMethod(
  480. '__eq_eq',
  481. smalltalk.method({
  482. selector: '==',
  483. fn: function (anObject){
  484. var self=this;
  485. return self === anObject;
  486. return self;}
  487. }),
  488. smalltalk.Object);
  489. smalltalk.addMethod(
  490. '_~~',
  491. smalltalk.method({
  492. selector: '~~',
  493. fn: function (anObject){
  494. var self=this;
  495. return smalltalk.send(smalltalk.send(self, "__eq_eq", [anObject]), "__eq", [false]);
  496. return self;}
  497. }),
  498. smalltalk.Object);
  499. smalltalk.addMethod(
  500. '_deprecatedAPI',
  501. smalltalk.method({
  502. selector: 'deprecatedAPI',
  503. fn: function (){
  504. var self=this;
  505. smalltalk.send((typeof console == 'undefined' ? nil : console), "_warn_", [smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.getThisContext()), "_home", []), "_asString", []), "__comma", [unescape("%20is%20deprecated%21")])]);
  506. return self;}
  507. }),
  508. smalltalk.Object);
  509. smalltalk.addMethod(
  510. '_initialize',
  511. smalltalk.method({
  512. selector: 'initialize',
  513. fn: function (){
  514. var self=this;
  515. return self;}
  516. }),
  517. smalltalk.Object.klass);
  518. smalltalk.addClass('Smalltalk', smalltalk.Object, [], 'Kernel');
  519. smalltalk.addMethod(
  520. '_classes',
  521. smalltalk.method({
  522. selector: 'classes',
  523. fn: function (){
  524. var self=this;
  525. return self.classes();
  526. return self;}
  527. }),
  528. smalltalk.Smalltalk);
  529. smalltalk.addMethod(
  530. '_readJSON_',
  531. smalltalk.method({
  532. selector: 'readJSON:',
  533. fn: function (anObject){
  534. var self=this;
  535. return self.readJSObject(anObject);
  536. return self;}
  537. }),
  538. smalltalk.Smalltalk);
  539. smalltalk.addMethod(
  540. '_at_',
  541. smalltalk.method({
  542. selector: 'at:',
  543. fn: function (aString){
  544. var self=this;
  545. return self[aString];
  546. return self;}
  547. }),
  548. smalltalk.Smalltalk);
  549. smalltalk.addMethod(
  550. '_removeClass_',
  551. smalltalk.method({
  552. selector: 'removeClass:',
  553. fn: function (aClass){
  554. var self=this;
  555. ((($receiver = smalltalk.send(aClass, "_isMetaclass", [])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_error_", [smalltalk.send(smalltalk.send(aClass, "_asString", []), "__comma", [unescape("%20is%20a%20Metaclass%20and%20cannot%20be%20removed%21")])]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_error_", [smalltalk.send(smalltalk.send(aClass, "_asString", []), "__comma", [unescape("%20is%20a%20Metaclass%20and%20cannot%20be%20removed%21")])]);})]));
  556. smalltalk.send(smalltalk.send(smalltalk.send(aClass, "_methodDictionary", []), "_values", []), "_do_", [(function(each){return smalltalk.send(aClass, "_removeCompiledMethod_", [each]);})]);
  557. smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(aClass, "_class", []), "_methodDictionary", []), "_values", []), "_do_", [(function(each){return smalltalk.send(smalltalk.send(aClass, "_class", []), "_removeCompiledMethod_", [each]);})]);
  558. smalltalk.send(self, "_basicDelete_", [smalltalk.send(aClass, "_name", [])]);
  559. return self;}
  560. }),
  561. smalltalk.Smalltalk);
  562. smalltalk.addMethod(
  563. '_basicParse_',
  564. smalltalk.method({
  565. selector: 'basicParse:',
  566. fn: function (aString){
  567. var self=this;
  568. return smalltalk.parser.parse(aString);
  569. return self;}
  570. }),
  571. smalltalk.Smalltalk);
  572. smalltalk.addMethod(
  573. '_parse_',
  574. smalltalk.method({
  575. selector: 'parse:',
  576. fn: function (aString){
  577. var self=this;
  578. var result=nil;
  579. smalltalk.send(self, "_try_catch_", [(function(){return result=smalltalk.send(self, "_basicParse_", [aString]);}), (function(ex){return smalltalk.send(smalltalk.send(self, "_parseError_parsing_", [ex, aString]), "_signal", []);})]);
  580. return result;
  581. return self;}
  582. }),
  583. smalltalk.Smalltalk);
  584. smalltalk.addMethod(
  585. '_parseError_parsing_',
  586. smalltalk.method({
  587. selector: 'parseError:parsing:',
  588. fn: function (anException, aString){
  589. var self=this;
  590. var row=nil;
  591. var col=nil;
  592. var message=nil;
  593. var lines=nil;
  594. var badLine=nil;
  595. var code=nil;
  596. row = anException.line;
  597. col = anException.column;
  598. message = anException.message;;
  599. lines=smalltalk.send(aString, "_lines", []);
  600. badLine=smalltalk.send(lines, "_at_", [row]);
  601. badLine=smalltalk.send(smalltalk.send(smalltalk.send(badLine, "_copyFrom_to_", [(1), ((($receiver = col).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)]))]), "__comma", [unescape("%20%3D%3D%3D%3E")]), "__comma", [smalltalk.send(badLine, "_copyFrom_to_", [col, smalltalk.send(badLine, "_size", [])])]);
  602. smalltalk.send(lines, "_at_put_", [row, badLine]);
  603. code=smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(s){return smalltalk.send(lines, "_withIndexDo_", [(function(l, i){return smalltalk.send(s, "_nextPutAll_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(i, "_asString", []), "__comma", [": "]), "__comma", [l]), "__comma", [smalltalk.send((smalltalk.String || String), "_lf", [])])]);})]);})]);
  604. return smalltalk.send(smalltalk.send((smalltalk.Error || Error), "_new", []), "_messageText_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send("Parse error on line ", "__comma", [row]), "__comma", [" column "]), "__comma", [col]), "__comma", [" : "]), "__comma", [message]), "__comma", [unescape("%20Below%20is%20code%20with%20line%20numbers%20and%20%3D%3D%3D%3E%20marker%20inserted%3A")]), "__comma", [smalltalk.send((smalltalk.String || String), "_lf", [])]), "__comma", [code])]);
  605. return self;}
  606. }),
  607. smalltalk.Smalltalk);
  608. smalltalk.addMethod(
  609. '_packages',
  610. smalltalk.method({
  611. selector: 'packages',
  612. fn: function (){
  613. var self=this;
  614. return self.packages.all();
  615. return self;}
  616. }),
  617. smalltalk.Smalltalk);
  618. smalltalk.addMethod(
  619. '_packageAt_',
  620. smalltalk.method({
  621. selector: 'packageAt:',
  622. fn: function (packageName){
  623. var self=this;
  624. return self.packages[packageName];
  625. return self;}
  626. }),
  627. smalltalk.Smalltalk);
  628. smalltalk.addMethod(
  629. '_packageAt_ifAbsent_',
  630. smalltalk.method({
  631. selector: 'packageAt:ifAbsent:',
  632. fn: function (packageName, aBlock){
  633. var self=this;
  634. return smalltalk.send(smalltalk.send(self, "_packageAt_", [packageName]), "_ifNil_", [aBlock]);
  635. return self;}
  636. }),
  637. smalltalk.Smalltalk);
  638. smalltalk.addMethod(
  639. '_createPackage_',
  640. smalltalk.method({
  641. selector: 'createPackage:',
  642. fn: function (packageName){
  643. var self=this;
  644. return smalltalk.addPackage(packageName);
  645. return self;}
  646. }),
  647. smalltalk.Smalltalk);
  648. smalltalk.addMethod(
  649. '_deletePackage_',
  650. smalltalk.method({
  651. selector: 'deletePackage:',
  652. fn: function (packageName){
  653. var self=this;
  654. delete smalltalk.packages[packageName];
  655. return self;}
  656. }),
  657. smalltalk.Smalltalk);
  658. smalltalk.addMethod(
  659. '_removePackage_',
  660. smalltalk.method({
  661. selector: 'removePackage:',
  662. fn: function (packageName){
  663. var self=this;
  664. var pkg=nil;
  665. pkg=smalltalk.send(self, "_packageAt_ifAbsent_", [packageName, (function(){return smalltalk.send(self, "_error_", [smalltalk.send("Missing package: ", "__comma", [packageName])]);})]);
  666. smalltalk.send(smalltalk.send(pkg, "_classes", []), "_do_", [(function(each){return smalltalk.send(self, "_removeClass_", [each]);})]);
  667. smalltalk.send(self, "_deletePackage_", [packageName]);
  668. return self;}
  669. }),
  670. smalltalk.Smalltalk);
  671. smalltalk.addMethod(
  672. '_renamePackage_to_',
  673. smalltalk.method({
  674. selector: 'renamePackage:to:',
  675. fn: function (packageName, newName){
  676. var self=this;
  677. var pkg=nil;
  678. pkg=smalltalk.send(self, "_packageAt_ifAbsent_", [packageName, (function(){return smalltalk.send(self, "_error_", [smalltalk.send("Missing package: ", "__comma", [packageName])]);})]);
  679. (($receiver = smalltalk.send(self, "_packageAt_", [newName])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_error_", [smalltalk.send("Already exists a package called: ", "__comma", [newName])]);})() : nil;
  680. smalltalk.packages[newName] = smalltalk.packages[packageName];
  681. smalltalk.send(pkg, "_name_", [newName]);
  682. smalltalk.send(self, "_deletePackage_", [packageName]);
  683. return self;}
  684. }),
  685. smalltalk.Smalltalk);
  686. smalltalk.addMethod(
  687. '_reservedWords',
  688. smalltalk.method({
  689. selector: 'reservedWords',
  690. fn: function (){
  691. var self=this;
  692. return self.reservedWords;
  693. return self;}
  694. }),
  695. smalltalk.Smalltalk);
  696. smalltalk.Smalltalk.klass.iVarNames = ['current'];
  697. smalltalk.addMethod(
  698. '_current',
  699. smalltalk.method({
  700. selector: 'current',
  701. fn: function (){
  702. var self=this;
  703. return smalltalk;
  704. return self;}
  705. }),
  706. smalltalk.Smalltalk.klass);
  707. smalltalk.addClass('Package', smalltalk.Object, [], 'Kernel');
  708. smalltalk.addMethod(
  709. '_name',
  710. smalltalk.method({
  711. selector: 'name',
  712. fn: function (){
  713. var self=this;
  714. return self.pkgName || nil;
  715. return self;}
  716. }),
  717. smalltalk.Package);
  718. smalltalk.addMethod(
  719. '_requires',
  720. smalltalk.method({
  721. selector: 'requires',
  722. fn: function (){
  723. var self=this;
  724. return self.requires || nil;
  725. return self;}
  726. }),
  727. smalltalk.Package);
  728. smalltalk.addMethod(
  729. '_name_',
  730. smalltalk.method({
  731. selector: 'name:',
  732. fn: function (aString){
  733. var self=this;
  734. return self.pkgName = aString;
  735. return self;}
  736. }),
  737. smalltalk.Package);
  738. smalltalk.addMethod(
  739. '_classes',
  740. smalltalk.method({
  741. selector: 'classes',
  742. fn: function (){
  743. var self=this;
  744. return smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk), "_current", []), "_classes", []), "_select_", [(function(c){return smalltalk.send(smalltalk.send(c, "_package", []), "__eq_eq", [self]);})]);
  745. return self;}
  746. }),
  747. smalltalk.Package);
  748. smalltalk.addMethod(
  749. '_printString',
  750. smalltalk.method({
  751. selector: 'printString',
  752. fn: function (){
  753. var self=this;
  754. return smalltalk.send(self, "_name", []);
  755. return self;}
  756. }),
  757. smalltalk.Package);
  758. smalltalk.addMethod(
  759. '_named_',
  760. smalltalk.method({
  761. selector: 'named:',
  762. fn: function (aPackageName){
  763. var self=this;
  764. return smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk), "_current", []), "_packageAt_", [aPackageName]);
  765. return self;}
  766. }),
  767. smalltalk.Package.klass);
  768. smalltalk.addMethod(
  769. '_named_ifAbsent_',
  770. smalltalk.method({
  771. selector: 'named:ifAbsent:',
  772. fn: function (aPackageName, aBlock){
  773. var self=this;
  774. return smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk), "_current", []), "_packageAt_ifAbsent_", [aPackageName, aBlock]);
  775. return self;}
  776. }),
  777. smalltalk.Package.klass);
  778. smalltalk.addClass('Behavior', smalltalk.Object, [], 'Kernel');
  779. smalltalk.addMethod(
  780. '_new',
  781. smalltalk.method({
  782. selector: 'new',
  783. fn: function (){
  784. var self=this;
  785. return smalltalk.send(smalltalk.send(self, "_basicNew", []), "_initialize", []);
  786. return self;}
  787. }),
  788. smalltalk.Behavior);
  789. smalltalk.addMethod(
  790. '_basicNew',
  791. smalltalk.method({
  792. selector: 'basicNew',
  793. fn: function (){
  794. var self=this;
  795. return new self.fn();
  796. return self;}
  797. }),
  798. smalltalk.Behavior);
  799. smalltalk.addMethod(
  800. '_name',
  801. smalltalk.method({
  802. selector: 'name',
  803. fn: function (){
  804. var self=this;
  805. return self.className || nil;
  806. return self;}
  807. }),
  808. smalltalk.Behavior);
  809. smalltalk.addMethod(
  810. '_superclass',
  811. smalltalk.method({
  812. selector: 'superclass',
  813. fn: function (){
  814. var self=this;
  815. return self.superclass || nil;
  816. return self;}
  817. }),
  818. smalltalk.Behavior);
  819. smalltalk.addMethod(
  820. '_subclasses',
  821. smalltalk.method({
  822. selector: 'subclasses',
  823. fn: function (){
  824. var self=this;
  825. return smalltalk.subclasses(self);
  826. return self;}
  827. }),
  828. smalltalk.Behavior);
  829. smalltalk.addMethod(
  830. '_allSubclasses',
  831. smalltalk.method({
  832. selector: 'allSubclasses',
  833. fn: function (){
  834. var self=this;
  835. var result=nil;
  836. result=smalltalk.send(self, "_subclasses", []);
  837. smalltalk.send(smalltalk.send(self, "_subclasses", []), "_do_", [(function(each){return smalltalk.send(result, "_addAll_", [smalltalk.send(each, "_allSubclasses", [])]);})]);
  838. return result;
  839. return self;}
  840. }),
  841. smalltalk.Behavior);
  842. smalltalk.addMethod(
  843. '_withAllSubclasses',
  844. smalltalk.method({
  845. selector: 'withAllSubclasses',
  846. fn: function (){
  847. var self=this;
  848. return (function($rec){smalltalk.send($rec, "_addAll_", [smalltalk.send(self, "_allSubclasses", [])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Array || Array), "_with_", [self]));
  849. return self;}
  850. }),
  851. smalltalk.Behavior);
  852. smalltalk.addMethod(
  853. '_prototype',
  854. smalltalk.method({
  855. selector: 'prototype',
  856. fn: function (){
  857. var self=this;
  858. return self.fn.prototype;
  859. return self;}
  860. }),
  861. smalltalk.Behavior);
  862. smalltalk.addMethod(
  863. '_methodDictionary',
  864. smalltalk.method({
  865. selector: 'methodDictionary',
  866. fn: function (){
  867. var self=this;
  868. var dict = smalltalk.Dictionary._new();
  869. var methods = self.fn.prototype.methods;
  870. for(var i in methods) {
  871. if(methods[i].selector) {
  872. dict._at_put_(methods[i].selector, methods[i]);
  873. }
  874. };
  875. return dict;
  876. return self;}
  877. }),
  878. smalltalk.Behavior);
  879. smalltalk.addMethod(
  880. '_methodsFor_',
  881. smalltalk.method({
  882. selector: 'methodsFor:',
  883. fn: function (aString){
  884. var self=this;
  885. return (function($rec){smalltalk.send($rec, "_class_category_", [self, aString]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.ClassCategoryReader || ClassCategoryReader), "_new", []));
  886. return self;}
  887. }),
  888. smalltalk.Behavior);
  889. smalltalk.addMethod(
  890. '_addCompiledMethod_',
  891. smalltalk.method({
  892. selector: 'addCompiledMethod:',
  893. fn: function (aMethod){
  894. var self=this;
  895. smalltalk.addMethod(aMethod.selector._asSelector(), aMethod, self);
  896. return self;}
  897. }),
  898. smalltalk.Behavior);
  899. smalltalk.addMethod(
  900. '_instanceVariableNames',
  901. smalltalk.method({
  902. selector: 'instanceVariableNames',
  903. fn: function (){
  904. var self=this;
  905. return self.iVarNames;
  906. return self;}
  907. }),
  908. smalltalk.Behavior);
  909. smalltalk.addMethod(
  910. '_comment',
  911. smalltalk.method({
  912. selector: 'comment',
  913. fn: function (){
  914. var self=this;
  915. return (($receiver = smalltalk.send(self, "_basicAt_", ["comment"])) == nil || $receiver == undefined) ? (function(){return "";})() : $receiver;
  916. return self;}
  917. }),
  918. smalltalk.Behavior);
  919. smalltalk.addMethod(
  920. '_comment_',
  921. smalltalk.method({
  922. selector: 'comment:',
  923. fn: function (aString){
  924. var self=this;
  925. smalltalk.send(self, "_basicAt_put_", ["comment", aString]);
  926. return self;}
  927. }),
  928. smalltalk.Behavior);
  929. smalltalk.addMethod(
  930. '_commentStamp',
  931. smalltalk.method({
  932. selector: 'commentStamp',
  933. fn: function (){
  934. var self=this;
  935. return (function($rec){smalltalk.send($rec, "_class_", [self]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.ClassCommentReader || ClassCommentReader), "_new", []));
  936. return self;}
  937. }),
  938. smalltalk.Behavior);
  939. smalltalk.addMethod(
  940. '_removeCompiledMethod_',
  941. smalltalk.method({
  942. selector: 'removeCompiledMethod:',
  943. fn: function (aMethod){
  944. var self=this;
  945. delete self.fn.prototype[aMethod.selector._asSelector()];
  946. delete self.fn.prototype.methods[aMethod.selector];
  947. smalltalk.init(self);;
  948. return self;}
  949. }),
  950. smalltalk.Behavior);
  951. smalltalk.addMethod(
  952. '_inheritsFrom_',
  953. smalltalk.method({
  954. selector: 'inheritsFrom:',
  955. fn: function (aClass){
  956. var self=this;
  957. return smalltalk.send(smalltalk.send(aClass, "_allSubclasses", []), "_includes_", [self]);
  958. return self;}
  959. }),
  960. smalltalk.Behavior);
  961. smalltalk.addMethod(
  962. '_protocols',
  963. smalltalk.method({
  964. selector: 'protocols',
  965. fn: function (){
  966. var self=this;
  967. var protocols=nil;
  968. protocols=smalltalk.send((smalltalk.Array || Array), "_new", []);
  969. smalltalk.send(smalltalk.send(self, "_methodDictionary", []), "_do_", [(function(each){return ((($receiver = smalltalk.send(protocols, "_includes_", [smalltalk.send(each, "_category", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(protocols, "_add_", [smalltalk.send(each, "_category", [])]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(protocols, "_add_", [smalltalk.send(each, "_category", [])]);})]));})]);
  970. return smalltalk.send(protocols, "_sort", []);
  971. return self;}
  972. }),
  973. smalltalk.Behavior);
  974. smalltalk.addMethod(
  975. '_protocolsDo_',
  976. smalltalk.method({
  977. selector: 'protocolsDo:',
  978. fn: function (aBlock){
  979. var self=this;
  980. var methodsByCategory=nil;
  981. methodsByCategory=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []);
  982. smalltalk.send(smalltalk.send(smalltalk.send(self, "_methodDictionary", []), "_values", []), "_do_", [(function(m){return smalltalk.send(smalltalk.send(methodsByCategory, "_at_ifAbsentPut_", [smalltalk.send(m, "_category", []), (function(){return smalltalk.send((smalltalk.Array || Array), "_new", []);})]), "_add_", [m]);})]);
  983. smalltalk.send(smalltalk.send(self, "_protocols", []), "_do_", [(function(category){return smalltalk.send(aBlock, "_value_value_", [category, smalltalk.send(methodsByCategory, "_at_", [category])]);})]);
  984. return self;}
  985. }),
  986. smalltalk.Behavior);
  987. smalltalk.addMethod(
  988. '_allInstanceVariableNames',
  989. smalltalk.method({
  990. selector: 'allInstanceVariableNames',
  991. fn: function (){
  992. var self=this;
  993. var result=nil;
  994. result=smalltalk.send(smalltalk.send(self, "_instanceVariableNames", []), "_copy", []);
  995. (($receiver = smalltalk.send(self, "_superclass", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(result, "_addAll_", [smalltalk.send(smalltalk.send(self, "_superclass", []), "_allInstanceVariableNames", [])]);})() : nil;
  996. return result;
  997. return self;}
  998. }),
  999. smalltalk.Behavior);
  1000. smalltalk.addMethod(
  1001. '_methodAt_',
  1002. smalltalk.method({
  1003. selector: 'methodAt:',
  1004. fn: function (aString){
  1005. var self=this;
  1006. return smalltalk.methods(self)[aString];
  1007. return self;}
  1008. }),
  1009. smalltalk.Behavior);
  1010. smalltalk.addMethod(
  1011. '_methodsFor_stamp_',
  1012. smalltalk.method({
  1013. selector: 'methodsFor:stamp:',
  1014. fn: function (aString, aStamp){
  1015. var self=this;
  1016. return smalltalk.send(self, "_methodsFor_", [aString]);
  1017. return self;}
  1018. }),
  1019. smalltalk.Behavior);
  1020. smalltalk.addMethod(
  1021. '_commentStamp_prior_',
  1022. smalltalk.method({
  1023. selector: 'commentStamp:prior:',
  1024. fn: function (aStamp, prior){
  1025. var self=this;
  1026. return smalltalk.send(self, "_commentStamp", []);
  1027. return self;}
  1028. }),
  1029. smalltalk.Behavior);
  1030. smalltalk.addMethod(
  1031. '_compile_',
  1032. smalltalk.method({
  1033. selector: 'compile:',
  1034. fn: function (aString){
  1035. var self=this;
  1036. smalltalk.send(self, "_compile_category_", [aString, ""]);
  1037. return self;}
  1038. }),
  1039. smalltalk.Behavior);
  1040. smalltalk.addMethod(
  1041. '_compile_category_',
  1042. smalltalk.method({
  1043. selector: 'compile:category:',
  1044. fn: function (aString, anotherString){
  1045. var self=this;
  1046. var method=nil;
  1047. method=smalltalk.send(smalltalk.send((smalltalk.Compiler || Compiler), "_new", []), "_load_forClass_", [aString, self]);
  1048. smalltalk.send(method, "_category_", [anotherString]);
  1049. smalltalk.send(self, "_addCompiledMethod_", [method]);
  1050. return self;}
  1051. }),
  1052. smalltalk.Behavior);
  1053. smalltalk.addClass('Class', smalltalk.Behavior, [], 'Kernel');
  1054. smalltalk.addMethod(
  1055. '_category',
  1056. smalltalk.method({
  1057. selector: 'category',
  1058. fn: function (){
  1059. var self=this;
  1060. return (($receiver = smalltalk.send(self, "_package", [])) == nil || $receiver == undefined) ? (function(){return "Unclassified";})() : (function(){return smalltalk.send(smalltalk.send(self, "_package", []), "_name", []);})();
  1061. return self;}
  1062. }),
  1063. smalltalk.Class);
  1064. smalltalk.addMethod(
  1065. '_subclass_instanceVariableNames_',
  1066. smalltalk.method({
  1067. selector: 'subclass:instanceVariableNames:',
  1068. fn: function (aString, anotherString){
  1069. var self=this;
  1070. return smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, anotherString, nil]);
  1071. return self;}
  1072. }),
  1073. smalltalk.Class);
  1074. smalltalk.addMethod(
  1075. '_subclass_instanceVariableNames_category_',
  1076. smalltalk.method({
  1077. selector: 'subclass:instanceVariableNames:category:',
  1078. fn: function (aString, aString2, aString3){
  1079. var self=this;
  1080. return smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, aString2, aString3]);
  1081. return self;}
  1082. }),
  1083. smalltalk.Class);
  1084. smalltalk.addMethod(
  1085. '_isClass',
  1086. smalltalk.method({
  1087. selector: 'isClass',
  1088. fn: function (){
  1089. var self=this;
  1090. return true;
  1091. return self;}
  1092. }),
  1093. smalltalk.Class);
  1094. smalltalk.addMethod(
  1095. '_printString',
  1096. smalltalk.method({
  1097. selector: 'printString',
  1098. fn: function (){
  1099. var self=this;
  1100. return smalltalk.send(self, "_name", []);
  1101. return self;}
  1102. }),
  1103. smalltalk.Class);
  1104. smalltalk.addMethod(
  1105. '_rename_',
  1106. smalltalk.method({
  1107. selector: 'rename:',
  1108. fn: function (aString){
  1109. var self=this;
  1110. smalltalk[aString] = self;
  1111. delete smalltalk[self.className];
  1112. self.className = aString;
  1113. ;
  1114. return self;}
  1115. }),
  1116. smalltalk.Class);
  1117. smalltalk.addMethod(
  1118. '_subclass_instanceVariableNames_classVariableNames_poolDictionaries_category_',
  1119. smalltalk.method({
  1120. selector: 'subclass:instanceVariableNames:classVariableNames:poolDictionaries:category:',
  1121. fn: function (aString, aString2, classVars, pools, aString3){
  1122. var self=this;
  1123. return smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, aString2, aString3]);
  1124. return self;}
  1125. }),
  1126. smalltalk.Class);
  1127. smalltalk.addMethod(
  1128. '_package',
  1129. smalltalk.method({
  1130. selector: 'package',
  1131. fn: function (){
  1132. var self=this;
  1133. return self.pkg;
  1134. return self;}
  1135. }),
  1136. smalltalk.Class);
  1137. smalltalk.addMethod(
  1138. '_package_',
  1139. smalltalk.method({
  1140. selector: 'package:',
  1141. fn: function (aPackage){
  1142. var self=this;
  1143. self.pkg = aPackage;
  1144. return self;}
  1145. }),
  1146. smalltalk.Class);
  1147. smalltalk.addMethod(
  1148. '_subclass_instanceVariableNames_package_',
  1149. smalltalk.method({
  1150. selector: 'subclass:instanceVariableNames:package:',
  1151. fn: function (aString, aString2, aString3){
  1152. var self=this;
  1153. return smalltalk.send(smalltalk.send((smalltalk.ClassBuilder || ClassBuilder), "_new", []), "_superclass_subclass_instanceVariableNames_package_", [self, aString, aString2, aString3]);
  1154. return self;}
  1155. }),
  1156. smalltalk.Class);
  1157. smalltalk.addClass('Metaclass', smalltalk.Behavior, [], 'Kernel');
  1158. smalltalk.addMethod(
  1159. '_instanceClass',
  1160. smalltalk.method({
  1161. selector: 'instanceClass',
  1162. fn: function (){
  1163. var self=this;
  1164. return self.instanceClass;
  1165. return self;}
  1166. }),
  1167. smalltalk.Metaclass);
  1168. smalltalk.addMethod(
  1169. '_instanceVariableNames_',
  1170. smalltalk.method({
  1171. selector: 'instanceVariableNames:',
  1172. fn: function (aCollection){
  1173. var self=this;
  1174. smalltalk.send(smalltalk.send((smalltalk.ClassBuilder || ClassBuilder), "_new", []), "_class_instanceVariableNames_", [self, aCollection]);
  1175. return self;}
  1176. }),
  1177. smalltalk.Metaclass);
  1178. smalltalk.addMethod(
  1179. '_isMetaclass',
  1180. smalltalk.method({
  1181. selector: 'isMetaclass',
  1182. fn: function (){
  1183. var self=this;
  1184. return true;
  1185. return self;}
  1186. }),
  1187. smalltalk.Metaclass);
  1188. smalltalk.addMethod(
  1189. '_printString',
  1190. smalltalk.method({
  1191. selector: 'printString',
  1192. fn: function (){
  1193. var self=this;
  1194. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_instanceClass", []), "_name", []), "__comma", [" class"]);
  1195. return self;}
  1196. }),
  1197. smalltalk.Metaclass);
  1198. smalltalk.addClass('CompiledMethod', smalltalk.Object, [], 'Kernel');
  1199. smalltalk.addMethod(
  1200. '_source',
  1201. smalltalk.method({
  1202. selector: 'source',
  1203. fn: function (){
  1204. var self=this;
  1205. return (($receiver = smalltalk.send(self, "_basicAt_", ["source"])) == nil || $receiver == undefined) ? (function(){return "";})() : $receiver;
  1206. return self;}
  1207. }),
  1208. smalltalk.CompiledMethod);
  1209. smalltalk.addMethod(
  1210. '_source_',
  1211. smalltalk.method({
  1212. selector: 'source:',
  1213. fn: function (aString){
  1214. var self=this;
  1215. smalltalk.send(self, "_basicAt_put_", ["source", aString]);
  1216. return self;}
  1217. }),
  1218. smalltalk.CompiledMethod);
  1219. smalltalk.addMethod(
  1220. '_category',
  1221. smalltalk.method({
  1222. selector: 'category',
  1223. fn: function (){
  1224. var self=this;
  1225. return (($receiver = smalltalk.send(self, "_basicAt_", ["category"])) == nil || $receiver == undefined) ? (function(){return "";})() : $receiver;
  1226. return self;}
  1227. }),
  1228. smalltalk.CompiledMethod);
  1229. smalltalk.addMethod(
  1230. '_category_',
  1231. smalltalk.method({
  1232. selector: 'category:',
  1233. fn: function (aString){
  1234. var self=this;
  1235. smalltalk.send(self, "_basicAt_put_", ["category", aString]);
  1236. return self;}
  1237. }),
  1238. smalltalk.CompiledMethod);
  1239. smalltalk.addMethod(
  1240. '_selector',
  1241. smalltalk.method({
  1242. selector: 'selector',
  1243. fn: function (){
  1244. var self=this;
  1245. return smalltalk.send(self, "_basicAt_", ["selector"]);
  1246. return self;}
  1247. }),
  1248. smalltalk.CompiledMethod);
  1249. smalltalk.addMethod(
  1250. '_selector_',
  1251. smalltalk.method({
  1252. selector: 'selector:',
  1253. fn: function (aString){
  1254. var self=this;
  1255. smalltalk.send(self, "_basicAt_put_", ["selector", aString]);
  1256. return self;}
  1257. }),
  1258. smalltalk.CompiledMethod);
  1259. smalltalk.addMethod(
  1260. '_fn',
  1261. smalltalk.method({
  1262. selector: 'fn',
  1263. fn: function (){
  1264. var self=this;
  1265. return smalltalk.send(self, "_basicAt_", ["fn"]);
  1266. return self;}
  1267. }),
  1268. smalltalk.CompiledMethod);
  1269. smalltalk.addMethod(
  1270. '_fn_',
  1271. smalltalk.method({
  1272. selector: 'fn:',
  1273. fn: function (aBlock){
  1274. var self=this;
  1275. smalltalk.send(self, "_basicAt_put_", ["fn", aBlock]);
  1276. return self;}
  1277. }),
  1278. smalltalk.CompiledMethod);
  1279. smalltalk.addMethod(
  1280. '_messageSends',
  1281. smalltalk.method({
  1282. selector: 'messageSends',
  1283. fn: function (){
  1284. var self=this;
  1285. return smalltalk.send(self, "_basicAt_", ["messageSends"]);
  1286. return self;}
  1287. }),
  1288. smalltalk.CompiledMethod);
  1289. smalltalk.addMethod(
  1290. '_methodClass',
  1291. smalltalk.method({
  1292. selector: 'methodClass',
  1293. fn: function (){
  1294. var self=this;
  1295. return smalltalk.send(self, "_basicAt_", ["methodClass"]);
  1296. return self;}
  1297. }),
  1298. smalltalk.CompiledMethod);
  1299. smalltalk.addMethod(
  1300. '_referencedClasses',
  1301. smalltalk.method({
  1302. selector: 'referencedClasses',
  1303. fn: function (){
  1304. var self=this;
  1305. return smalltalk.send(self, "_basicAt_", ["referencedClasses"]);
  1306. return self;}
  1307. }),
  1308. smalltalk.CompiledMethod);
  1309. smalltalk.addMethod(
  1310. '_arguments',
  1311. smalltalk.method({
  1312. selector: 'arguments',
  1313. fn: function (){
  1314. var self=this;
  1315. return self.args || [];
  1316. return self;}
  1317. }),
  1318. smalltalk.CompiledMethod);
  1319. smalltalk.addClass('Number', smalltalk.Object, [], 'Kernel');
  1320. smalltalk.addMethod(
  1321. '__eq',
  1322. smalltalk.method({
  1323. selector: '=',
  1324. fn: function (aNumber){
  1325. var self=this;
  1326. try{((($receiver = smalltalk.send(smalltalk.send(aNumber, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})]));
  1327. return Number(self) == aNumber;
  1328. return self;
  1329. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  1330. }),
  1331. smalltalk.Number);
  1332. smalltalk.addMethod(
  1333. '__gt',
  1334. smalltalk.method({
  1335. selector: '>',
  1336. fn: function (aNumber){
  1337. var self=this;
  1338. return self > aNumber;
  1339. return self;}
  1340. }),
  1341. smalltalk.Number);
  1342. smalltalk.addMethod(
  1343. '__lt',
  1344. smalltalk.method({
  1345. selector: '<',
  1346. fn: function (aNumber){
  1347. var self=this;
  1348. return self < aNumber;
  1349. return self;}
  1350. }),
  1351. smalltalk.Number);
  1352. smalltalk.addMethod(
  1353. '__gt_eq',
  1354. smalltalk.method({
  1355. selector: '>=',
  1356. fn: function (aNumber){
  1357. var self=this;
  1358. return self >= aNumber;
  1359. return self;}
  1360. }),
  1361. smalltalk.Number);
  1362. smalltalk.addMethod(
  1363. '__lt_eq',
  1364. smalltalk.method({
  1365. selector: '<=',
  1366. fn: function (aNumber){
  1367. var self=this;
  1368. return self <= aNumber;
  1369. return self;}
  1370. }),
  1371. smalltalk.Number);
  1372. smalltalk.addMethod(
  1373. '__plus',
  1374. smalltalk.method({
  1375. selector: '+',
  1376. fn: function (aNumber){
  1377. var self=this;
  1378. return self + aNumber;
  1379. return self;}
  1380. }),
  1381. smalltalk.Number);
  1382. smalltalk.addMethod(
  1383. '__minus',
  1384. smalltalk.method({
  1385. selector: '-',
  1386. fn: function (aNumber){
  1387. var self=this;
  1388. return self - aNumber;
  1389. return self;}
  1390. }),
  1391. smalltalk.Number);
  1392. smalltalk.addMethod(
  1393. '__star',
  1394. smalltalk.method({
  1395. selector: '*',
  1396. fn: function (aNumber){
  1397. var self=this;
  1398. return self * aNumber;
  1399. return self;}
  1400. }),
  1401. smalltalk.Number);
  1402. smalltalk.addMethod(
  1403. '__slash',
  1404. smalltalk.method({
  1405. selector: '/',
  1406. fn: function (aNumber){
  1407. var self=this;
  1408. return self / aNumber;
  1409. return self;}
  1410. }),
  1411. smalltalk.Number);
  1412. smalltalk.addMethod(
  1413. '_max_',
  1414. smalltalk.method({
  1415. selector: 'max:',
  1416. fn: function (aNumber){
  1417. var self=this;
  1418. return Math.max(self, aNumber);;
  1419. return self;}
  1420. }),
  1421. smalltalk.Number);
  1422. smalltalk.addMethod(
  1423. '_min_',
  1424. smalltalk.method({
  1425. selector: 'min:',
  1426. fn: function (aNumber){
  1427. var self=this;
  1428. return Math.min(self, aNumber);;
  1429. return self;}
  1430. }),
  1431. smalltalk.Number);
  1432. smalltalk.addMethod(
  1433. '_rounded',
  1434. smalltalk.method({
  1435. selector: 'rounded',
  1436. fn: function (){
  1437. var self=this;
  1438. return Math.round(self);;
  1439. return self;}
  1440. }),
  1441. smalltalk.Number);
  1442. smalltalk.addMethod(
  1443. '_truncated',
  1444. smalltalk.method({
  1445. selector: 'truncated',
  1446. fn: function (){
  1447. var self=this;
  1448. var result=nil;
  1449. ((($receiver = self >= (0)).klass === smalltalk.Boolean) ? ($receiver ? (function(){return result = Math.floor(self);;})() : (function(){return result = (Math.floor(self * (-1)) * (-1));;})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return result = Math.floor(self);;}), (function(){return result = (Math.floor(self * (-1)) * (-1));;})]));
  1450. return result;
  1451. return self;}
  1452. }),
  1453. smalltalk.Number);
  1454. smalltalk.addMethod(
  1455. '_to_',
  1456. smalltalk.method({
  1457. selector: 'to:',
  1458. fn: function (aNumber){
  1459. var self=this;
  1460. var array=nil;
  1461. var first=nil;
  1462. var last=nil;
  1463. var count=nil;
  1464. first=smalltalk.send(self, "_truncated", []);
  1465. last=((($receiver = smalltalk.send(aNumber, "_truncated", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));
  1466. count=(1);
  1467. ((($receiver = ((($receiver = first).klass === smalltalk.Number) ? $receiver <=last : smalltalk.send($receiver, "__lt_eq", [last]))).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(self, "_error_", ["Wrong interval"]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(self, "_error_", ["Wrong interval"]);})]));
  1468. array=smalltalk.send((smalltalk.Array || Array), "_new", []);
  1469. smalltalk.send(((($receiver = last).klass === smalltalk.Number) ? $receiver -first : smalltalk.send($receiver, "__minus", [first])), "_timesRepeat_", [(function(){smalltalk.send(array, "_at_put_", [count, first]);count=((($receiver = count).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));return first=((($receiver = first).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));})]);
  1470. return array;
  1471. return self;}
  1472. }),
  1473. smalltalk.Number);
  1474. smalltalk.addMethod(
  1475. '_timesRepeat_',
  1476. smalltalk.method({
  1477. selector: 'timesRepeat:',
  1478. fn: function (aBlock){
  1479. var self=this;
  1480. var integer=nil;
  1481. var count=nil;
  1482. integer=smalltalk.send(self, "_truncated", []);
  1483. count=(1);
  1484. (function(){while(!(function(){return ((($receiver = count).klass === smalltalk.Number) ? $receiver >self : smalltalk.send($receiver, "__gt", [self]));})()) {(function(){smalltalk.send(aBlock, "_value", []);return count=((($receiver = count).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));})()}})();
  1485. return self;}
  1486. }),
  1487. smalltalk.Number);
  1488. smalltalk.addMethod(
  1489. '_to_do_',
  1490. smalltalk.method({
  1491. selector: 'to:do:',
  1492. fn: function (aNumber, aBlock){
  1493. var self=this;
  1494. return smalltalk.send(smalltalk.send(self, "_to_", [aNumber]), "_do_", [aBlock]);
  1495. return self;}
  1496. }),
  1497. smalltalk.Number);
  1498. smalltalk.addMethod(
  1499. '_asString',
  1500. smalltalk.method({
  1501. selector: 'asString',
  1502. fn: function (){
  1503. var self=this;
  1504. return smalltalk.send(self, "_printString", []);
  1505. return self;}
  1506. }),
  1507. smalltalk.Number);
  1508. smalltalk.addMethod(
  1509. '_asJavascript',
  1510. smalltalk.method({
  1511. selector: 'asJavascript',
  1512. fn: function (){
  1513. var self=this;
  1514. return smalltalk.send(smalltalk.send(unescape("%28"), "__comma", [smalltalk.send(self, "_printString", [])]), "__comma", [unescape("%29")]);
  1515. return self;}
  1516. }),
  1517. smalltalk.Number);
  1518. smalltalk.addMethod(
  1519. '_printString',
  1520. smalltalk.method({
  1521. selector: 'printString',
  1522. fn: function (){
  1523. var self=this;
  1524. return String(self);
  1525. return self;}
  1526. }),
  1527. smalltalk.Number);
  1528. smalltalk.addMethod(
  1529. '_isNumber',
  1530. smalltalk.method({
  1531. selector: 'isNumber',
  1532. fn: function (){
  1533. var self=this;
  1534. return true;
  1535. return self;}
  1536. }),
  1537. smalltalk.Number);
  1538. smalltalk.addMethod(
  1539. '_atRandom',
  1540. smalltalk.method({
  1541. selector: 'atRandom',
  1542. fn: function (){
  1543. var self=this;
  1544. return ((($receiver = smalltalk.send(((($receiver = smalltalk.send(smalltalk.send((smalltalk.Random || Random), "_new", []), "_next", [])).klass === smalltalk.Number) ? $receiver *self : smalltalk.send($receiver, "__star", [self])), "_truncated", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));
  1545. return self;}
  1546. }),
  1547. smalltalk.Number);
  1548. smalltalk.addMethod(
  1549. '__at',
  1550. smalltalk.method({
  1551. selector: '@',
  1552. fn: function (aNumber){
  1553. var self=this;
  1554. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [self, aNumber]);
  1555. return self;}
  1556. }),
  1557. smalltalk.Number);
  1558. smalltalk.addMethod(
  1559. '_asPoint',
  1560. smalltalk.method({
  1561. selector: 'asPoint',
  1562. fn: function (){
  1563. var self=this;
  1564. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [self, self]);
  1565. return self;}
  1566. }),
  1567. smalltalk.Number);
  1568. smalltalk.addMethod(
  1569. '_clearInterval',
  1570. smalltalk.method({
  1571. selector: 'clearInterval',
  1572. fn: function (){
  1573. var self=this;
  1574. clearInterval(Number(self));
  1575. return self;}
  1576. }),
  1577. smalltalk.Number);
  1578. smalltalk.addMethod(
  1579. '_asJSONObject',
  1580. smalltalk.method({
  1581. selector: 'asJSONObject',
  1582. fn: function (){
  1583. var self=this;
  1584. return self;
  1585. return self;}
  1586. }),
  1587. smalltalk.Number);
  1588. smalltalk.addMethod(
  1589. '_clearTimeout',
  1590. smalltalk.method({
  1591. selector: 'clearTimeout',
  1592. fn: function (){
  1593. var self=this;
  1594. clearTimeout(Number(self));
  1595. return self;}
  1596. }),
  1597. smalltalk.Number);
  1598. smalltalk.addMethod(
  1599. '_even',
  1600. smalltalk.method({
  1601. selector: 'even',
  1602. fn: function (){
  1603. var self=this;
  1604. return smalltalk.send((0), "__eq", [smalltalk.send(self, "_\\\\", [(2)])]);
  1605. return self;}
  1606. }),
  1607. smalltalk.Number);
  1608. smalltalk.addMethod(
  1609. '_odd',
  1610. smalltalk.method({
  1611. selector: 'odd',
  1612. fn: function (){
  1613. var self=this;
  1614. return smalltalk.send(smalltalk.send(self, "_even", []), "_not", []);
  1615. return self;}
  1616. }),
  1617. smalltalk.Number);
  1618. smalltalk.addMethod(
  1619. '_negated',
  1620. smalltalk.method({
  1621. selector: 'negated',
  1622. fn: function (){
  1623. var self=this;
  1624. return (0) - self;
  1625. return self;}
  1626. }),
  1627. smalltalk.Number);
  1628. smalltalk.addMethod(
  1629. '__eq_eq',
  1630. smalltalk.method({
  1631. selector: '==',
  1632. fn: function (aNumber){
  1633. var self=this;
  1634. try{((($receiver = smalltalk.send(smalltalk.send(aNumber, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq_eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq_eq', fn: function(){return false}})})();})]));
  1635. return Number(self) === Number(aNumber);
  1636. return self;
  1637. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq_eq'){return e.fn()} throw(e)}}
  1638. }),
  1639. smalltalk.Number);
  1640. smalltalk.addMethod(
  1641. '_printShowingDecimalPlaces_',
  1642. smalltalk.method({
  1643. selector: 'printShowingDecimalPlaces:',
  1644. fn: function (placesDesired){
  1645. var self=this;
  1646. return self.toFixed(placesDesired);
  1647. return self;}
  1648. }),
  1649. smalltalk.Number);
  1650. smalltalk.addMethod(
  1651. '_\\',
  1652. smalltalk.method({
  1653. selector: '\\',
  1654. fn: function (aNumber){
  1655. var self=this;
  1656. return self % aNumber;
  1657. return self;}
  1658. }),
  1659. smalltalk.Number);
  1660. smalltalk.addMethod(
  1661. '_pi',
  1662. smalltalk.method({
  1663. selector: 'pi',
  1664. fn: function (){
  1665. var self=this;
  1666. return Math.PI;
  1667. return self;}
  1668. }),
  1669. smalltalk.Number.klass);
  1670. smalltalk.addClass('BlockClosure', smalltalk.Object, [], 'Kernel');
  1671. smalltalk.addMethod(
  1672. '_compiledSource',
  1673. smalltalk.method({
  1674. selector: 'compiledSource',
  1675. fn: function (){
  1676. var self=this;
  1677. return self.toString();
  1678. return self;}
  1679. }),
  1680. smalltalk.BlockClosure);
  1681. smalltalk.addMethod(
  1682. '_whileTrue_',
  1683. smalltalk.method({
  1684. selector: 'whileTrue:',
  1685. fn: function (aBlock){
  1686. var self=this;
  1687. while(self()) {aBlock()};
  1688. return self;}
  1689. }),
  1690. smalltalk.BlockClosure);
  1691. smalltalk.addMethod(
  1692. '_whileFalse_',
  1693. smalltalk.method({
  1694. selector: 'whileFalse:',
  1695. fn: function (aBlock){
  1696. var self=this;
  1697. while(!self()) {aBlock()};
  1698. return self;}
  1699. }),
  1700. smalltalk.BlockClosure);
  1701. smalltalk.addMethod(
  1702. '_value',
  1703. smalltalk.method({
  1704. selector: 'value',
  1705. fn: function (){
  1706. var self=this;
  1707. return self();;
  1708. return self;}
  1709. }),
  1710. smalltalk.BlockClosure);
  1711. smalltalk.addMethod(
  1712. '_value_',
  1713. smalltalk.method({
  1714. selector: 'value:',
  1715. fn: function (anArg){
  1716. var self=this;
  1717. return self(anArg);;
  1718. return self;}
  1719. }),
  1720. smalltalk.BlockClosure);
  1721. smalltalk.addMethod(
  1722. '_value_value_',
  1723. smalltalk.method({
  1724. selector: 'value:value:',
  1725. fn: function (firstArg, secondArg){
  1726. var self=this;
  1727. return self(firstArg, secondArg);;
  1728. return self;}
  1729. }),
  1730. smalltalk.BlockClosure);
  1731. smalltalk.addMethod(
  1732. '_value_value_value_',
  1733. smalltalk.method({
  1734. selector: 'value:value:value:',
  1735. fn: function (firstArg, secondArg, thirdArg){
  1736. var self=this;
  1737. return self(firstArg, secondArg, thirdArg);;
  1738. return self;}
  1739. }),
  1740. smalltalk.BlockClosure);
  1741. smalltalk.addMethod(
  1742. '_valueWithPossibleArguments_',
  1743. smalltalk.method({
  1744. selector: 'valueWithPossibleArguments:',
  1745. fn: function (aCollection){
  1746. var self=this;
  1747. return self.apply(null, aCollection);;
  1748. return self;}
  1749. }),
  1750. smalltalk.BlockClosure);
  1751. smalltalk.addMethod(
  1752. '_on_do_',
  1753. smalltalk.method({
  1754. selector: 'on:do:',
  1755. fn: function (anErrorClass, aBlock){
  1756. var self=this;
  1757. smalltalk.send(self, "_try_catch_", [self, (function(error){return ((($receiver = smalltalk.send(error, "_isKindOf_", [anErrorClass])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(aBlock, "_value_", [error]);})() : (function(){return smalltalk.send(error, "_signal", []);})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return smalltalk.send(aBlock, "_value_", [error]);}), (function(){return smalltalk.send(error, "_signal", []);})]));})]);
  1758. return self;}
  1759. }),
  1760. smalltalk.BlockClosure);
  1761. smalltalk.addMethod(
  1762. '_valueWithTimeout_',
  1763. smalltalk.method({
  1764. selector: 'valueWithTimeout:',
  1765. fn: function (aNumber){
  1766. var self=this;
  1767. return setTimeout(self, aNumber);
  1768. return self;}
  1769. }),
  1770. smalltalk.BlockClosure);
  1771. smalltalk.addMethod(
  1772. '_valueWithInterval_',
  1773. smalltalk.method({
  1774. selector: 'valueWithInterval:',
  1775. fn: function (aNumber){
  1776. var self=this;
  1777. return setInterval(self, aNumber);
  1778. return self;}
  1779. }),
  1780. smalltalk.BlockClosure);
  1781. smalltalk.addMethod(
  1782. '_whileFalse',
  1783. smalltalk.method({
  1784. selector: 'whileFalse',
  1785. fn: function (){
  1786. var self=this;
  1787. smalltalk.send(self, "_whileFalse_", [(function(){return nil;})]);
  1788. return self;}
  1789. }),
  1790. smalltalk.BlockClosure);
  1791. smalltalk.addMethod(
  1792. '_whileTrue',
  1793. smalltalk.method({
  1794. selector: 'whileTrue',
  1795. fn: function (){
  1796. var self=this;
  1797. smalltalk.send(self, "_whileTrue_", [(function(){return nil;})]);
  1798. return self;}
  1799. }),
  1800. smalltalk.BlockClosure);
  1801. smalltalk.addMethod(
  1802. '_new',
  1803. smalltalk.method({
  1804. selector: 'new',
  1805. fn: function (){
  1806. var self=this;
  1807. return new self();
  1808. return self;}
  1809. }),
  1810. smalltalk.BlockClosure);
  1811. smalltalk.addMethod(
  1812. '_applyTo_arguments_',
  1813. smalltalk.method({
  1814. selector: 'applyTo:arguments:',
  1815. fn: function (anObject, aCollection){
  1816. var self=this;
  1817. return self.apply(anObject, aCollection);
  1818. return self;}
  1819. }),
  1820. smalltalk.BlockClosure);
  1821. smalltalk.addMethod(
  1822. '_timeToRun',
  1823. smalltalk.method({
  1824. selector: 'timeToRun',
  1825. fn: function (){
  1826. var self=this;
  1827. return smalltalk.send((smalltalk.Date || Date), "_millisecondsToRun_", [self]);
  1828. return self;}
  1829. }),
  1830. smalltalk.BlockClosure);
  1831. smalltalk.addClass('Boolean', smalltalk.Object, [], 'Kernel');
  1832. smalltalk.addMethod(
  1833. '__eq',
  1834. smalltalk.method({
  1835. selector: '=',
  1836. fn: function (aBoolean){
  1837. var self=this;
  1838. try{((($receiver = smalltalk.send(smalltalk.send(aBoolean, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})]));
  1839. return Boolean(self == true) == aBoolean;
  1840. return self;
  1841. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  1842. }),
  1843. smalltalk.Boolean);
  1844. smalltalk.addMethod(
  1845. '_shallowCopy',
  1846. smalltalk.method({
  1847. selector: 'shallowCopy',
  1848. fn: function (){
  1849. var self=this;
  1850. return self;
  1851. return self;}
  1852. }),
  1853. smalltalk.Boolean);
  1854. smalltalk.addMethod(
  1855. '_deepCopy',
  1856. smalltalk.method({
  1857. selector: 'deepCopy',
  1858. fn: function (){
  1859. var self=this;
  1860. return self;
  1861. return self;}
  1862. }),
  1863. smalltalk.Boolean);
  1864. smalltalk.addMethod(
  1865. '_ifTrue_',
  1866. smalltalk.method({
  1867. selector: 'ifTrue:',
  1868. fn: function (aBlock){
  1869. var self=this;
  1870. return smalltalk.send(self, "_ifTrue_ifFalse_", [aBlock, (function(){return nil;})]);
  1871. return self;}
  1872. }),
  1873. smalltalk.Boolean);
  1874. smalltalk.addMethod(
  1875. '_ifFalse_',
  1876. smalltalk.method({
  1877. selector: 'ifFalse:',
  1878. fn: function (aBlock){
  1879. var self=this;
  1880. return smalltalk.send(self, "_ifTrue_ifFalse_", [(function(){return nil;}), aBlock]);
  1881. return self;}
  1882. }),
  1883. smalltalk.Boolean);
  1884. smalltalk.addMethod(
  1885. '_ifFalse_ifTrue_',
  1886. smalltalk.method({
  1887. selector: 'ifFalse:ifTrue:',
  1888. fn: function (aBlock, anotherBlock){
  1889. var self=this;
  1890. return smalltalk.send(self, "_ifTrue_ifFalse_", [anotherBlock, aBlock]);
  1891. return self;}
  1892. }),
  1893. smalltalk.Boolean);
  1894. smalltalk.addMethod(
  1895. '_ifTrue_ifFalse_',
  1896. smalltalk.method({
  1897. selector: 'ifTrue:ifFalse:',
  1898. fn: function (aBlock, anotherBlock){
  1899. var self=this;
  1900. if(self == true) {
  1901. return aBlock();
  1902. } else {
  1903. return anotherBlock();
  1904. }
  1905. ;
  1906. return self;}
  1907. }),
  1908. smalltalk.Boolean);
  1909. smalltalk.addMethod(
  1910. '_and_',
  1911. smalltalk.method({
  1912. selector: 'and:',
  1913. fn: function (aBlock){
  1914. var self=this;
  1915. return smalltalk.send(smalltalk.send(self, "__eq", [true]), "_ifTrue_ifFalse_", [aBlock, (function(){return false;})]);
  1916. return self;}
  1917. }),
  1918. smalltalk.Boolean);
  1919. smalltalk.addMethod(
  1920. '_or_',
  1921. smalltalk.method({
  1922. selector: 'or:',
  1923. fn: function (aBlock){
  1924. var self=this;
  1925. return smalltalk.send(smalltalk.send(self, "__eq", [true]), "_ifTrue_ifFalse_", [(function(){return true;}), aBlock]);
  1926. return self;}
  1927. }),
  1928. smalltalk.Boolean);
  1929. smalltalk.addMethod(
  1930. '_not',
  1931. smalltalk.method({
  1932. selector: 'not',
  1933. fn: function (){
  1934. var self=this;
  1935. return smalltalk.send(self, "__eq", [false]);
  1936. return self;}
  1937. }),
  1938. smalltalk.Boolean);
  1939. smalltalk.addMethod(
  1940. '_printString',
  1941. smalltalk.method({
  1942. selector: 'printString',
  1943. fn: function (){
  1944. var self=this;
  1945. return self.toString();
  1946. return self;}
  1947. }),
  1948. smalltalk.Boolean);
  1949. smalltalk.addMethod(
  1950. '_asJSONObject',
  1951. smalltalk.method({
  1952. selector: 'asJSONObject',
  1953. fn: function (){
  1954. var self=this;
  1955. return self;
  1956. return self;}
  1957. }),
  1958. smalltalk.Boolean);
  1959. smalltalk.addMethod(
  1960. '_&',
  1961. smalltalk.method({
  1962. selector: '&',
  1963. fn: function (aBoolean){
  1964. var self=this;
  1965. if(self == true) {
  1966. return aBoolean;
  1967. } else {
  1968. return false;
  1969. }
  1970. ;
  1971. return self;}
  1972. }),
  1973. smalltalk.Boolean);
  1974. smalltalk.addMethod(
  1975. '_|',
  1976. smalltalk.method({
  1977. selector: '|',
  1978. fn: function (aBoolean){
  1979. var self=this;
  1980. if(self == true) {
  1981. return true;
  1982. } else {
  1983. return aBoolean;
  1984. }
  1985. ;
  1986. return self;}
  1987. }),
  1988. smalltalk.Boolean);
  1989. smalltalk.addMethod(
  1990. '__eq_eq',
  1991. smalltalk.method({
  1992. selector: '==',
  1993. fn: function (aBoolean){
  1994. var self=this;
  1995. try{((($receiver = smalltalk.send(smalltalk.send(aBoolean, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq_eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq_eq', fn: function(){return false}})})();})]));
  1996. return Boolean(self == true) === Boolean(aBoolean == true);
  1997. return self;
  1998. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq_eq'){return e.fn()} throw(e)}}
  1999. }),
  2000. smalltalk.Boolean);
  2001. smalltalk.addClass('Date', smalltalk.Object, [], 'Kernel');
  2002. smalltalk.addMethod(
  2003. '_year',
  2004. smalltalk.method({
  2005. selector: 'year',
  2006. fn: function (){
  2007. var self=this;
  2008. return self.getFullYear();
  2009. return self;}
  2010. }),
  2011. smalltalk.Date);
  2012. smalltalk.addMethod(
  2013. '_month',
  2014. smalltalk.method({
  2015. selector: 'month',
  2016. fn: function (){
  2017. var self=this;
  2018. return self.getMonth() + 1;
  2019. return self;}
  2020. }),
  2021. smalltalk.Date);
  2022. smalltalk.addMethod(
  2023. '_month_',
  2024. smalltalk.method({
  2025. selector: 'month:',
  2026. fn: function (aNumber){
  2027. var self=this;
  2028. self.setMonth(aNumber - 1);
  2029. return self;}
  2030. }),
  2031. smalltalk.Date);
  2032. smalltalk.addMethod(
  2033. '_day',
  2034. smalltalk.method({
  2035. selector: 'day',
  2036. fn: function (){
  2037. var self=this;
  2038. return smalltalk.send(self, "_dayOfWeek", []);
  2039. return self;}
  2040. }),
  2041. smalltalk.Date);
  2042. smalltalk.addMethod(
  2043. '_dayOfWeek',
  2044. smalltalk.method({
  2045. selector: 'dayOfWeek',
  2046. fn: function (){
  2047. var self=this;
  2048. return self.getDay() + 1;
  2049. return self;}
  2050. }),
  2051. smalltalk.Date);
  2052. smalltalk.addMethod(
  2053. '_dayOfWeek_',
  2054. smalltalk.method({
  2055. selector: 'dayOfWeek:',
  2056. fn: function (aNumber){
  2057. var self=this;
  2058. return self.setDay(aNumber - 1);
  2059. return self;}
  2060. }),
  2061. smalltalk.Date);
  2062. smalltalk.addMethod(
  2063. '_day_',
  2064. smalltalk.method({
  2065. selector: 'day:',
  2066. fn: function (aNumber){
  2067. var self=this;
  2068. smalltalk.send(self, "_day_", [aNumber]);
  2069. return self;}
  2070. }),
  2071. smalltalk.Date);
  2072. smalltalk.addMethod(
  2073. '_year_',
  2074. smalltalk.method({
  2075. selector: 'year:',
  2076. fn: function (aNumber){
  2077. var self=this;
  2078. self.setFullYear(aNumber);
  2079. return self;}
  2080. }),
  2081. smalltalk.Date);
  2082. smalltalk.addMethod(
  2083. '_dayOfMonth',
  2084. smalltalk.method({
  2085. selector: 'dayOfMonth',
  2086. fn: function (){
  2087. var self=this;
  2088. return self.getDate();
  2089. return self;}
  2090. }),
  2091. smalltalk.Date);
  2092. smalltalk.addMethod(
  2093. '_dayOfMonth_',
  2094. smalltalk.method({
  2095. selector: 'dayOfMonth:',
  2096. fn: function (aNumber){
  2097. var self=this;
  2098. self.setDate(aNumber);
  2099. return self;}
  2100. }),
  2101. smalltalk.Date);
  2102. smalltalk.addMethod(
  2103. '_asString',
  2104. smalltalk.method({
  2105. selector: 'asString',
  2106. fn: function (){
  2107. var self=this;
  2108. return self.toString();
  2109. return self;}
  2110. }),
  2111. smalltalk.Date);
  2112. smalltalk.addMethod(
  2113. '_printString',
  2114. smalltalk.method({
  2115. selector: 'printString',
  2116. fn: function (){
  2117. var self=this;
  2118. return smalltalk.send(self, "_asString", []);
  2119. return self;}
  2120. }),
  2121. smalltalk.Date);
  2122. smalltalk.addMethod(
  2123. '_asMilliseconds',
  2124. smalltalk.method({
  2125. selector: 'asMilliseconds',
  2126. fn: function (){
  2127. var self=this;
  2128. return smalltalk.send(self, "_time", []);
  2129. return self;}
  2130. }),
  2131. smalltalk.Date);
  2132. smalltalk.addMethod(
  2133. '_time',
  2134. smalltalk.method({
  2135. selector: 'time',
  2136. fn: function (){
  2137. var self=this;
  2138. return self.getTime();
  2139. return self;}
  2140. }),
  2141. smalltalk.Date);
  2142. smalltalk.addMethod(
  2143. '_time_',
  2144. smalltalk.method({
  2145. selector: 'time:',
  2146. fn: function (aNumber){
  2147. var self=this;
  2148. self.setTime(aNumber);
  2149. return self;}
  2150. }),
  2151. smalltalk.Date);
  2152. smalltalk.addMethod(
  2153. '_asDateString',
  2154. smalltalk.method({
  2155. selector: 'asDateString',
  2156. fn: function (){
  2157. var self=this;
  2158. return self.toDateString();
  2159. return self;}
  2160. }),
  2161. smalltalk.Date);
  2162. smalltalk.addMethod(
  2163. '_asTimeString',
  2164. smalltalk.method({
  2165. selector: 'asTimeString',
  2166. fn: function (){
  2167. var self=this;
  2168. return self.toTimeString();
  2169. return self;}
  2170. }),
  2171. smalltalk.Date);
  2172. smalltalk.addMethod(
  2173. '_asLocaleString',
  2174. smalltalk.method({
  2175. selector: 'asLocaleString',
  2176. fn: function (){
  2177. var self=this;
  2178. return self.toLocaleString();
  2179. return self;}
  2180. }),
  2181. smalltalk.Date);
  2182. smalltalk.addMethod(
  2183. '_asNumber',
  2184. smalltalk.method({
  2185. selector: 'asNumber',
  2186. fn: function (){
  2187. var self=this;
  2188. return smalltalk.send(self, "_asMilliseconds", []);
  2189. return self;}
  2190. }),
  2191. smalltalk.Date);
  2192. smalltalk.addMethod(
  2193. '_hours_',
  2194. smalltalk.method({
  2195. selector: 'hours:',
  2196. fn: function (aNumber){
  2197. var self=this;
  2198. self.setHours(aNumber);
  2199. return self;}
  2200. }),
  2201. smalltalk.Date);
  2202. smalltalk.addMethod(
  2203. '_minutes_',
  2204. smalltalk.method({
  2205. selector: 'minutes:',
  2206. fn: function (aNumber){
  2207. var self=this;
  2208. self.setMinutes(aNumber);
  2209. return self;}
  2210. }),
  2211. smalltalk.Date);
  2212. smalltalk.addMethod(
  2213. '_seconds_',
  2214. smalltalk.method({
  2215. selector: 'seconds:',
  2216. fn: function (aNumber){
  2217. var self=this;
  2218. self.setSeconds(aNumber);
  2219. return self;}
  2220. }),
  2221. smalltalk.Date);
  2222. smalltalk.addMethod(
  2223. '_milliseconds_',
  2224. smalltalk.method({
  2225. selector: 'milliseconds:',
  2226. fn: function (aNumber){
  2227. var self=this;
  2228. self.setMilliseconds(aNumber);
  2229. return self;}
  2230. }),
  2231. smalltalk.Date);
  2232. smalltalk.addMethod(
  2233. '_hours',
  2234. smalltalk.method({
  2235. selector: 'hours',
  2236. fn: function (){
  2237. var self=this;
  2238. return self.getHours();
  2239. return self;}
  2240. }),
  2241. smalltalk.Date);
  2242. smalltalk.addMethod(
  2243. '_minutes',
  2244. smalltalk.method({
  2245. selector: 'minutes',
  2246. fn: function (){
  2247. var self=this;
  2248. return self.getMinutes();
  2249. return self;}
  2250. }),
  2251. smalltalk.Date);
  2252. smalltalk.addMethod(
  2253. '_seconds',
  2254. smalltalk.method({
  2255. selector: 'seconds',
  2256. fn: function (){
  2257. var self=this;
  2258. return self.getSeconds();
  2259. return self;}
  2260. }),
  2261. smalltalk.Date);
  2262. smalltalk.addMethod(
  2263. '_milliseconds',
  2264. smalltalk.method({
  2265. selector: 'milliseconds',
  2266. fn: function (){
  2267. var self=this;
  2268. return self.getMilliseconds();
  2269. return self;}
  2270. }),
  2271. smalltalk.Date);
  2272. smalltalk.addMethod(
  2273. '__lt',
  2274. smalltalk.method({
  2275. selector: '<',
  2276. fn: function (aDate){
  2277. var self=this;
  2278. return self < aDate;
  2279. return self;}
  2280. }),
  2281. smalltalk.Date);
  2282. smalltalk.addMethod(
  2283. '__gt',
  2284. smalltalk.method({
  2285. selector: '>',
  2286. fn: function (aDate){
  2287. var self=this;
  2288. return self > aDate;
  2289. return self;}
  2290. }),
  2291. smalltalk.Date);
  2292. smalltalk.addMethod(
  2293. '__lt_eq',
  2294. smalltalk.method({
  2295. selector: '<=',
  2296. fn: function (aDate){
  2297. var self=this;
  2298. return self <= aDate;
  2299. return self;}
  2300. }),
  2301. smalltalk.Date);
  2302. smalltalk.addMethod(
  2303. '__gt_eq',
  2304. smalltalk.method({
  2305. selector: '>=',
  2306. fn: function (aDate){
  2307. var self=this;
  2308. return self >= aDate;
  2309. return self;}
  2310. }),
  2311. smalltalk.Date);
  2312. smalltalk.addMethod(
  2313. '__minus',
  2314. smalltalk.method({
  2315. selector: '-',
  2316. fn: function (aDate){
  2317. var self=this;
  2318. return self - aDate;
  2319. return self;}
  2320. }),
  2321. smalltalk.Date);
  2322. smalltalk.addMethod(
  2323. '__plus',
  2324. smalltalk.method({
  2325. selector: '+',
  2326. fn: function (aDate){
  2327. var self=this;
  2328. return self + aDate;
  2329. return self;}
  2330. }),
  2331. smalltalk.Date);
  2332. smalltalk.addMethod(
  2333. '_asJSONObject',
  2334. smalltalk.method({
  2335. selector: 'asJSONObject',
  2336. fn: function (){
  2337. var self=this;
  2338. return self;
  2339. return self;}
  2340. }),
  2341. smalltalk.Date);
  2342. smalltalk.addMethod(
  2343. '_new_',
  2344. smalltalk.method({
  2345. selector: 'new:',
  2346. fn: function (anObject){
  2347. var self=this;
  2348. return new Date(anObject);
  2349. return self;}
  2350. }),
  2351. smalltalk.Date.klass);
  2352. smalltalk.addMethod(
  2353. '_fromString_',
  2354. smalltalk.method({
  2355. selector: 'fromString:',
  2356. fn: function (aString){
  2357. var self=this;
  2358. return smalltalk.send(self, "_new_", [aString]);
  2359. return self;}
  2360. }),
  2361. smalltalk.Date.klass);
  2362. smalltalk.addMethod(
  2363. '_fromSeconds_',
  2364. smalltalk.method({
  2365. selector: 'fromSeconds:',
  2366. fn: function (aNumber){
  2367. var self=this;
  2368. return smalltalk.send(self, "_fromMilliseconds_", [((($receiver = aNumber).klass === smalltalk.Number) ? $receiver *(1000) : smalltalk.send($receiver, "__star", [(1000)]))]);
  2369. return self;}
  2370. }),
  2371. smalltalk.Date.klass);
  2372. smalltalk.addMethod(
  2373. '_fromMilliseconds_',
  2374. smalltalk.method({
  2375. selector: 'fromMilliseconds:',
  2376. fn: function (aNumber){
  2377. var self=this;
  2378. return smalltalk.send(self, "_new_", [aNumber]);
  2379. return self;}
  2380. }),
  2381. smalltalk.Date.klass);
  2382. smalltalk.addMethod(
  2383. '_today',
  2384. smalltalk.method({
  2385. selector: 'today',
  2386. fn: function (){
  2387. var self=this;
  2388. return smalltalk.send(self, "_new", []);
  2389. return self;}
  2390. }),
  2391. smalltalk.Date.klass);
  2392. smalltalk.addMethod(
  2393. '_now',
  2394. smalltalk.method({
  2395. selector: 'now',
  2396. fn: function (){
  2397. var self=this;
  2398. return smalltalk.send(self, "_today", []);
  2399. return self;}
  2400. }),
  2401. smalltalk.Date.klass);
  2402. smalltalk.addMethod(
  2403. '_millisecondsToRun_',
  2404. smalltalk.method({
  2405. selector: 'millisecondsToRun:',
  2406. fn: function (aBlock){
  2407. var self=this;
  2408. var t=nil;
  2409. t=smalltalk.send((smalltalk.Date || Date), "_now", []);
  2410. smalltalk.send(aBlock, "_value", []);
  2411. return ((($receiver = smalltalk.send((smalltalk.Date || Date), "_now", [])).klass === smalltalk.Number) ? $receiver -t : smalltalk.send($receiver, "__minus", [t]));
  2412. return self;}
  2413. }),
  2414. smalltalk.Date.klass);
  2415. smalltalk.addClass('UndefinedObject', smalltalk.Object, [], 'Kernel');
  2416. smalltalk.addMethod(
  2417. '_subclass_instanceVariableNames_',
  2418. smalltalk.method({
  2419. selector: 'subclass:instanceVariableNames:',
  2420. fn: function (aString, anotherString){
  2421. var self=this;
  2422. return smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, anotherString, nil]);
  2423. return self;}
  2424. }),
  2425. smalltalk.UndefinedObject);
  2426. smalltalk.addMethod(
  2427. '_subclass_instanceVariableNames_category_',
  2428. smalltalk.method({
  2429. selector: 'subclass:instanceVariableNames:category:',
  2430. fn: function (aString, aString2, aString3){
  2431. var self=this;
  2432. return smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, aString2, aString3]);
  2433. return self;}
  2434. }),
  2435. smalltalk.UndefinedObject);
  2436. smalltalk.addMethod(
  2437. '_shallowCopy',
  2438. smalltalk.method({
  2439. selector: 'shallowCopy',
  2440. fn: function (){
  2441. var self=this;
  2442. return self;
  2443. return self;}
  2444. }),
  2445. smalltalk.UndefinedObject);
  2446. smalltalk.addMethod(
  2447. '_deepCopy',
  2448. smalltalk.method({
  2449. selector: 'deepCopy',
  2450. fn: function (){
  2451. var self=this;
  2452. return self;
  2453. return self;}
  2454. }),
  2455. smalltalk.UndefinedObject);
  2456. smalltalk.addMethod(
  2457. '_ifNil_',
  2458. smalltalk.method({
  2459. selector: 'ifNil:',
  2460. fn: function (aBlock){
  2461. var self=this;
  2462. return smalltalk.send(self, "_ifNil_ifNotNil_", [aBlock, (function(){return nil;})]);
  2463. return self;}
  2464. }),
  2465. smalltalk.UndefinedObject);
  2466. smalltalk.addMethod(
  2467. '_ifNotNil_',
  2468. smalltalk.method({
  2469. selector: 'ifNotNil:',
  2470. fn: function (aBlock){
  2471. var self=this;
  2472. return self;
  2473. return self;}
  2474. }),
  2475. smalltalk.UndefinedObject);
  2476. smalltalk.addMethod(
  2477. '_ifNil_ifNotNil_',
  2478. smalltalk.method({
  2479. selector: 'ifNil:ifNotNil:',
  2480. fn: function (aBlock, anotherBlock){
  2481. var self=this;
  2482. return smalltalk.send(aBlock, "_value", []);
  2483. return self;}
  2484. }),
  2485. smalltalk.UndefinedObject);
  2486. smalltalk.addMethod(
  2487. '_ifNotNil_ifNil_',
  2488. smalltalk.method({
  2489. selector: 'ifNotNil:ifNil:',
  2490. fn: function (aBlock, anotherBlock){
  2491. var self=this;
  2492. return smalltalk.send(anotherBlock, "_value", []);
  2493. return self;}
  2494. }),
  2495. smalltalk.UndefinedObject);
  2496. smalltalk.addMethod(
  2497. '_isNil',
  2498. smalltalk.method({
  2499. selector: 'isNil',
  2500. fn: function (){
  2501. var self=this;
  2502. return true;
  2503. return self;}
  2504. }),
  2505. smalltalk.UndefinedObject);
  2506. smalltalk.addMethod(
  2507. '_notNil',
  2508. smalltalk.method({
  2509. selector: 'notNil',
  2510. fn: function (){
  2511. var self=this;
  2512. return false;
  2513. return self;}
  2514. }),
  2515. smalltalk.UndefinedObject);
  2516. smalltalk.addMethod(
  2517. '_printString',
  2518. smalltalk.method({
  2519. selector: 'printString',
  2520. fn: function (){
  2521. var self=this;
  2522. return "nil";
  2523. return self;}
  2524. }),
  2525. smalltalk.UndefinedObject);
  2526. smalltalk.addMethod(
  2527. '_subclass_instanceVariableNames_package_',
  2528. smalltalk.method({
  2529. selector: 'subclass:instanceVariableNames:package:',
  2530. fn: function (aString, aString2, aString3){
  2531. var self=this;
  2532. return smalltalk.send(smalltalk.send((smalltalk.ClassBuilder || ClassBuilder), "_new", []), "_superclass_subclass_instanceVariableNames_package_", [self, aString, aString2, aString3]);
  2533. return self;}
  2534. }),
  2535. smalltalk.UndefinedObject);
  2536. smalltalk.addMethod(
  2537. '_new',
  2538. smalltalk.method({
  2539. selector: 'new',
  2540. fn: function (){
  2541. var self=this;
  2542. smalltalk.send(self, "_error_", ["You cannot create new instances of UndefinedObject. Use nil"]);
  2543. return self;}
  2544. }),
  2545. smalltalk.UndefinedObject.klass);
  2546. smalltalk.addClass('Collection', smalltalk.Object, [], 'Kernel');
  2547. smalltalk.addMethod(
  2548. '_size',
  2549. smalltalk.method({
  2550. selector: 'size',
  2551. fn: function (){
  2552. var self=this;
  2553. smalltalk.send(self, "_subclassResponsibility", []);
  2554. return self;}
  2555. }),
  2556. smalltalk.Collection);
  2557. smalltalk.addMethod(
  2558. '_readStream',
  2559. smalltalk.method({
  2560. selector: 'readStream',
  2561. fn: function (){
  2562. var self=this;
  2563. return smalltalk.send(self, "_stream", []);
  2564. return self;}
  2565. }),
  2566. smalltalk.Collection);
  2567. smalltalk.addMethod(
  2568. '_writeStream',
  2569. smalltalk.method({
  2570. selector: 'writeStream',
  2571. fn: function (){
  2572. var self=this;
  2573. return smalltalk.send(self, "_stream", []);
  2574. return self;}
  2575. }),
  2576. smalltalk.Collection);
  2577. smalltalk.addMethod(
  2578. '_stream',
  2579. smalltalk.method({
  2580. selector: 'stream',
  2581. fn: function (){
  2582. var self=this;
  2583. return smalltalk.send(smalltalk.send(self, "_streamClass", []), "_on_", [self]);
  2584. return self;}
  2585. }),
  2586. smalltalk.Collection);
  2587. smalltalk.addMethod(
  2588. '_streamClass',
  2589. smalltalk.method({
  2590. selector: 'streamClass',
  2591. fn: function (){
  2592. var self=this;
  2593. return smalltalk.send(smalltalk.send(self, "_class", []), "_streamClass", []);
  2594. return self;}
  2595. }),
  2596. smalltalk.Collection);
  2597. smalltalk.addMethod(
  2598. '_add_',
  2599. smalltalk.method({
  2600. selector: 'add:',
  2601. fn: function (anObject){
  2602. var self=this;
  2603. smalltalk.send(self, "_subclassResponsibility", []);
  2604. return self;}
  2605. }),
  2606. smalltalk.Collection);
  2607. smalltalk.addMethod(
  2608. '_addAll_',
  2609. smalltalk.method({
  2610. selector: 'addAll:',
  2611. fn: function (aCollection){
  2612. var self=this;
  2613. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(self, "_add_", [each]);})]);
  2614. return aCollection;
  2615. return self;}
  2616. }),
  2617. smalltalk.Collection);
  2618. smalltalk.addMethod(
  2619. '__comma',
  2620. smalltalk.method({
  2621. selector: ',',
  2622. fn: function (aCollection){
  2623. var self=this;
  2624. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  2625. return self;}
  2626. }),
  2627. smalltalk.Collection);
  2628. smalltalk.addMethod(
  2629. '_copyWith_',
  2630. smalltalk.method({
  2631. selector: 'copyWith:',
  2632. fn: function (anObject){
  2633. var self=this;
  2634. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  2635. return self;}
  2636. }),
  2637. smalltalk.Collection);
  2638. smalltalk.addMethod(
  2639. '_copyWithAll_',
  2640. smalltalk.method({
  2641. selector: 'copyWithAll:',
  2642. fn: function (aCollection){
  2643. var self=this;
  2644. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  2645. return self;}
  2646. }),
  2647. smalltalk.Collection);
  2648. smalltalk.addMethod(
  2649. '_asArray',
  2650. smalltalk.method({
  2651. selector: 'asArray',
  2652. fn: function (){
  2653. var self=this;
  2654. var array=nil;
  2655. var index=nil;
  2656. array=smalltalk.send((smalltalk.Array || Array), "_new", []);
  2657. index=(0);
  2658. smalltalk.send(self, "_do_", [(function(each){index=((($receiver = index).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));return smalltalk.send(array, "_at_put_", [index, each]);})]);
  2659. return array;
  2660. return self;}
  2661. }),
  2662. smalltalk.Collection);
  2663. smalltalk.addMethod(
  2664. '_do_',
  2665. smalltalk.method({
  2666. selector: 'do:',
  2667. fn: function (aBlock){
  2668. var self=this;
  2669. for(var i=0;i<self.length;i++){aBlock(self[i]);};
  2670. return self;}
  2671. }),
  2672. smalltalk.Collection);
  2673. smalltalk.addMethod(
  2674. '_collect_',
  2675. smalltalk.method({
  2676. selector: 'collect:',
  2677. fn: function (aBlock){
  2678. var self=this;
  2679. var newCollection=nil;
  2680. newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  2681. smalltalk.send(self, "_do_", [(function(each){return smalltalk.send(newCollection, "_add_", [smalltalk.send(aBlock, "_value_", [each])]);})]);
  2682. return newCollection;
  2683. return self;}
  2684. }),
  2685. smalltalk.Collection);
  2686. smalltalk.addMethod(
  2687. '_detect_',
  2688. smalltalk.method({
  2689. selector: 'detect:',
  2690. fn: function (aBlock){
  2691. var self=this;
  2692. return smalltalk.send(self, "_detect_ifNone_", [aBlock, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  2693. return self;}
  2694. }),
  2695. smalltalk.Collection);
  2696. smalltalk.addMethod(
  2697. '_detect_ifNone_',
  2698. smalltalk.method({
  2699. selector: 'detect:ifNone:',
  2700. fn: function (aBlock, anotherBlock){
  2701. var self=this;
  2702. for(var i = 0; i < self.length; i++)
  2703. if(aBlock(self[i]))
  2704. return self[i];
  2705. return anotherBlock();
  2706. ;
  2707. return self;}
  2708. }),
  2709. smalltalk.Collection);
  2710. smalltalk.addMethod(
  2711. '_do_separatedBy_',
  2712. smalltalk.method({
  2713. selector: 'do:separatedBy:',
  2714. fn: function (aBlock, anotherBlock){
  2715. var self=this;
  2716. var first=nil;
  2717. first=true;
  2718. smalltalk.send(self, "_do_", [(function(each){((($receiver = first).klass === smalltalk.Boolean) ? ($receiver ? (function(){return first=false;})() : (function(){return smalltalk.send(anotherBlock, "_value", []);})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return first=false;}), (function(){return smalltalk.send(anotherBlock, "_value", []);})]));return smalltalk.send(aBlock, "_value_", [each]);})]);
  2719. return self;}
  2720. }),
  2721. smalltalk.Collection);
  2722. smalltalk.addMethod(
  2723. '_inject_into_',
  2724. smalltalk.method({
  2725. selector: 'inject:into:',
  2726. fn: function (anObject, aBlock){
  2727. var self=this;
  2728. var result=nil;
  2729. result=anObject;
  2730. smalltalk.send(self, "_do_", [(function(each){return result=smalltalk.send(aBlock, "_value_value_", [result, each]);})]);
  2731. return result;
  2732. return self;}
  2733. }),
  2734. smalltalk.Collection);
  2735. smalltalk.addMethod(
  2736. '_reject_',
  2737. smalltalk.method({
  2738. selector: 'reject:',
  2739. fn: function (aBlock){
  2740. var self=this;
  2741. return smalltalk.send(self, "_select_", [(function(each){return smalltalk.send(smalltalk.send(aBlock, "_value_", [each]), "__eq", [false]);})]);
  2742. return self;}
  2743. }),
  2744. smalltalk.Collection);
  2745. smalltalk.addMethod(
  2746. '_select_',
  2747. smalltalk.method({
  2748. selector: 'select:',
  2749. fn: function (aBlock){
  2750. var self=this;
  2751. var stream=nil;
  2752. stream=smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_new", []), "_writeStream", []);
  2753. smalltalk.send(self, "_do_", [(function(each){return ((($receiver = smalltalk.send(aBlock, "_value_", [each])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(stream, "_nextPut_", [each]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(stream, "_nextPut_", [each]);})]));})]);
  2754. return smalltalk.send(stream, "_contents", []);
  2755. return self;}
  2756. }),
  2757. smalltalk.Collection);
  2758. smalltalk.addMethod(
  2759. '_errorNotFound',
  2760. smalltalk.method({
  2761. selector: 'errorNotFound',
  2762. fn: function (){
  2763. var self=this;
  2764. smalltalk.send(self, "_error_", ["Object is not in the collection"]);
  2765. return self;}
  2766. }),
  2767. smalltalk.Collection);
  2768. smalltalk.addMethod(
  2769. '_includes_',
  2770. smalltalk.method({
  2771. selector: 'includes:',
  2772. fn: function (anObject){
  2773. var self=this;
  2774. var i = self.length;
  2775. while (i--) {
  2776. if (smalltalk.send(self[i], "__eq", [anObject])) {return true;}
  2777. }
  2778. return false
  2779. ;
  2780. return self;}
  2781. }),
  2782. smalltalk.Collection);
  2783. smalltalk.addMethod(
  2784. '_notEmpty',
  2785. smalltalk.method({
  2786. selector: 'notEmpty',
  2787. fn: function (){
  2788. var self=this;
  2789. return smalltalk.send(smalltalk.send(self, "_isEmpty", []), "_not", []);
  2790. return self;}
  2791. }),
  2792. smalltalk.Collection);
  2793. smalltalk.addMethod(
  2794. '_isEmpty',
  2795. smalltalk.method({
  2796. selector: 'isEmpty',
  2797. fn: function (){
  2798. var self=this;
  2799. return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [(0)]);
  2800. return self;}
  2801. }),
  2802. smalltalk.Collection);
  2803. smalltalk.addMethod(
  2804. '_remove_',
  2805. smalltalk.method({
  2806. selector: 'remove:',
  2807. fn: function (anObject){
  2808. var self=this;
  2809. smalltalk.send(self, "_subclassResponsibility", []);
  2810. return self;}
  2811. }),
  2812. smalltalk.Collection);
  2813. smalltalk.addMethod(
  2814. '_asSet',
  2815. smalltalk.method({
  2816. selector: 'asSet',
  2817. fn: function (){
  2818. var self=this;
  2819. return smalltalk.send((smalltalk.Set || Set), "_withAll_", [self]);
  2820. return self;}
  2821. }),
  2822. smalltalk.Collection);
  2823. smalltalk.addMethod(
  2824. '_ifNotEmpty_',
  2825. smalltalk.method({
  2826. selector: 'ifNotEmpty:',
  2827. fn: function (aBlock){
  2828. var self=this;
  2829. smalltalk.send(smalltalk.send(self, "_notEmpty", []), "_ifTrue_", [aBlock]);
  2830. return self;}
  2831. }),
  2832. smalltalk.Collection);
  2833. smalltalk.addMethod(
  2834. '_ifEmpty_',
  2835. smalltalk.method({
  2836. selector: 'ifEmpty:',
  2837. fn: function (aBlock){
  2838. var self=this;
  2839. smalltalk.send(smalltalk.send(self, "_isEmpty", []), "_ifTrue_", [aBlock]);
  2840. return self;}
  2841. }),
  2842. smalltalk.Collection);
  2843. smalltalk.addMethod(
  2844. '_streamClass',
  2845. smalltalk.method({
  2846. selector: 'streamClass',
  2847. fn: function (){
  2848. var self=this;
  2849. return (smalltalk.Stream || Stream);
  2850. return self;}
  2851. }),
  2852. smalltalk.Collection.klass);
  2853. smalltalk.addMethod(
  2854. '_with_',
  2855. smalltalk.method({
  2856. selector: 'with:',
  2857. fn: function (anObject){
  2858. var self=this;
  2859. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2860. return self;}
  2861. }),
  2862. smalltalk.Collection.klass);
  2863. smalltalk.addMethod(
  2864. '_with_with_',
  2865. smalltalk.method({
  2866. selector: 'with:with:',
  2867. fn: function (anObject, anotherObject){
  2868. var self=this;
  2869. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);smalltalk.send($rec, "_add_", [anotherObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2870. return self;}
  2871. }),
  2872. smalltalk.Collection.klass);
  2873. smalltalk.addMethod(
  2874. '_with_with_with_',
  2875. smalltalk.method({
  2876. selector: 'with:with:with:',
  2877. fn: function (firstObject, secondObject, thirdObject){
  2878. var self=this;
  2879. return (function($rec){smalltalk.send($rec, "_add_", [firstObject]);smalltalk.send($rec, "_add_", [secondObject]);smalltalk.send($rec, "_add_", [thirdObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2880. return self;}
  2881. }),
  2882. smalltalk.Collection.klass);
  2883. smalltalk.addMethod(
  2884. '_withAll_',
  2885. smalltalk.method({
  2886. selector: 'withAll:',
  2887. fn: function (aCollection){
  2888. var self=this;
  2889. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2890. return self;}
  2891. }),
  2892. smalltalk.Collection.klass);
  2893. smalltalk.addClass('SequenceableCollection', smalltalk.Collection, [], 'Kernel');
  2894. smalltalk.addMethod(
  2895. '_at_',
  2896. smalltalk.method({
  2897. selector: 'at:',
  2898. fn: function (anIndex){
  2899. var self=this;
  2900. return smalltalk.send(self, "_at_ifAbsent_", [anIndex, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  2901. return self;}
  2902. }),
  2903. smalltalk.SequenceableCollection);
  2904. smalltalk.addMethod(
  2905. '_at_ifAbsent_',
  2906. smalltalk.method({
  2907. selector: 'at:ifAbsent:',
  2908. fn: function (anIndex, aBlock){
  2909. var self=this;
  2910. smalltalk.send(self, "_subclassResponsibility", []);
  2911. return self;}
  2912. }),
  2913. smalltalk.SequenceableCollection);
  2914. smalltalk.addMethod(
  2915. '_at_put_',
  2916. smalltalk.method({
  2917. selector: 'at:put:',
  2918. fn: function (anIndex, anObject){
  2919. var self=this;
  2920. smalltalk.send(self, "_subclassResponsibility", []);
  2921. return self;}
  2922. }),
  2923. smalltalk.SequenceableCollection);
  2924. smalltalk.addMethod(
  2925. '_copyFrom_to_',
  2926. smalltalk.method({
  2927. selector: 'copyFrom:to:',
  2928. fn: function (anIndex, anotherIndex){
  2929. var self=this;
  2930. smalltalk.send(self, "_subclassResponsibility", []);
  2931. return self;}
  2932. }),
  2933. smalltalk.SequenceableCollection);
  2934. smalltalk.addMethod(
  2935. '_first',
  2936. smalltalk.method({
  2937. selector: 'first',
  2938. fn: function (){
  2939. var self=this;
  2940. return smalltalk.send(self, "_at_", [(1)]);
  2941. return self;}
  2942. }),
  2943. smalltalk.SequenceableCollection);
  2944. smalltalk.addMethod(
  2945. '_fourth',
  2946. smalltalk.method({
  2947. selector: 'fourth',
  2948. fn: function (){
  2949. var self=this;
  2950. return smalltalk.send(self, "_at_", [(4)]);
  2951. return self;}
  2952. }),
  2953. smalltalk.SequenceableCollection);
  2954. smalltalk.addMethod(
  2955. '_last',
  2956. smalltalk.method({
  2957. selector: 'last',
  2958. fn: function (){
  2959. var self=this;
  2960. return smalltalk.send(self, "_at_", [smalltalk.send(self, "_size", [])]);
  2961. return self;}
  2962. }),
  2963. smalltalk.SequenceableCollection);
  2964. smalltalk.addMethod(
  2965. '_second',
  2966. smalltalk.method({
  2967. selector: 'second',
  2968. fn: function (){
  2969. var self=this;
  2970. return smalltalk.send(self, "_at_", [(2)]);
  2971. return self;}
  2972. }),
  2973. smalltalk.SequenceableCollection);
  2974. smalltalk.addMethod(
  2975. '_third',
  2976. smalltalk.method({
  2977. selector: 'third',
  2978. fn: function (){
  2979. var self=this;
  2980. return smalltalk.send(self, "_at_", [(3)]);
  2981. return self;}
  2982. }),
  2983. smalltalk.SequenceableCollection);
  2984. smalltalk.addMethod(
  2985. '_removeLast',
  2986. smalltalk.method({
  2987. selector: 'removeLast',
  2988. fn: function (){
  2989. var self=this;
  2990. smalltalk.send(self, "_remove_", [smalltalk.send(self, "_last", [])]);
  2991. return self;}
  2992. }),
  2993. smalltalk.SequenceableCollection);
  2994. smalltalk.addMethod(
  2995. '_addLast_',
  2996. smalltalk.method({
  2997. selector: 'addLast:',
  2998. fn: function (anObject){
  2999. var self=this;
  3000. smalltalk.send(self, "_add_", [anObject]);
  3001. return self;}
  3002. }),
  3003. smalltalk.SequenceableCollection);
  3004. smalltalk.addMethod(
  3005. '_withIndexDo_',
  3006. smalltalk.method({
  3007. selector: 'withIndexDo:',
  3008. fn: function (aBlock){
  3009. var self=this;
  3010. for(var i=0;i<self.length;i++){aBlock(self[i], i+1);};
  3011. return self;}
  3012. }),
  3013. smalltalk.SequenceableCollection);
  3014. smalltalk.addMethod(
  3015. '_allButFirst',
  3016. smalltalk.method({
  3017. selector: 'allButFirst',
  3018. fn: function (){
  3019. var self=this;
  3020. return smalltalk.send(self, "_copyFrom_to_", [(2), smalltalk.send(self, "_size", [])]);
  3021. return self;}
  3022. }),
  3023. smalltalk.SequenceableCollection);
  3024. smalltalk.addMethod(
  3025. '_allButLast',
  3026. smalltalk.method({
  3027. selector: 'allButLast',
  3028. fn: function (){
  3029. var self=this;
  3030. return smalltalk.send(self, "_copyFrom_to_", [(1), ((($receiver = smalltalk.send(self, "_size", [])).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)]))]);
  3031. return self;}
  3032. }),
  3033. smalltalk.SequenceableCollection);
  3034. smalltalk.addMethod(
  3035. '_indexOf_',
  3036. smalltalk.method({
  3037. selector: 'indexOf:',
  3038. fn: function (anObject){
  3039. var self=this;
  3040. return smalltalk.send(self, "_indexOf_ifAbsent_", [anObject, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  3041. return self;}
  3042. }),
  3043. smalltalk.SequenceableCollection);
  3044. smalltalk.addMethod(
  3045. '_indexOf_ifAbsent_',
  3046. smalltalk.method({
  3047. selector: 'indexOf:ifAbsent:',
  3048. fn: function (anObject, aBlock){
  3049. var self=this;
  3050. for(var i=0;i<self.length;i++){
  3051. if(self[i].__eq(anObject)) {return i+1}
  3052. }
  3053. return aBlock();
  3054. ;
  3055. return self;}
  3056. }),
  3057. smalltalk.SequenceableCollection);
  3058. smalltalk.addMethod(
  3059. '_indexOf_startingAt_ifAbsent_',
  3060. smalltalk.method({
  3061. selector: 'indexOf:startingAt:ifAbsent:',
  3062. fn: function (anObject, start, aBlock){
  3063. var self=this;
  3064. for(var i=start-1;i<self.length;i++){
  3065. if(self[i].__eq(anObject)) {return i+1}
  3066. }
  3067. return aBlock();
  3068. ;
  3069. return self;}
  3070. }),
  3071. smalltalk.SequenceableCollection);
  3072. smalltalk.addMethod(
  3073. '_indexOf_startingAt_',
  3074. smalltalk.method({
  3075. selector: 'indexOf:startingAt:',
  3076. fn: function (anObject, start){
  3077. var self=this;
  3078. return smalltalk.send(self, "_indexOf_startingAt_ifAbsent_", [anObject, start, (function(){return (0);})]);
  3079. return self;}
  3080. }),
  3081. smalltalk.SequenceableCollection);
  3082. smalltalk.addMethod(
  3083. '_reversed',
  3084. smalltalk.method({
  3085. selector: 'reversed',
  3086. fn: function (){
  3087. var self=this;
  3088. smalltalk.send(self, "_subclassResponsibility", []);
  3089. return self;}
  3090. }),
  3091. smalltalk.SequenceableCollection);
  3092. smalltalk.addClass('String', smalltalk.SequenceableCollection, [], 'Kernel');
  3093. smalltalk.addMethod(
  3094. '__eq',
  3095. smalltalk.method({
  3096. selector: '=',
  3097. fn: function (aString){
  3098. var self=this;
  3099. try{((($receiver = smalltalk.send(smalltalk.send(aString, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})]));
  3100. return String(self) == aString;
  3101. return self;
  3102. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  3103. }),
  3104. smalltalk.String);
  3105. smalltalk.addMethod(
  3106. '_size',
  3107. smalltalk.method({
  3108. selector: 'size',
  3109. fn: function (){
  3110. var self=this;
  3111. return self.length;
  3112. return self;}
  3113. }),
  3114. smalltalk.String);
  3115. smalltalk.addMethod(
  3116. '_at_',
  3117. smalltalk.method({
  3118. selector: 'at:',
  3119. fn: function (anIndex){
  3120. var self=this;
  3121. return self[anIndex - 1];
  3122. return self;}
  3123. }),
  3124. smalltalk.String);
  3125. smalltalk.addMethod(
  3126. '_at_put_',
  3127. smalltalk.method({
  3128. selector: 'at:put:',
  3129. fn: function (anIndex, anObject){
  3130. var self=this;
  3131. smalltalk.send(self, "_errorReadOnly", []);
  3132. return self;}
  3133. }),
  3134. smalltalk.String);
  3135. smalltalk.addMethod(
  3136. '_at_ifAbsent_',
  3137. smalltalk.method({
  3138. selector: 'at:ifAbsent:',
  3139. fn: function (anIndex, aBlock){
  3140. var self=this;
  3141. (($receiver = smalltalk.send(self, "_at_", [anIndex])) == nil || $receiver == undefined) ? (function(){return aBlock;})() : $receiver;
  3142. return self;}
  3143. }),
  3144. smalltalk.String);
  3145. smalltalk.addMethod(
  3146. '_escaped',
  3147. smalltalk.method({
  3148. selector: 'escaped',
  3149. fn: function (){
  3150. var self=this;
  3151. return escape(self);
  3152. return self;}
  3153. }),
  3154. smalltalk.String);
  3155. smalltalk.addMethod(
  3156. '_unescaped',
  3157. smalltalk.method({
  3158. selector: 'unescaped',
  3159. fn: function (){
  3160. var self=this;
  3161. return unescape(self);
  3162. return self;}
  3163. }),
  3164. smalltalk.String);
  3165. smalltalk.addMethod(
  3166. '_add_',
  3167. smalltalk.method({
  3168. selector: 'add:',
  3169. fn: function (anObject){
  3170. var self=this;
  3171. smalltalk.send(self, "_errorReadOnly", []);
  3172. return self;}
  3173. }),
  3174. smalltalk.String);
  3175. smalltalk.addMethod(
  3176. '__comma',
  3177. smalltalk.method({
  3178. selector: ',',
  3179. fn: function (aString){
  3180. var self=this;
  3181. return self + aString;
  3182. return self;}
  3183. }),
  3184. smalltalk.String);
  3185. smalltalk.addMethod(
  3186. '_copyFrom_to_',
  3187. smalltalk.method({
  3188. selector: 'copyFrom:to:',
  3189. fn: function (anIndex, anotherIndex){
  3190. var self=this;
  3191. return self.substring(anIndex - 1, anotherIndex);
  3192. return self;}
  3193. }),
  3194. smalltalk.String);
  3195. smalltalk.addMethod(
  3196. '_shallowCopy',
  3197. smalltalk.method({
  3198. selector: 'shallowCopy',
  3199. fn: function (){
  3200. var self=this;
  3201. return smalltalk.send(smalltalk.send(self, "_class", []), "_fromString_", [self]);
  3202. return self;}
  3203. }),
  3204. smalltalk.String);
  3205. smalltalk.addMethod(
  3206. '_deepCopy',
  3207. smalltalk.method({
  3208. selector: 'deepCopy',
  3209. fn: function (){
  3210. var self=this;
  3211. return smalltalk.send(self, "_shallowCopy", []);
  3212. return self;}
  3213. }),
  3214. smalltalk.String);
  3215. smalltalk.addMethod(
  3216. '_asSelector',
  3217. smalltalk.method({
  3218. selector: 'asSelector',
  3219. fn: function (){
  3220. var self=this;
  3221. var selector=nil;
  3222. selector=smalltalk.send("_", "__comma", [self]);
  3223. selector=smalltalk.send(selector, "_replace_with_", [":", "_"]);
  3224. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B+%5D"), "_plus"]);
  3225. selector=smalltalk.send(selector, "_replace_with_", [unescape("-"), "_minus"]);
  3226. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B*%5D"), "_star"]);
  3227. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B/%5D"), "_slash"]);
  3228. selector=smalltalk.send(selector, "_replace_with_", [unescape("%3E"), "_gt"]);
  3229. selector=smalltalk.send(selector, "_replace_with_", [unescape("%3C"), "_lt"]);
  3230. selector=smalltalk.send(selector, "_replace_with_", [unescape("%3D"), "_eq"]);
  3231. selector=smalltalk.send(selector, "_replace_with_", [unescape("%2C"), "_comma"]);
  3232. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B@%5D"), "_at"]);
  3233. return selector;
  3234. return self;}
  3235. }),
  3236. smalltalk.String);
  3237. smalltalk.addMethod(
  3238. '_asJavascript',
  3239. smalltalk.method({
  3240. selector: 'asJavascript',
  3241. fn: function (){
  3242. var self=this;
  3243. if(self.search(/^[a-zA-Z0-9_:.$ ]*$/) == -1)
  3244. return "unescape(\"" + escape(self) + "\")";
  3245. else
  3246. return "\"" + self + "\"";
  3247. ;
  3248. return self;}
  3249. }),
  3250. smalltalk.String);
  3251. smalltalk.addMethod(
  3252. '_replace_with_',
  3253. smalltalk.method({
  3254. selector: 'replace:with:',
  3255. fn: function (aString, anotherString){
  3256. var self=this;
  3257. return smalltalk.send(self, "_replaceRegexp_with_", [smalltalk.send((smalltalk.RegularExpression || RegularExpression), "_fromString_flag_", [aString, "g"]), anotherString]);
  3258. return self;}
  3259. }),
  3260. smalltalk.String);
  3261. smalltalk.addMethod(
  3262. '_replaceRegexp_with_',
  3263. smalltalk.method({
  3264. selector: 'replaceRegexp:with:',
  3265. fn: function (aRegexp, aString){
  3266. var self=this;
  3267. return self.replace(aRegexp, aString);
  3268. return self;}
  3269. }),
  3270. smalltalk.String);
  3271. smalltalk.addMethod(
  3272. '_tokenize_',
  3273. smalltalk.method({
  3274. selector: 'tokenize:',
  3275. fn: function (aString){
  3276. var self=this;
  3277. return self.split(aString);
  3278. return self;}
  3279. }),
  3280. smalltalk.String);
  3281. smalltalk.addMethod(
  3282. '_match_',
  3283. smalltalk.method({
  3284. selector: 'match:',
  3285. fn: function (aRegexp){
  3286. var self=this;
  3287. return self.search(aRegexp) != -1;
  3288. return self;}
  3289. }),
  3290. smalltalk.String);
  3291. smalltalk.addMethod(
  3292. '_asString',
  3293. smalltalk.method({
  3294. selector: 'asString',
  3295. fn: function (){
  3296. var self=this;
  3297. return self;
  3298. return self;}
  3299. }),
  3300. smalltalk.String);
  3301. smalltalk.addMethod(
  3302. '_asNumber',
  3303. smalltalk.method({
  3304. selector: 'asNumber',
  3305. fn: function (){
  3306. var self=this;
  3307. return Number(self);
  3308. return self;}
  3309. }),
  3310. smalltalk.String);
  3311. smalltalk.addMethod(
  3312. '_errorReadOnly',
  3313. smalltalk.method({
  3314. selector: 'errorReadOnly',
  3315. fn: function (){
  3316. var self=this;
  3317. smalltalk.send(self, "_error_", [unescape("Object%20is%20read-only")]);
  3318. return self;}
  3319. }),
  3320. smalltalk.String);
  3321. smalltalk.addMethod(
  3322. '_printString',
  3323. smalltalk.method({
  3324. selector: 'printString',
  3325. fn: function (){
  3326. var self=this;
  3327. return smalltalk.send(smalltalk.send(unescape("%27"), "__comma", [self]), "__comma", [unescape("%27")]);
  3328. return self;}
  3329. }),
  3330. smalltalk.String);
  3331. smalltalk.addMethod(
  3332. '_printNl',
  3333. smalltalk.method({
  3334. selector: 'printNl',
  3335. fn: function (){
  3336. var self=this;
  3337. console.log(self);
  3338. return self;}
  3339. }),
  3340. smalltalk.String);
  3341. smalltalk.addMethod(
  3342. '_isString',
  3343. smalltalk.method({
  3344. selector: 'isString',
  3345. fn: function (){
  3346. var self=this;
  3347. return true;
  3348. return self;}
  3349. }),
  3350. smalltalk.String);
  3351. smalltalk.addMethod(
  3352. '__gt',
  3353. smalltalk.method({
  3354. selector: '>',
  3355. fn: function (aString){
  3356. var self=this;
  3357. return String(self) > aString;
  3358. return self;}
  3359. }),
  3360. smalltalk.String);
  3361. smalltalk.addMethod(
  3362. '__lt',
  3363. smalltalk.method({
  3364. selector: '<',
  3365. fn: function (aString){
  3366. var self=this;
  3367. return String(self) < aString;
  3368. return self;}
  3369. }),
  3370. smalltalk.String);
  3371. smalltalk.addMethod(
  3372. '__gt_eq',
  3373. smalltalk.method({
  3374. selector: '>=',
  3375. fn: function (aString){
  3376. var self=this;
  3377. return String(self) >= aString;
  3378. return self;}
  3379. }),
  3380. smalltalk.String);
  3381. smalltalk.addMethod(
  3382. '__lt_eq',
  3383. smalltalk.method({
  3384. selector: '<=',
  3385. fn: function (aString){
  3386. var self=this;
  3387. return String(self) <= aString;
  3388. return self;}
  3389. }),
  3390. smalltalk.String);
  3391. smalltalk.addMethod(
  3392. '_remove_',
  3393. smalltalk.method({
  3394. selector: 'remove:',
  3395. fn: function (anObject){
  3396. var self=this;
  3397. smalltalk.send(self, "_errorReadOnly", []);
  3398. return self;}
  3399. }),
  3400. smalltalk.String);
  3401. smalltalk.addMethod(
  3402. '_asJSONObject',
  3403. smalltalk.method({
  3404. selector: 'asJSONObject',
  3405. fn: function (){
  3406. var self=this;
  3407. return self;
  3408. return self;}
  3409. }),
  3410. smalltalk.String);
  3411. smalltalk.addMethod(
  3412. '_trimLeft_',
  3413. smalltalk.method({
  3414. selector: 'trimLeft:',
  3415. fn: function (separators){
  3416. var self=this;
  3417. return smalltalk.send(self, "_replaceRegexp_with_", [smalltalk.send((smalltalk.RegularExpression || RegularExpression), "_fromString_flag_", [smalltalk.send(smalltalk.send(unescape("%5E%5B"), "__comma", [separators]), "__comma", [unescape("%5D+")]), "g"]), ""]);
  3418. return self;}
  3419. }),
  3420. smalltalk.String);
  3421. smalltalk.addMethod(
  3422. '_trimRight_',
  3423. smalltalk.method({
  3424. selector: 'trimRight:',
  3425. fn: function (separators){
  3426. var self=this;
  3427. return smalltalk.send(self, "_replaceRegexp_with_", [smalltalk.send((smalltalk.RegularExpression || RegularExpression), "_fromString_flag_", [smalltalk.send(smalltalk.send(unescape("%5B"), "__comma", [separators]), "__comma", [unescape("%5D+%24")]), "g"]), ""]);
  3428. return self;}
  3429. }),
  3430. smalltalk.String);
  3431. smalltalk.addMethod(
  3432. '_trimLeft',
  3433. smalltalk.method({
  3434. selector: 'trimLeft',
  3435. fn: function (){
  3436. var self=this;
  3437. return smalltalk.send(self, "_trimLeft_", [unescape("%5Cs")]);
  3438. return self;}
  3439. }),
  3440. smalltalk.String);
  3441. smalltalk.addMethod(
  3442. '_trimRight',
  3443. smalltalk.method({
  3444. selector: 'trimRight',
  3445. fn: function (){
  3446. var self=this;
  3447. return smalltalk.send(self, "_trimRight_", [unescape("%5Cs")]);
  3448. return self;}
  3449. }),
  3450. smalltalk.String);
  3451. smalltalk.addMethod(
  3452. '_trimBoth',
  3453. smalltalk.method({
  3454. selector: 'trimBoth',
  3455. fn: function (){
  3456. var self=this;
  3457. return smalltalk.send(self, "_trimBoth_", [unescape("%5Cs")]);
  3458. return self;}
  3459. }),
  3460. smalltalk.String);
  3461. smalltalk.addMethod(
  3462. '_trimBoth_',
  3463. smalltalk.method({
  3464. selector: 'trimBoth:',
  3465. fn: function (separators){
  3466. var self=this;
  3467. return smalltalk.send(smalltalk.send(self, "_trimLeft_", [separators]), "_trimRight_", [separators]);
  3468. return self;}
  3469. }),
  3470. smalltalk.String);
  3471. smalltalk.addMethod(
  3472. '_asLowercase',
  3473. smalltalk.method({
  3474. selector: 'asLowercase',
  3475. fn: function (){
  3476. var self=this;
  3477. return self.toLowerCase();
  3478. return self;}
  3479. }),
  3480. smalltalk.String);
  3481. smalltalk.addMethod(
  3482. '_asUppercase',
  3483. smalltalk.method({
  3484. selector: 'asUppercase',
  3485. fn: function (){
  3486. var self=this;
  3487. return self.toUpperCase();
  3488. return self;}
  3489. }),
  3490. smalltalk.String);
  3491. smalltalk.addMethod(
  3492. '_join_',
  3493. smalltalk.method({
  3494. selector: 'join:',
  3495. fn: function (aCollection){
  3496. var self=this;
  3497. return smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(stream){return smalltalk.send(aCollection, "_do_separatedBy_", [(function(each){return smalltalk.send(stream, "_nextPutAll_", [smalltalk.send(each, "_asString", [])]);}), (function(){return smalltalk.send(stream, "_nextPutAll_", [self]);})]);})]);
  3498. return self;}
  3499. }),
  3500. smalltalk.String);
  3501. smalltalk.addMethod(
  3502. '_includesSubString_',
  3503. smalltalk.method({
  3504. selector: 'includesSubString:',
  3505. fn: function (subString){
  3506. var self=this;
  3507. return self.indexOf(subString) != -1 ;
  3508. return self;}
  3509. }),
  3510. smalltalk.String);
  3511. smalltalk.addMethod(
  3512. '_asciiValue',
  3513. smalltalk.method({
  3514. selector: 'asciiValue',
  3515. fn: function (){
  3516. var self=this;
  3517. return self.charCodeAt(0);;
  3518. return self;}
  3519. }),
  3520. smalltalk.String);
  3521. smalltalk.addMethod(
  3522. '_lineIndicesDo_',
  3523. smalltalk.method({
  3524. selector: 'lineIndicesDo:',
  3525. fn: function (aBlock){
  3526. var self=this;
  3527. try{var cr=nil;
  3528. var lf=nil;
  3529. var start=nil;
  3530. var sz=nil;
  3531. var nextLF=nil;
  3532. var nextCR=nil;
  3533. start=(1);
  3534. sz=smalltalk.send(self, "_size", []);
  3535. cr=smalltalk.send((smalltalk.String || String), "_cr", []);
  3536. nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, (1)]);
  3537. lf=smalltalk.send((smalltalk.String || String), "_lf", []);
  3538. nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, (1)]);
  3539. (function(){while((function(){return ((($receiver = start).klass === smalltalk.Number) ? $receiver <=sz : smalltalk.send($receiver, "__lt_eq", [sz]));})()) {(function(){((($receiver = smalltalk.send(smalltalk.send(nextLF, "__eq", [(0)]), "_and_", [(function(){return smalltalk.send(nextCR, "__eq", [(0)]);})])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, sz, sz]);return (function(){throw({name: 'stReturn', selector: '_lineIndicesDo_', fn: function(){return self}})})();})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, sz, sz]);return (function(){throw({name: 'stReturn', selector: '_lineIndicesDo_', fn: function(){return self}})})();})]));return ((($receiver = smalltalk.send(smalltalk.send(nextCR, "__eq", [(0)]), "_or_", [(function(){return smalltalk.send((0) < nextLF, "_and_", [(function(){return ((($receiver = nextLF).klass === smalltalk.Number) ? $receiver <nextCR : smalltalk.send($receiver, "__lt", [nextCR]));})]);})])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextLF).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);start=(1) + nextLF;return nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]);})() : (function(){return ((($receiver = smalltalk.send((1) + nextCR, "__eq", [nextLF])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);start=(1) + nextLF;nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);return nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]);})() : (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);start=(1) + nextCR;return nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);start=(1) + nextLF;nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);return nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]);}), (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);start=(1) + nextCR;return nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);})]));})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextLF).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);start=(1) + nextLF;return nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]);}), (function(){return ((($receiver = smalltalk.send((1) + nextCR, "__eq", [nextLF])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);start=(1) + nextLF;nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);return nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]);})() : (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);start=(1) + nextCR;return nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);start=(1) + nextLF;nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);return nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]);}), (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);start=(1) + nextCR;return nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]);})]));})]));})()}})();
  3540. return self;
  3541. } catch(e) {if(e.name === 'stReturn' && e.selector === '_lineIndicesDo_'){return e.fn()} throw(e)}}
  3542. }),
  3543. smalltalk.String);
  3544. smalltalk.addMethod(
  3545. '_linesDo_',
  3546. smalltalk.method({
  3547. selector: 'linesDo:',
  3548. fn: function (aBlock){
  3549. var self=this;
  3550. smalltalk.send(self, "_lineIndicesDo_", [(function(start, endWithoutDelimiters, end){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_copyFrom_to_", [start, endWithoutDelimiters])]);})]);
  3551. return self;}
  3552. }),
  3553. smalltalk.String);
  3554. smalltalk.addMethod(
  3555. '_lines',
  3556. smalltalk.method({
  3557. selector: 'lines',
  3558. fn: function (){
  3559. var self=this;
  3560. var lines=nil;
  3561. lines=smalltalk.send((smalltalk.Array || Array), "_new", []);
  3562. smalltalk.send(self, "_linesDo_", [(function(aLine){return smalltalk.send(lines, "_add_", [aLine]);})]);
  3563. return lines;
  3564. return self;}
  3565. }),
  3566. smalltalk.String);
  3567. smalltalk.addMethod(
  3568. '_lineNumber_',
  3569. smalltalk.method({
  3570. selector: 'lineNumber:',
  3571. fn: function (anIndex){
  3572. var self=this;
  3573. try{var lineCount=nil;
  3574. lineCount=(0);
  3575. smalltalk.send(self, "_lineIndicesDo_", [(function(start, endWithoutDelimiters, end){return ((($receiver = smalltalk.send(lineCount=((($receiver = lineCount).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])), "__eq", [anIndex])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '_lineNumber_', fn: function(){return smalltalk.send(self, "_copyFrom_to_", [start, endWithoutDelimiters])}})})();})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return (function(){throw({name: 'stReturn', selector: '_lineNumber_', fn: function(){return smalltalk.send(self, "_copyFrom_to_", [start, endWithoutDelimiters])}})})();})]));})]);
  3576. (function(){throw({name: 'stReturn', selector: '_lineNumber_', fn: function(){return nil}})})();
  3577. return self;
  3578. } catch(e) {if(e.name === 'stReturn' && e.selector === '_lineNumber_'){return e.fn()} throw(e)}}
  3579. }),
  3580. smalltalk.String);
  3581. smalltalk.addMethod(
  3582. '_reversed',
  3583. smalltalk.method({
  3584. selector: 'reversed',
  3585. fn: function (){
  3586. var self=this;
  3587. return self.split("").reverse().join("");
  3588. return self;}
  3589. }),
  3590. smalltalk.String);
  3591. smalltalk.addMethod(
  3592. '__eq_eq',
  3593. smalltalk.method({
  3594. selector: '==',
  3595. fn: function (aString){
  3596. var self=this;
  3597. try{((($receiver = smalltalk.send(smalltalk.send(aString, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq_eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq_eq', fn: function(){return false}})})();})]));
  3598. return String(self) === String(aString);
  3599. return self;
  3600. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq_eq'){return e.fn()} throw(e)}}
  3601. }),
  3602. smalltalk.String);
  3603. smalltalk.addMethod(
  3604. '_asJavaScriptSelector',
  3605. smalltalk.method({
  3606. selector: 'asJavaScriptSelector',
  3607. fn: function (){
  3608. var self=this;
  3609. return String(self.replace(/^_/, '').replace(/_.*/, ''));
  3610. return self;}
  3611. }),
  3612. smalltalk.String);
  3613. smalltalk.addMethod(
  3614. '_streamClass',
  3615. smalltalk.method({
  3616. selector: 'streamClass',
  3617. fn: function (){
  3618. var self=this;
  3619. return (smalltalk.StringStream || StringStream);
  3620. return self;}
  3621. }),
  3622. smalltalk.String.klass);
  3623. smalltalk.addMethod(
  3624. '_fromString_',
  3625. smalltalk.method({
  3626. selector: 'fromString:',
  3627. fn: function (aString){
  3628. var self=this;
  3629. return new self.fn(aString);
  3630. return self;}
  3631. }),
  3632. smalltalk.String.klass);
  3633. smalltalk.addMethod(
  3634. '_cr',
  3635. smalltalk.method({
  3636. selector: 'cr',
  3637. fn: function (){
  3638. var self=this;
  3639. return '\r';
  3640. return self;}
  3641. }),
  3642. smalltalk.String.klass);
  3643. smalltalk.addMethod(
  3644. '_lf',
  3645. smalltalk.method({
  3646. selector: 'lf',
  3647. fn: function (){
  3648. var self=this;
  3649. return '\n';
  3650. return self;}
  3651. }),
  3652. smalltalk.String.klass);
  3653. smalltalk.addMethod(
  3654. '_space',
  3655. smalltalk.method({
  3656. selector: 'space',
  3657. fn: function (){
  3658. var self=this;
  3659. return ' ';
  3660. return self;}
  3661. }),
  3662. smalltalk.String.klass);
  3663. smalltalk.addMethod(
  3664. '_tab',
  3665. smalltalk.method({
  3666. selector: 'tab',
  3667. fn: function (){
  3668. var self=this;
  3669. return '\t';
  3670. return self;}
  3671. }),
  3672. smalltalk.String.klass);
  3673. smalltalk.addMethod(
  3674. '_crlf',
  3675. smalltalk.method({
  3676. selector: 'crlf',
  3677. fn: function (){
  3678. var self=this;
  3679. return '\r\n';
  3680. return self;}
  3681. }),
  3682. smalltalk.String.klass);
  3683. smalltalk.addMethod(
  3684. '_streamContents_',
  3685. smalltalk.method({
  3686. selector: 'streamContents:',
  3687. fn: function (blockWithArg){
  3688. var self=this;
  3689. var stream=nil;
  3690. stream=smalltalk.send(smalltalk.send(self, "_streamClass", []), "_on_", [smalltalk.send((smalltalk.String || String), "_new", [])]);
  3691. smalltalk.send(blockWithArg, "_value_", [stream]);
  3692. return smalltalk.send(stream, "_contents", []);
  3693. return self;}
  3694. }),
  3695. smalltalk.String.klass);
  3696. smalltalk.addMethod(
  3697. '_value_',
  3698. smalltalk.method({
  3699. selector: 'value:',
  3700. fn: function (aUTFCharCode){
  3701. var self=this;
  3702. return String.fromCharCode(aUTFCharCode);;
  3703. return self;}
  3704. }),
  3705. smalltalk.String.klass);
  3706. smalltalk.addClass('Array', smalltalk.SequenceableCollection, [], 'Kernel');
  3707. smalltalk.addMethod(
  3708. '_size',
  3709. smalltalk.method({
  3710. selector: 'size',
  3711. fn: function (){
  3712. var self=this;
  3713. return self.length;
  3714. return self;}
  3715. }),
  3716. smalltalk.Array);
  3717. smalltalk.addMethod(
  3718. '_at_put_',
  3719. smalltalk.method({
  3720. selector: 'at:put:',
  3721. fn: function (anIndex, anObject){
  3722. var self=this;
  3723. return self[anIndex - 1] = anObject;
  3724. return self;}
  3725. }),
  3726. smalltalk.Array);
  3727. smalltalk.addMethod(
  3728. '_at_ifAbsent_',
  3729. smalltalk.method({
  3730. selector: 'at:ifAbsent:',
  3731. fn: function (anIndex, aBlock){
  3732. var self=this;
  3733. var value = self[anIndex - 1];
  3734. if(value === undefined) {
  3735. return aBlock();
  3736. } else {
  3737. return value;
  3738. }
  3739. ;
  3740. return self;}
  3741. }),
  3742. smalltalk.Array);
  3743. smalltalk.addMethod(
  3744. '_add_',
  3745. smalltalk.method({
  3746. selector: 'add:',
  3747. fn: function (anObject){
  3748. var self=this;
  3749. self.push(anObject); return anObject;;
  3750. return self;}
  3751. }),
  3752. smalltalk.Array);
  3753. smalltalk.addMethod(
  3754. '_shallowCopy',
  3755. smalltalk.method({
  3756. selector: 'shallowCopy',
  3757. fn: function (){
  3758. var self=this;
  3759. var newCollection=nil;
  3760. newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  3761. smalltalk.send(self, "_do_", [(function(each){return smalltalk.send(newCollection, "_add_", [each]);})]);
  3762. return newCollection;
  3763. return self;}
  3764. }),
  3765. smalltalk.Array);
  3766. smalltalk.addMethod(
  3767. '_deepCopy',
  3768. smalltalk.method({
  3769. selector: 'deepCopy',
  3770. fn: function (){
  3771. var self=this;
  3772. var newCollection=nil;
  3773. newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  3774. smalltalk.send(self, "_do_", [(function(each){return smalltalk.send(newCollection, "_add_", [smalltalk.send(each, "_deepCopy", [])]);})]);
  3775. return newCollection;
  3776. return self;}
  3777. }),
  3778. smalltalk.Array);
  3779. smalltalk.addMethod(
  3780. '_copyFrom_to_',
  3781. smalltalk.method({
  3782. selector: 'copyFrom:to:',
  3783. fn: function (anIndex, anotherIndex){
  3784. var self=this;
  3785. var array=nil;
  3786. array=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  3787. smalltalk.send(anIndex, "_to_do_", [anotherIndex, (function(each){return smalltalk.send(array, "_add_", [smalltalk.send(self, "_at_", [each])]);})]);
  3788. return array;
  3789. return self;}
  3790. }),
  3791. smalltalk.Array);
  3792. smalltalk.addMethod(
  3793. '_join_',
  3794. smalltalk.method({
  3795. selector: 'join:',
  3796. fn: function (aString){
  3797. var self=this;
  3798. return self.join(aString);
  3799. return self;}
  3800. }),
  3801. smalltalk.Array);
  3802. smalltalk.addMethod(
  3803. '_asJavascript',
  3804. smalltalk.method({
  3805. selector: 'asJavascript',
  3806. fn: function (){
  3807. var self=this;
  3808. return smalltalk.send(smalltalk.send(unescape("%5B"), "__comma", [smalltalk.send(smalltalk.send(self, "_collect_", [(function(each){return smalltalk.send(each, "_asJavascript", []);})]), "_join_", [unescape("%2C%20")])]), "__comma", [unescape("%5D")]);
  3809. return self;}
  3810. }),
  3811. smalltalk.Array);
  3812. smalltalk.addMethod(
  3813. '_sort',
  3814. smalltalk.method({
  3815. selector: 'sort',
  3816. fn: function (){
  3817. var self=this;
  3818. return smalltalk.send(self, "_basicPerform_", ["sort"]);
  3819. return self;}
  3820. }),
  3821. smalltalk.Array);
  3822. smalltalk.addMethod(
  3823. '_sort_',
  3824. smalltalk.method({
  3825. selector: 'sort:',
  3826. fn: function (aBlock){
  3827. var self=this;
  3828. return self.sort(function(a, b) {
  3829. if(aBlock(a,b)) {return -1} else {return 1}
  3830. })
  3831. ;
  3832. return self;}
  3833. }),
  3834. smalltalk.Array);
  3835. smalltalk.addMethod(
  3836. '_remove_',
  3837. smalltalk.method({
  3838. selector: 'remove:',
  3839. fn: function (anObject){
  3840. var self=this;
  3841. for(var i=0;i<self.length;i++) {
  3842. if(self[i] == anObject) {
  3843. self.splice(i,1);
  3844. break;
  3845. }
  3846. }
  3847. ;
  3848. return self;}
  3849. }),
  3850. smalltalk.Array);
  3851. smalltalk.addMethod(
  3852. '_sorted',
  3853. smalltalk.method({
  3854. selector: 'sorted',
  3855. fn: function (){
  3856. var self=this;
  3857. return smalltalk.send(smalltalk.send(self, "_copy", []), "_sort", []);
  3858. return self;}
  3859. }),
  3860. smalltalk.Array);
  3861. smalltalk.addMethod(
  3862. '_sorted_',
  3863. smalltalk.method({
  3864. selector: 'sorted:',
  3865. fn: function (aBlock){
  3866. var self=this;
  3867. return smalltalk.send(smalltalk.send(self, "_copy", []), "_sort_", [aBlock]);
  3868. return self;}
  3869. }),
  3870. smalltalk.Array);
  3871. smalltalk.addMethod(
  3872. '_asJSONObject',
  3873. smalltalk.method({
  3874. selector: 'asJSONObject',
  3875. fn: function (){
  3876. var self=this;
  3877. return smalltalk.send(self, "_collect_", [(function(each){return smalltalk.send(each, "_asJSONObject", []);})]);
  3878. return self;}
  3879. }),
  3880. smalltalk.Array);
  3881. smalltalk.addMethod(
  3882. '_removeFrom_to_',
  3883. smalltalk.method({
  3884. selector: 'removeFrom:to:',
  3885. fn: function (aNumber, anotherNumber){
  3886. var self=this;
  3887. self.splice(aNumber - 1,anotherNumber - 1);
  3888. return self;}
  3889. }),
  3890. smalltalk.Array);
  3891. smalltalk.addMethod(
  3892. '_printString',
  3893. smalltalk.method({
  3894. selector: 'printString',
  3895. fn: function (){
  3896. var self=this;
  3897. var str=nil;
  3898. str=smalltalk.send("", "_writeStream", []);
  3899. smalltalk.send(str, "_nextPutAll_", [smalltalk.send(smalltalk.send(self, "_printString", [], smalltalk.SequenceableCollection), "__comma", [unescape("%20%28")])]);
  3900. smalltalk.send(self, "_do_separatedBy_", [(function(each){return smalltalk.send(str, "_nextPutAll_", [smalltalk.send(each, "_printString", [])]);}), (function(){return smalltalk.send(str, "_nextPutAll_", [" "]);})]);
  3901. smalltalk.send(str, "_nextPutAll_", [unescape("%29")]);
  3902. return smalltalk.send(str, "_contents", []);
  3903. return self;}
  3904. }),
  3905. smalltalk.Array);
  3906. smalltalk.addMethod(
  3907. '_reversed',
  3908. smalltalk.method({
  3909. selector: 'reversed',
  3910. fn: function (){
  3911. var self=this;
  3912. return self._copy().reverse();
  3913. return self;}
  3914. }),
  3915. smalltalk.Array);
  3916. smalltalk.addMethod(
  3917. '__eq',
  3918. smalltalk.method({
  3919. selector: '=',
  3920. fn: function (aCollection){
  3921. var self=this;
  3922. try{((($receiver = smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(aCollection, "_class", [])]), "_and_", [(function(){return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [smalltalk.send(aCollection, "_size", [])]);})])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})]));
  3923. smalltalk.send(self, "_withIndexDo_", [(function(each, i){return ((($receiver = smalltalk.send(smalltalk.send(aCollection, "_at_", [i]), "__eq", [each])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})]));})]);
  3924. (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return true}})})();
  3925. return self;
  3926. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  3927. }),
  3928. smalltalk.Array);
  3929. smalltalk.addClass('RegularExpression', smalltalk.Object, [], 'Kernel');
  3930. smalltalk.addMethod(
  3931. '_compile_',
  3932. smalltalk.method({
  3933. selector: 'compile:',
  3934. fn: function (aString){
  3935. var self=this;
  3936. return self.compile(aString);
  3937. return self;}
  3938. }),
  3939. smalltalk.RegularExpression);
  3940. smalltalk.addMethod(
  3941. '_exec_',
  3942. smalltalk.method({
  3943. selector: 'exec:',
  3944. fn: function (aString){
  3945. var self=this;
  3946. return self.exec(aString) || nil;
  3947. return self;}
  3948. }),
  3949. smalltalk.RegularExpression);
  3950. smalltalk.addMethod(
  3951. '_test_',
  3952. smalltalk.method({
  3953. selector: 'test:',
  3954. fn: function (aString){
  3955. var self=this;
  3956. return self.test(aString);
  3957. return self;}
  3958. }),
  3959. smalltalk.RegularExpression);
  3960. smalltalk.addMethod(
  3961. '_fromString_flag_',
  3962. smalltalk.method({
  3963. selector: 'fromString:flag:',
  3964. fn: function (aString, anotherString){
  3965. var self=this;
  3966. return new RegExp(aString, anotherString);
  3967. return self;}
  3968. }),
  3969. smalltalk.RegularExpression.klass);
  3970. smalltalk.addMethod(
  3971. '_fromString_',
  3972. smalltalk.method({
  3973. selector: 'fromString:',
  3974. fn: function (aString){
  3975. var self=this;
  3976. return smalltalk.send(self, "_fromString_flag_", [aString, ""]);
  3977. return self;}
  3978. }),
  3979. smalltalk.RegularExpression.klass);
  3980. smalltalk.addClass('Error', smalltalk.Object, ['messageText'], 'Kernel');
  3981. smalltalk.addMethod(
  3982. '_messageText',
  3983. smalltalk.method({
  3984. selector: 'messageText',
  3985. fn: function (){
  3986. var self=this;
  3987. return self['@messageText'];
  3988. return self;}
  3989. }),
  3990. smalltalk.Error);
  3991. smalltalk.addMethod(
  3992. '_messageText_',
  3993. smalltalk.method({
  3994. selector: 'messageText:',
  3995. fn: function (aString){
  3996. var self=this;
  3997. self['@messageText']=aString;
  3998. return self;}
  3999. }),
  4000. smalltalk.Error);
  4001. smalltalk.addMethod(
  4002. '_signal',
  4003. smalltalk.method({
  4004. selector: 'signal',
  4005. fn: function (){
  4006. var self=this;
  4007. self.context = smalltalk.getThisContext(); self.smalltalkError = true; throw(self);
  4008. return self;}
  4009. }),
  4010. smalltalk.Error);
  4011. smalltalk.addMethod(
  4012. '_context',
  4013. smalltalk.method({
  4014. selector: 'context',
  4015. fn: function (){
  4016. var self=this;
  4017. return self.context;
  4018. return self;}
  4019. }),
  4020. smalltalk.Error);
  4021. smalltalk.addMethod(
  4022. '_signal_',
  4023. smalltalk.method({
  4024. selector: 'signal:',
  4025. fn: function (aString){
  4026. var self=this;
  4027. return (function($rec){smalltalk.send($rec, "_messageText_", [aString]);return smalltalk.send($rec, "_signal", []);})(smalltalk.send(self, "_new", []));
  4028. return self;}
  4029. }),
  4030. smalltalk.Error.klass);
  4031. smalltalk.addClass('MethodContext', smalltalk.Object, [], 'Kernel');
  4032. smalltalk.addMethod(
  4033. '_receiver',
  4034. smalltalk.method({
  4035. selector: 'receiver',
  4036. fn: function (){
  4037. var self=this;
  4038. return self.receiver;
  4039. return self;}
  4040. }),
  4041. smalltalk.MethodContext);
  4042. smalltalk.addMethod(
  4043. '_selector',
  4044. smalltalk.method({
  4045. selector: 'selector',
  4046. fn: function (){
  4047. var self=this;
  4048. return smalltalk.convertSelector(self.selector);
  4049. return self;}
  4050. }),
  4051. smalltalk.MethodContext);
  4052. smalltalk.addMethod(
  4053. '_home',
  4054. smalltalk.method({
  4055. selector: 'home',
  4056. fn: function (){
  4057. var self=this;
  4058. return self.homeContext;
  4059. return self;}
  4060. }),
  4061. smalltalk.MethodContext);
  4062. smalltalk.addMethod(
  4063. '_temps',
  4064. smalltalk.method({
  4065. selector: 'temps',
  4066. fn: function (){
  4067. var self=this;
  4068. return self.temps;
  4069. return self;}
  4070. }),
  4071. smalltalk.MethodContext);
  4072. smalltalk.addMethod(
  4073. '_printString',
  4074. smalltalk.method({
  4075. selector: 'printString',
  4076. fn: function (){
  4077. var self=this;
  4078. return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_printString", [], smalltalk.Object), "__comma", [unescape("%28")]), "__comma", [smalltalk.send(self, "_asString", [])]), "__comma", [unescape("%29")]);
  4079. return self;}
  4080. }),
  4081. smalltalk.MethodContext);
  4082. smalltalk.addMethod(
  4083. '_asString',
  4084. smalltalk.method({
  4085. selector: 'asString',
  4086. fn: function (){
  4087. var self=this;
  4088. return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_receiver", []), "_class", []), "_printString", []), "__comma", [unescape("%20%3E%3E%20")]), "__comma", [smalltalk.send(self, "_selector", [])]);
  4089. return self;}
  4090. }),
  4091. smalltalk.MethodContext);
  4092. smalltalk.addClass('Association', smalltalk.Object, ['key', 'value'], 'Kernel');
  4093. smalltalk.addMethod(
  4094. '__eq',
  4095. smalltalk.method({
  4096. selector: '=',
  4097. fn: function (anAssociation){
  4098. var self=this;
  4099. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(anAssociation, "_class", [])]), "_and_", [(function(){return smalltalk.send(smalltalk.send(smalltalk.send(self, "_key", []), "__eq", [smalltalk.send(anAssociation, "_key", [])]), "_and_", [(function(){return smalltalk.send(smalltalk.send(self, "_value", []), "__eq", [smalltalk.send(anAssociation, "_value", [])]);})]);})]);
  4100. return self;}
  4101. }),
  4102. smalltalk.Association);
  4103. smalltalk.addMethod(
  4104. '_key_',
  4105. smalltalk.method({
  4106. selector: 'key:',
  4107. fn: function (aKey){
  4108. var self=this;
  4109. self['@key']=aKey;
  4110. return self;}
  4111. }),
  4112. smalltalk.Association);
  4113. smalltalk.addMethod(
  4114. '_key',
  4115. smalltalk.method({
  4116. selector: 'key',
  4117. fn: function (){
  4118. var self=this;
  4119. return self['@key'];
  4120. return self;}
  4121. }),
  4122. smalltalk.Association);
  4123. smalltalk.addMethod(
  4124. '_value_',
  4125. smalltalk.method({
  4126. selector: 'value:',
  4127. fn: function (aValue){
  4128. var self=this;
  4129. self['@value']=aValue;
  4130. return self;}
  4131. }),
  4132. smalltalk.Association);
  4133. smalltalk.addMethod(
  4134. '_value',
  4135. smalltalk.method({
  4136. selector: 'value',
  4137. fn: function (){
  4138. var self=this;
  4139. return self['@value'];
  4140. return self;}
  4141. }),
  4142. smalltalk.Association);
  4143. smalltalk.addMethod(
  4144. '_key_value_',
  4145. smalltalk.method({
  4146. selector: 'key:value:',
  4147. fn: function (aKey, aValue){
  4148. var self=this;
  4149. return (function($rec){smalltalk.send($rec, "_key_", [aKey]);smalltalk.send($rec, "_value_", [aValue]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  4150. return self;}
  4151. }),
  4152. smalltalk.Association.klass);
  4153. smalltalk.addClass('Dictionary', smalltalk.Collection, ['keys'], 'Kernel');
  4154. smalltalk.addMethod(
  4155. '__eq',
  4156. smalltalk.method({
  4157. selector: '=',
  4158. fn: function (aDictionary){
  4159. var self=this;
  4160. try{((($receiver = smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(aDictionary, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})]));
  4161. ((($receiver = smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [smalltalk.send(aDictionary, "_size", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return false}})})();})]));
  4162. (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return smalltalk.send(smalltalk.send(self, "_associations", []), "__eq", [smalltalk.send(aDictionary, "_associations", [])])}})})();
  4163. return self;
  4164. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  4165. }),
  4166. smalltalk.Dictionary);
  4167. smalltalk.addMethod(
  4168. '_shallowCopy',
  4169. smalltalk.method({
  4170. selector: 'shallowCopy',
  4171. fn: function (){
  4172. var self=this;
  4173. var copy=nil;
  4174. copy=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  4175. smalltalk.send(self, "_associationsDo_", [(function(each){return smalltalk.send(copy, "_at_put_", [smalltalk.send(each, "_key", []), smalltalk.send(each, "_value", [])]);})]);
  4176. return copy;
  4177. return self;}
  4178. }),
  4179. smalltalk.Dictionary);
  4180. smalltalk.addMethod(
  4181. '_initialize',
  4182. smalltalk.method({
  4183. selector: 'initialize',
  4184. fn: function (){
  4185. var self=this;
  4186. smalltalk.send(self, "_initialize", [], smalltalk.Collection);
  4187. self['@keys']=[];
  4188. return self;}
  4189. }),
  4190. smalltalk.Dictionary);
  4191. smalltalk.addMethod(
  4192. '_size',
  4193. smalltalk.method({
  4194. selector: 'size',
  4195. fn: function (){
  4196. var self=this;
  4197. return smalltalk.send(self['@keys'], "_size", []);
  4198. return self;}
  4199. }),
  4200. smalltalk.Dictionary);
  4201. smalltalk.addMethod(
  4202. '_associations',
  4203. smalltalk.method({
  4204. selector: 'associations',
  4205. fn: function (){
  4206. var self=this;
  4207. var associations=nil;
  4208. associations=[];
  4209. smalltalk.send(self['@keys'], "_do_", [(function(each){return smalltalk.send(associations, "_add_", [smalltalk.send((smalltalk.Association || Association), "_key_value_", [each, smalltalk.send(self, "_at_", [each])])]);})]);
  4210. return associations;
  4211. return self;}
  4212. }),
  4213. smalltalk.Dictionary);
  4214. smalltalk.addMethod(
  4215. '_keys',
  4216. smalltalk.method({
  4217. selector: 'keys',
  4218. fn: function (){
  4219. var self=this;
  4220. return smalltalk.send(self['@keys'], "_copy", []);
  4221. return self;}
  4222. }),
  4223. smalltalk.Dictionary);
  4224. smalltalk.addMethod(
  4225. '_values',
  4226. smalltalk.method({
  4227. selector: 'values',
  4228. fn: function (){
  4229. var self=this;
  4230. return smalltalk.send(self['@keys'], "_collect_", [(function(each){return smalltalk.send(self, "_at_", [each]);})]);
  4231. return self;}
  4232. }),
  4233. smalltalk.Dictionary);
  4234. smalltalk.addMethod(
  4235. '_at_put_',
  4236. smalltalk.method({
  4237. selector: 'at:put:',
  4238. fn: function (aKey, aValue){
  4239. var self=this;
  4240. ((($receiver = smalltalk.send(self['@keys'], "_includes_", [aKey])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(self['@keys'], "_add_", [aKey]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(self['@keys'], "_add_", [aKey]);})]));
  4241. return smalltalk.send(self, "_basicAt_put_", [aKey, aValue]);
  4242. return self;}
  4243. }),
  4244. smalltalk.Dictionary);
  4245. smalltalk.addMethod(
  4246. '_at_ifAbsent_',
  4247. smalltalk.method({
  4248. selector: 'at:ifAbsent:',
  4249. fn: function (aKey, aBlock){
  4250. var self=this;
  4251. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_keys", []), "_includes_", [aKey]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self, "_basicAt_", [aKey]);}), aBlock]);
  4252. return self;}
  4253. }),
  4254. smalltalk.Dictionary);
  4255. smalltalk.addMethod(
  4256. '_at_ifAbsentPut_',
  4257. smalltalk.method({
  4258. selector: 'at:ifAbsentPut:',
  4259. fn: function (aKey, aBlock){
  4260. var self=this;
  4261. return smalltalk.send(self, "_at_ifAbsent_", [aKey, (function(){return smalltalk.send(self, "_at_put_", [aKey, smalltalk.send(aBlock, "_value", [])]);})]);
  4262. return self;}
  4263. }),
  4264. smalltalk.Dictionary);
  4265. smalltalk.addMethod(
  4266. '_at_ifPresent_',
  4267. smalltalk.method({
  4268. selector: 'at:ifPresent:',
  4269. fn: function (aKey, aBlock){
  4270. var self=this;
  4271. return (($receiver = smalltalk.send(self, "_basicAt_", [aKey])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_at_", [aKey])]);})() : nil;
  4272. return self;}
  4273. }),
  4274. smalltalk.Dictionary);
  4275. smalltalk.addMethod(
  4276. '_at_ifPresent_ifAbsent_',
  4277. smalltalk.method({
  4278. selector: 'at:ifPresent:ifAbsent:',
  4279. fn: function (aKey, aBlock, anotherBlock){
  4280. var self=this;
  4281. return smalltalk.send(smalltalk.send(self, "_basicAt_", [aKey]), "_ifNil_ifNotNil_", [anotherBlock, (function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_at_", [aKey])]);})]);
  4282. return self;}
  4283. }),
  4284. smalltalk.Dictionary);
  4285. smalltalk.addMethod(
  4286. '_add_',
  4287. smalltalk.method({
  4288. selector: 'add:',
  4289. fn: function (anAssociation){
  4290. var self=this;
  4291. smalltalk.send(self, "_at_put_", [smalltalk.send(anAssociation, "_key", []), smalltalk.send(anAssociation, "_value", [])]);
  4292. return self;}
  4293. }),
  4294. smalltalk.Dictionary);
  4295. smalltalk.addMethod(
  4296. '_addAll_',
  4297. smalltalk.method({
  4298. selector: 'addAll:',
  4299. fn: function (aDictionary){
  4300. var self=this;
  4301. smalltalk.send(self, "_addAll_", [smalltalk.send(aDictionary, "_associations", [])], smalltalk.Collection);
  4302. return aDictionary;
  4303. return self;}
  4304. }),
  4305. smalltalk.Dictionary);
  4306. smalltalk.addMethod(
  4307. '__comma',
  4308. smalltalk.method({
  4309. selector: ',',
  4310. fn: function (aCollection){
  4311. var self=this;
  4312. smalltalk.send(self, "_shouldNotImplement", []);
  4313. return self;}
  4314. }),
  4315. smalltalk.Dictionary);
  4316. smalltalk.addMethod(
  4317. '_copyFrom_to_',
  4318. smalltalk.method({
  4319. selector: 'copyFrom:to:',
  4320. fn: function (anIndex, anotherIndex){
  4321. var self=this;
  4322. smalltalk.send(self, "_shouldNotImplement", []);
  4323. return self;}
  4324. }),
  4325. smalltalk.Dictionary);
  4326. smalltalk.addMethod(
  4327. '_associationsDo_',
  4328. smalltalk.method({
  4329. selector: 'associationsDo:',
  4330. fn: function (aBlock){
  4331. var self=this;
  4332. smalltalk.send(smalltalk.send(self, "_associations", []), "_do_", [aBlock]);
  4333. return self;}
  4334. }),
  4335. smalltalk.Dictionary);
  4336. smalltalk.addMethod(
  4337. '_keysAndValuesDo_',
  4338. smalltalk.method({
  4339. selector: 'keysAndValuesDo:',
  4340. fn: function (aBlock){
  4341. var self=this;
  4342. smalltalk.send(self, "_associationsDo_", [(function(each){return smalltalk.send(aBlock, "_value_value_", [smalltalk.send(each, "_key", []), smalltalk.send(each, "_value", [])]);})]);
  4343. return self;}
  4344. }),
  4345. smalltalk.Dictionary);
  4346. smalltalk.addMethod(
  4347. '_do_',
  4348. smalltalk.method({
  4349. selector: 'do:',
  4350. fn: function (aBlock){
  4351. var self=this;
  4352. smalltalk.send(smalltalk.send(self, "_values", []), "_do_", [aBlock]);
  4353. return self;}
  4354. }),
  4355. smalltalk.Dictionary);
  4356. smalltalk.addMethod(
  4357. '_select_',
  4358. smalltalk.method({
  4359. selector: 'select:',
  4360. fn: function (aBlock){
  4361. var self=this;
  4362. var newDict=nil;
  4363. newDict=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  4364. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return ((($receiver = smalltalk.send(aBlock, "_value_", [value])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(newDict, "_at_put_", [key, value]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(newDict, "_at_put_", [key, value]);})]));})]);
  4365. return newDict;
  4366. return self;}
  4367. }),
  4368. smalltalk.Dictionary);
  4369. smalltalk.addMethod(
  4370. '_collect_',
  4371. smalltalk.method({
  4372. selector: 'collect:',
  4373. fn: function (aBlock){
  4374. var self=this;
  4375. var newDict=nil;
  4376. newDict=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  4377. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(newDict, "_at_put_", [key, smalltalk.send(aBlock, "_value_", [value])]);})]);
  4378. return newDict;
  4379. return self;}
  4380. }),
  4381. smalltalk.Dictionary);
  4382. smalltalk.addMethod(
  4383. '_detect_ifNone_',
  4384. smalltalk.method({
  4385. selector: 'detect:ifNone:',
  4386. fn: function (aBlock, anotherBlock){
  4387. var self=this;
  4388. return smalltalk.send(smalltalk.send(self, "_values", []), "_detect_ifNone_", [aBlock, anotherBlock]);
  4389. return self;}
  4390. }),
  4391. smalltalk.Dictionary);
  4392. smalltalk.addMethod(
  4393. '_includes_',
  4394. smalltalk.method({
  4395. selector: 'includes:',
  4396. fn: function (anObject){
  4397. var self=this;
  4398. return smalltalk.send(smalltalk.send(self, "_values", []), "_includes_", [anObject]);
  4399. return self;}
  4400. }),
  4401. smalltalk.Dictionary);
  4402. smalltalk.addMethod(
  4403. '_remove_',
  4404. smalltalk.method({
  4405. selector: 'remove:',
  4406. fn: function (aKey){
  4407. var self=this;
  4408. smalltalk.send(self, "_removeKey_", [aKey]);
  4409. return self;}
  4410. }),
  4411. smalltalk.Dictionary);
  4412. smalltalk.addMethod(
  4413. '_removeKey_',
  4414. smalltalk.method({
  4415. selector: 'removeKey:',
  4416. fn: function (aKey){
  4417. var self=this;
  4418. smalltalk.send(self['@keys'], "_remove_", [aKey]);
  4419. return self;}
  4420. }),
  4421. smalltalk.Dictionary);
  4422. smalltalk.addMethod(
  4423. '_at_',
  4424. smalltalk.method({
  4425. selector: 'at:',
  4426. fn: function (aKey){
  4427. var self=this;
  4428. return smalltalk.send(self, "_at_ifAbsent_", [aKey, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  4429. return self;}
  4430. }),
  4431. smalltalk.Dictionary);
  4432. smalltalk.addMethod(
  4433. '_asJSONObject',
  4434. smalltalk.method({
  4435. selector: 'asJSONObject',
  4436. fn: function (){
  4437. var self=this;
  4438. var object=nil;
  4439. object=smalltalk.send((smalltalk.Object || Object), "_new", []);
  4440. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(object, "_basicAt_put_", [key, smalltalk.send(value, "_asJSONObject", [])]);})]);
  4441. return object;
  4442. return self;}
  4443. }),
  4444. smalltalk.Dictionary);
  4445. smalltalk.addMethod(
  4446. '_printString',
  4447. smalltalk.method({
  4448. selector: 'printString',
  4449. fn: function (){
  4450. var self=this;
  4451. return smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(aStream){(function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(self, "_printString", [], smalltalk.Collection)]);return smalltalk.send($rec, "_nextPutAll_", [unescape("%28")]);})(aStream);smalltalk.send(smalltalk.send(self, "_associations", []), "_do_separatedBy_", [(function(anAssociation){return (function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(smalltalk.send(anAssociation, "_key", []), "_printString", [])]);smalltalk.send($rec, "_nextPutAll_", [unescape("%20-%3E%20")]);return smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(smalltalk.send(anAssociation, "_value", []), "_printString", [])]);})(aStream);}), (function(){return smalltalk.send(aStream, "_nextPutAll_", [unescape("%20%2C%20")]);})]);return smalltalk.send(aStream, "_nextPutAll_", [unescape("%29")]);})]);
  4452. return self;}
  4453. }),
  4454. smalltalk.Dictionary);
  4455. smalltalk.addMethod(
  4456. '_fromPairs_',
  4457. smalltalk.method({
  4458. selector: 'fromPairs:',
  4459. fn: function (aCollection){
  4460. var self=this;
  4461. var dict=nil;
  4462. dict=smalltalk.send(self, "_new", []);
  4463. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(dict, "_add_", [each]);})]);
  4464. return dict;
  4465. return self;}
  4466. }),
  4467. smalltalk.Dictionary.klass);
  4468. smalltalk.addClass('ClassBuilder', smalltalk.Object, [], 'Kernel');
  4469. smalltalk.addMethod(
  4470. '_superclass_subclass_',
  4471. smalltalk.method({
  4472. selector: 'superclass:subclass:',
  4473. fn: function (aClass, aString){
  4474. var self=this;
  4475. return smalltalk.send(self, "_superclass_subclass_instanceVariableNames_package_", [aClass, aString, "", nil]);
  4476. return self;}
  4477. }),
  4478. smalltalk.ClassBuilder);
  4479. smalltalk.addMethod(
  4480. '_class_instanceVariableNames_',
  4481. smalltalk.method({
  4482. selector: 'class:instanceVariableNames:',
  4483. fn: function (aClass, aString){
  4484. var self=this;
  4485. ((($receiver = smalltalk.send(aClass, "_isMetaclass", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(self, "_error_", [smalltalk.send(smalltalk.send(aClass, "_name", []), "__comma", [" is not a metaclass"])]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(self, "_error_", [smalltalk.send(smalltalk.send(aClass, "_name", []), "__comma", [" is not a metaclass"])]);})]));
  4486. smalltalk.send(aClass, "_basicAt_put_", ["iVarNames", smalltalk.send(self, "_instanceVariableNamesFor_", [aString])]);
  4487. smalltalk.send(self, "_setupClass_", [aClass]);
  4488. return self;}
  4489. }),
  4490. smalltalk.ClassBuilder);
  4491. smalltalk.addMethod(
  4492. '_instanceVariableNamesFor_',
  4493. smalltalk.method({
  4494. selector: 'instanceVariableNamesFor:',
  4495. fn: function (aString){
  4496. var self=this;
  4497. return smalltalk.send(smalltalk.send(aString, "_tokenize_", [" "]), "_reject_", [(function(each){return smalltalk.send(each, "_isEmpty", []);})]);
  4498. return self;}
  4499. }),
  4500. smalltalk.ClassBuilder);
  4501. smalltalk.addMethod(
  4502. '_addSubclassOf_named_instanceVariableNames_',
  4503. smalltalk.method({
  4504. selector: 'addSubclassOf:named:instanceVariableNames:',
  4505. fn: function (aClass, aString, aCollection){
  4506. var self=this;
  4507. smalltalk.addClass(aString, aClass, aCollection);
  4508. return smalltalk[aString];
  4509. return self;}
  4510. }),
  4511. smalltalk.ClassBuilder);
  4512. smalltalk.addMethod(
  4513. '_setupClass_',
  4514. smalltalk.method({
  4515. selector: 'setupClass:',
  4516. fn: function (aClass){
  4517. var self=this;
  4518. smalltalk.init(aClass);;
  4519. return self;}
  4520. }),
  4521. smalltalk.ClassBuilder);
  4522. smalltalk.addMethod(
  4523. '_superclass_subclass_instanceVariableNames_module_',
  4524. smalltalk.method({
  4525. selector: 'superclass:subclass:instanceVariableNames:module:',
  4526. fn: function (aClass, aString, aString2, aString3){
  4527. var self=this;
  4528. var newClass=nil;
  4529. newClass=smalltalk.send(self, "_addSubclassOf_named_instanceVariableNames_module_", [aClass, aString, smalltalk.send(self, "_instanceVariableNamesFor_", [aString2]), (($receiver = aString3) == nil || $receiver == undefined) ? (function(){return "unclassified";})() : $receiver]);
  4530. smalltalk.send(self, "_setupClass_", [newClass]);
  4531. return self;}
  4532. }),
  4533. smalltalk.ClassBuilder);
  4534. smalltalk.addMethod(
  4535. '_addSubclassOf_named_instanceVariableNames_module_',
  4536. smalltalk.method({
  4537. selector: 'addSubclassOf:named:instanceVariableNames:module:',
  4538. fn: function (aClass, aString, aCollection, moduleName){
  4539. var self=this;
  4540. smalltalk.addClass(aString, aClass, aCollection, moduleName);
  4541. return smalltalk[aString];
  4542. return self;}
  4543. }),
  4544. smalltalk.ClassBuilder);
  4545. smalltalk.addMethod(
  4546. '_superclass_subclass_instanceVariableNames_package_',
  4547. smalltalk.method({
  4548. selector: 'superclass:subclass:instanceVariableNames:package:',
  4549. fn: function (aClass, aString, aString2, aString3){
  4550. var self=this;
  4551. var newClass=nil;
  4552. newClass=smalltalk.send(self, "_addSubclassOf_named_instanceVariableNames_package_", [aClass, aString, smalltalk.send(self, "_instanceVariableNamesFor_", [aString2]), (($receiver = aString3) == nil || $receiver == undefined) ? (function(){return "unclassified";})() : $receiver]);
  4553. smalltalk.send(self, "_setupClass_", [newClass]);
  4554. return self;}
  4555. }),
  4556. smalltalk.ClassBuilder);
  4557. smalltalk.addMethod(
  4558. '_addSubclassOf_named_instanceVariableNames_package_',
  4559. smalltalk.method({
  4560. selector: 'addSubclassOf:named:instanceVariableNames:package:',
  4561. fn: function (aClass, aString, aCollection, packageName){
  4562. var self=this;
  4563. smalltalk.addClass(aString, aClass, aCollection, packageName);
  4564. return smalltalk[aString];
  4565. return self;}
  4566. }),
  4567. smalltalk.ClassBuilder);
  4568. smalltalk.addClass('ClassCategoryReader', smalltalk.Object, ['class', 'category', 'chunkParser'], 'Kernel');
  4569. smalltalk.addMethod(
  4570. '_initialize',
  4571. smalltalk.method({
  4572. selector: 'initialize',
  4573. fn: function (){
  4574. var self=this;
  4575. smalltalk.send(self, "_initialize", [], smalltalk.Object);
  4576. self['@chunkParser']=smalltalk.send((smalltalk.ChunkParser || ChunkParser), "_new", []);
  4577. return self;}
  4578. }),
  4579. smalltalk.ClassCategoryReader);
  4580. smalltalk.addMethod(
  4581. '_class_category_',
  4582. smalltalk.method({
  4583. selector: 'class:category:',
  4584. fn: function (aClass, aString){
  4585. var self=this;
  4586. self['@class']=aClass;
  4587. self['@category']=aString;
  4588. return self;}
  4589. }),
  4590. smalltalk.ClassCategoryReader);
  4591. smalltalk.addMethod(
  4592. '_scanFrom_',
  4593. smalltalk.method({
  4594. selector: 'scanFrom:',
  4595. fn: function (aChunkParser){
  4596. var self=this;
  4597. var chunk=nil;
  4598. (function(){while(!(function(){chunk=smalltalk.send(aChunkParser, "_nextChunk", []);return smalltalk.send(chunk, "_isEmpty", []);})()) {(function(){return smalltalk.send(self, "_compileMethod_", [chunk]);})()}})();
  4599. return self;}
  4600. }),
  4601. smalltalk.ClassCategoryReader);
  4602. smalltalk.addMethod(
  4603. '_compileMethod_',
  4604. smalltalk.method({
  4605. selector: 'compileMethod:',
  4606. fn: function (aString){
  4607. var self=this;
  4608. var method=nil;
  4609. method=smalltalk.send(smalltalk.send((smalltalk.Compiler || Compiler), "_new", []), "_load_forClass_", [aString, self['@class']]);
  4610. smalltalk.send(method, "_category_", [self['@category']]);
  4611. smalltalk.send(self['@class'], "_addCompiledMethod_", [method]);
  4612. return self;}
  4613. }),
  4614. smalltalk.ClassCategoryReader);
  4615. smalltalk.addClass('Stream', smalltalk.Object, ['collection', 'position', 'streamSize'], 'Kernel');
  4616. smalltalk.addMethod(
  4617. '_collection',
  4618. smalltalk.method({
  4619. selector: 'collection',
  4620. fn: function (){
  4621. var self=this;
  4622. return self['@collection'];
  4623. return self;}
  4624. }),
  4625. smalltalk.Stream);
  4626. smalltalk.addMethod(
  4627. '_setCollection_',
  4628. smalltalk.method({
  4629. selector: 'setCollection:',
  4630. fn: function (aCollection){
  4631. var self=this;
  4632. self['@collection']=aCollection;
  4633. return self;}
  4634. }),
  4635. smalltalk.Stream);
  4636. smalltalk.addMethod(
  4637. '_position',
  4638. smalltalk.method({
  4639. selector: 'position',
  4640. fn: function (){
  4641. var self=this;
  4642. return (($receiver = self['@position']) == nil || $receiver == undefined) ? (function(){return self['@position']=(0);})() : $receiver;
  4643. return self;}
  4644. }),
  4645. smalltalk.Stream);
  4646. smalltalk.addMethod(
  4647. '_position_',
  4648. smalltalk.method({
  4649. selector: 'position:',
  4650. fn: function (anInteger){
  4651. var self=this;
  4652. self['@position']=anInteger;
  4653. return self;}
  4654. }),
  4655. smalltalk.Stream);
  4656. smalltalk.addMethod(
  4657. '_streamSize',
  4658. smalltalk.method({
  4659. selector: 'streamSize',
  4660. fn: function (){
  4661. var self=this;
  4662. return self['@streamSize'];
  4663. return self;}
  4664. }),
  4665. smalltalk.Stream);
  4666. smalltalk.addMethod(
  4667. '_setStreamSize_',
  4668. smalltalk.method({
  4669. selector: 'setStreamSize:',
  4670. fn: function (anInteger){
  4671. var self=this;
  4672. self['@streamSize']=anInteger;
  4673. return self;}
  4674. }),
  4675. smalltalk.Stream);
  4676. smalltalk.addMethod(
  4677. '_contents',
  4678. smalltalk.method({
  4679. selector: 'contents',
  4680. fn: function (){
  4681. var self=this;
  4682. return smalltalk.send(smalltalk.send(self, "_collection", []), "_copyFrom_to_", [(1), smalltalk.send(self, "_streamSize", [])]);
  4683. return self;}
  4684. }),
  4685. smalltalk.Stream);
  4686. smalltalk.addMethod(
  4687. '_size',
  4688. smalltalk.method({
  4689. selector: 'size',
  4690. fn: function (){
  4691. var self=this;
  4692. return smalltalk.send(self, "_streamSize", []);
  4693. return self;}
  4694. }),
  4695. smalltalk.Stream);
  4696. smalltalk.addMethod(
  4697. '_reset',
  4698. smalltalk.method({
  4699. selector: 'reset',
  4700. fn: function (){
  4701. var self=this;
  4702. smalltalk.send(self, "_position_", [(0)]);
  4703. return self;}
  4704. }),
  4705. smalltalk.Stream);
  4706. smalltalk.addMethod(
  4707. '_close',
  4708. smalltalk.method({
  4709. selector: 'close',
  4710. fn: function (){
  4711. var self=this;
  4712. return self;}
  4713. }),
  4714. smalltalk.Stream);
  4715. smalltalk.addMethod(
  4716. '_flush',
  4717. smalltalk.method({
  4718. selector: 'flush',
  4719. fn: function (){
  4720. var self=this;
  4721. return self;}
  4722. }),
  4723. smalltalk.Stream);
  4724. smalltalk.addMethod(
  4725. '_resetContents',
  4726. smalltalk.method({
  4727. selector: 'resetContents',
  4728. fn: function (){
  4729. var self=this;
  4730. smalltalk.send(self, "_reset", []);
  4731. smalltalk.send(self, "_setStreamSize_", [(0)]);
  4732. return self;}
  4733. }),
  4734. smalltalk.Stream);
  4735. smalltalk.addMethod(
  4736. '_do_',
  4737. smalltalk.method({
  4738. selector: 'do:',
  4739. fn: function (aBlock){
  4740. var self=this;
  4741. (function(){while(!(function(){return smalltalk.send(self, "_atEnd", []);})()) {(function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_next", [])]);})()}})();
  4742. return self;}
  4743. }),
  4744. smalltalk.Stream);
  4745. smalltalk.addMethod(
  4746. '_setToEnd',
  4747. smalltalk.method({
  4748. selector: 'setToEnd',
  4749. fn: function (){
  4750. var self=this;
  4751. smalltalk.send(self, "_position_", [smalltalk.send(self, "_size", [])]);
  4752. return self;}
  4753. }),
  4754. smalltalk.Stream);
  4755. smalltalk.addMethod(
  4756. '_skip_',
  4757. smalltalk.method({
  4758. selector: 'skip:',
  4759. fn: function (anInteger){
  4760. var self=this;
  4761. smalltalk.send(self, "_position_", [smalltalk.send(((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +anInteger : smalltalk.send($receiver, "__plus", [anInteger])), "_min_max_", [smalltalk.send(self, "_size", []), (0)])]);
  4762. return self;}
  4763. }),
  4764. smalltalk.Stream);
  4765. smalltalk.addMethod(
  4766. '_next',
  4767. smalltalk.method({
  4768. selector: 'next',
  4769. fn: function (){
  4770. var self=this;
  4771. smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);
  4772. return smalltalk.send(self['@collection'], "_at_", [smalltalk.send(self, "_position", [])]);
  4773. return self;}
  4774. }),
  4775. smalltalk.Stream);
  4776. smalltalk.addMethod(
  4777. '_next_',
  4778. smalltalk.method({
  4779. selector: 'next:',
  4780. fn: function (anInteger){
  4781. var self=this;
  4782. var tempCollection=nil;
  4783. tempCollection=smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_class", []), "_new", []);
  4784. smalltalk.send(anInteger, "_timesRepeat_", [(function(){return ((($receiver = smalltalk.send(self, "_atEnd", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(tempCollection, "_add_", [smalltalk.send(self, "_next", [])]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(tempCollection, "_add_", [smalltalk.send(self, "_next", [])]);})]));})]);
  4785. return tempCollection;
  4786. return self;}
  4787. }),
  4788. smalltalk.Stream);
  4789. smalltalk.addMethod(
  4790. '_nextPut_',
  4791. smalltalk.method({
  4792. selector: 'nextPut:',
  4793. fn: function (anObject){
  4794. var self=this;
  4795. smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);
  4796. smalltalk.send(smalltalk.send(self, "_collection", []), "_at_put_", [smalltalk.send(self, "_position", []), anObject]);
  4797. smalltalk.send(self, "_setStreamSize_", [smalltalk.send(smalltalk.send(self, "_streamSize", []), "_max_", [smalltalk.send(self, "_position", [])])]);
  4798. return self;}
  4799. }),
  4800. smalltalk.Stream);
  4801. smalltalk.addMethod(
  4802. '_nextPutAll_',
  4803. smalltalk.method({
  4804. selector: 'nextPutAll:',
  4805. fn: function (aCollection){
  4806. var self=this;
  4807. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(self, "_nextPut_", [each]);})]);
  4808. return self;}
  4809. }),
  4810. smalltalk.Stream);
  4811. smalltalk.addMethod(
  4812. '_peek',
  4813. smalltalk.method({
  4814. selector: 'peek',
  4815. fn: function (){
  4816. var self=this;
  4817. return ((($receiver = smalltalk.send(self, "_atEnd", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(smalltalk.send(self, "_collection", []), "_at_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(smalltalk.send(self, "_collection", []), "_at_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);})]));
  4818. return self;}
  4819. }),
  4820. smalltalk.Stream);
  4821. smalltalk.addMethod(
  4822. '_atEnd',
  4823. smalltalk.method({
  4824. selector: 'atEnd',
  4825. fn: function (){
  4826. var self=this;
  4827. return smalltalk.send(smalltalk.send(self, "_position", []), "__eq", [smalltalk.send(self, "_size", [])]);
  4828. return self;}
  4829. }),
  4830. smalltalk.Stream);
  4831. smalltalk.addMethod(
  4832. '_atStart',
  4833. smalltalk.method({
  4834. selector: 'atStart',
  4835. fn: function (){
  4836. var self=this;
  4837. return smalltalk.send(smalltalk.send(self, "_position", []), "__eq", [(0)]);
  4838. return self;}
  4839. }),
  4840. smalltalk.Stream);
  4841. smalltalk.addMethod(
  4842. '_isEmpty',
  4843. smalltalk.method({
  4844. selector: 'isEmpty',
  4845. fn: function (){
  4846. var self=this;
  4847. return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [(0)]);
  4848. return self;}
  4849. }),
  4850. smalltalk.Stream);
  4851. smalltalk.addMethod(
  4852. '_on_',
  4853. smalltalk.method({
  4854. selector: 'on:',
  4855. fn: function (aCollection){
  4856. var self=this;
  4857. return (function($rec){smalltalk.send($rec, "_setCollection_", [aCollection]);smalltalk.send($rec, "_setStreamSize_", [smalltalk.send(aCollection, "_size", [])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  4858. return self;}
  4859. }),
  4860. smalltalk.Stream.klass);
  4861. smalltalk.addClass('StringStream', smalltalk.Stream, [], 'Kernel');
  4862. smalltalk.addMethod(
  4863. '_next_',
  4864. smalltalk.method({
  4865. selector: 'next:',
  4866. fn: function (anInteger){
  4867. var self=this;
  4868. var tempCollection=nil;
  4869. tempCollection=smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_class", []), "_new", []);
  4870. smalltalk.send(anInteger, "_timesRepeat_", [(function(){return ((($receiver = smalltalk.send(self, "_atEnd", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return tempCollection=smalltalk.send(tempCollection, "__comma", [smalltalk.send(self, "_next", [])]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return tempCollection=smalltalk.send(tempCollection, "__comma", [smalltalk.send(self, "_next", [])]);})]));})]);
  4871. return tempCollection;
  4872. return self;}
  4873. }),
  4874. smalltalk.StringStream);
  4875. smalltalk.addMethod(
  4876. '_nextPut_',
  4877. smalltalk.method({
  4878. selector: 'nextPut:',
  4879. fn: function (aString){
  4880. var self=this;
  4881. smalltalk.send(self, "_nextPutAll_", [aString]);
  4882. return self;}
  4883. }),
  4884. smalltalk.StringStream);
  4885. smalltalk.addMethod(
  4886. '_nextPutAll_',
  4887. smalltalk.method({
  4888. selector: 'nextPutAll:',
  4889. fn: function (aString){
  4890. var self=this;
  4891. smalltalk.send(self, "_setCollection_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_copyFrom_to_", [(1), smalltalk.send(self, "_position", [])]), "__comma", [aString]), "__comma", [smalltalk.send(smalltalk.send(self, "_collection", []), "_copyFrom_to_", [((($receiver = ((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))).klass === smalltalk.Number) ? $receiver +smalltalk.send(aString, "_size", []) : smalltalk.send($receiver, "__plus", [smalltalk.send(aString, "_size", [])])), smalltalk.send(smalltalk.send(self, "_collection", []), "_size", [])])])]);
  4892. smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +smalltalk.send(aString, "_size", []) : smalltalk.send($receiver, "__plus", [smalltalk.send(aString, "_size", [])]))]);
  4893. smalltalk.send(self, "_setStreamSize_", [smalltalk.send(smalltalk.send(self, "_streamSize", []), "_max_", [smalltalk.send(self, "_position", [])])]);
  4894. return self;}
  4895. }),
  4896. smalltalk.StringStream);
  4897. smalltalk.addMethod(
  4898. '_cr',
  4899. smalltalk.method({
  4900. selector: 'cr',
  4901. fn: function (){
  4902. var self=this;
  4903. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_cr", [])]);
  4904. return self;}
  4905. }),
  4906. smalltalk.StringStream);
  4907. smalltalk.addMethod(
  4908. '_crlf',
  4909. smalltalk.method({
  4910. selector: 'crlf',
  4911. fn: function (){
  4912. var self=this;
  4913. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_crlf", [])]);
  4914. return self;}
  4915. }),
  4916. smalltalk.StringStream);
  4917. smalltalk.addMethod(
  4918. '_lf',
  4919. smalltalk.method({
  4920. selector: 'lf',
  4921. fn: function (){
  4922. var self=this;
  4923. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_lf", [])]);
  4924. return self;}
  4925. }),
  4926. smalltalk.StringStream);
  4927. smalltalk.addMethod(
  4928. '_space',
  4929. smalltalk.method({
  4930. selector: 'space',
  4931. fn: function (){
  4932. var self=this;
  4933. smalltalk.send(self, "_nextPut_", [" "]);
  4934. return self;}
  4935. }),
  4936. smalltalk.StringStream);
  4937. smalltalk.addClass('ClassCommentReader', smalltalk.Object, ['class', 'chunkParser'], 'Kernel');
  4938. smalltalk.addMethod(
  4939. '_class_',
  4940. smalltalk.method({
  4941. selector: 'class:',
  4942. fn: function (aClass){
  4943. var self=this;
  4944. self['@class']=aClass;
  4945. return self;}
  4946. }),
  4947. smalltalk.ClassCommentReader);
  4948. smalltalk.addMethod(
  4949. '_scanFrom_',
  4950. smalltalk.method({
  4951. selector: 'scanFrom:',
  4952. fn: function (aChunkParser){
  4953. var self=this;
  4954. var chunk=nil;
  4955. chunk=smalltalk.send(aChunkParser, "_nextChunk", []);
  4956. ((($receiver = smalltalk.send(chunk, "_isEmpty", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(self, "_setComment_", [chunk]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(self, "_setComment_", [chunk]);})]));
  4957. return self;}
  4958. }),
  4959. smalltalk.ClassCommentReader);
  4960. smalltalk.addMethod(
  4961. '_initialize',
  4962. smalltalk.method({
  4963. selector: 'initialize',
  4964. fn: function (){
  4965. var self=this;
  4966. smalltalk.send(self, "_initialize", [], smalltalk.Object);
  4967. self['@chunkParser']=smalltalk.send((smalltalk.ChunkParser || ChunkParser), "_new", []);
  4968. return self;}
  4969. }),
  4970. smalltalk.ClassCommentReader);
  4971. smalltalk.addMethod(
  4972. '_setComment_',
  4973. smalltalk.method({
  4974. selector: 'setComment:',
  4975. fn: function (aString){
  4976. var self=this;
  4977. smalltalk.send(self['@class'], "_comment_", [aString]);
  4978. return self;}
  4979. }),
  4980. smalltalk.ClassCommentReader);
  4981. smalltalk.addClass('Random', smalltalk.Object, [], 'Kernel');
  4982. smalltalk.addMethod(
  4983. '_next',
  4984. smalltalk.method({
  4985. selector: 'next',
  4986. fn: function (){
  4987. var self=this;
  4988. return Math.random();
  4989. return self;}
  4990. }),
  4991. smalltalk.Random);
  4992. smalltalk.addMethod(
  4993. '_next_',
  4994. smalltalk.method({
  4995. selector: 'next:',
  4996. fn: function (anInteger){
  4997. var self=this;
  4998. return smalltalk.send(smalltalk.send((1), "_to_", [anInteger]), "_collect_", [(function(each){return smalltalk.send(self, "_next", []);})]);
  4999. return self;}
  5000. }),
  5001. smalltalk.Random);
  5002. smalltalk.addClass('Point', smalltalk.Object, ['x', 'y'], 'Kernel');
  5003. smalltalk.addMethod(
  5004. '_x',
  5005. smalltalk.method({
  5006. selector: 'x',
  5007. fn: function (){
  5008. var self=this;
  5009. return self['@x'];
  5010. return self;}
  5011. }),
  5012. smalltalk.Point);
  5013. smalltalk.addMethod(
  5014. '_y',
  5015. smalltalk.method({
  5016. selector: 'y',
  5017. fn: function (){
  5018. var self=this;
  5019. return self['@y'];
  5020. return self;}
  5021. }),
  5022. smalltalk.Point);
  5023. smalltalk.addMethod(
  5024. '_y_',
  5025. smalltalk.method({
  5026. selector: 'y:',
  5027. fn: function (aNumber){
  5028. var self=this;
  5029. self['@y']=aNumber;
  5030. return self;}
  5031. }),
  5032. smalltalk.Point);
  5033. smalltalk.addMethod(
  5034. '_x_',
  5035. smalltalk.method({
  5036. selector: 'x:',
  5037. fn: function (aNumber){
  5038. var self=this;
  5039. self['@x']=aNumber;
  5040. return self;}
  5041. }),
  5042. smalltalk.Point);
  5043. smalltalk.addMethod(
  5044. '__star',
  5045. smalltalk.method({
  5046. selector: '*',
  5047. fn: function (aPoint){
  5048. var self=this;
  5049. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [((($receiver = smalltalk.send(self, "_x", [])).klass === smalltalk.Number) ? $receiver *smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", []) : smalltalk.send($receiver, "__star", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])])), ((($receiver = smalltalk.send(self, "_y", [])).klass === smalltalk.Number) ? $receiver *smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", []) : smalltalk.send($receiver, "__star", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])]))]);
  5050. return self;}
  5051. }),
  5052. smalltalk.Point);
  5053. smalltalk.addMethod(
  5054. '__plus',
  5055. smalltalk.method({
  5056. selector: '+',
  5057. fn: function (aPoint){
  5058. var self=this;
  5059. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [((($receiver = smalltalk.send(self, "_x", [])).klass === smalltalk.Number) ? $receiver +smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", []) : smalltalk.send($receiver, "__plus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])])), ((($receiver = smalltalk.send(self, "_y", [])).klass === smalltalk.Number) ? $receiver +smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", []) : smalltalk.send($receiver, "__plus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])]))]);
  5060. return self;}
  5061. }),
  5062. smalltalk.Point);
  5063. smalltalk.addMethod(
  5064. '__minus',
  5065. smalltalk.method({
  5066. selector: '-',
  5067. fn: function (aPoint){
  5068. var self=this;
  5069. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [((($receiver = smalltalk.send(self, "_x", [])).klass === smalltalk.Number) ? $receiver -smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", []) : smalltalk.send($receiver, "__minus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])])), ((($receiver = smalltalk.send(self, "_y", [])).klass === smalltalk.Number) ? $receiver -smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", []) : smalltalk.send($receiver, "__minus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])]))]);
  5070. return self;}
  5071. }),
  5072. smalltalk.Point);
  5073. smalltalk.addMethod(
  5074. '__slash',
  5075. smalltalk.method({
  5076. selector: '/',
  5077. fn: function (aPoint){
  5078. var self=this;
  5079. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [((($receiver = smalltalk.send(self, "_x", [])).klass === smalltalk.Number) ? $receiver /smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", []) : smalltalk.send($receiver, "__slash", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])])), ((($receiver = smalltalk.send(self, "_y", [])).klass === smalltalk.Number) ? $receiver /smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", []) : smalltalk.send($receiver, "__slash", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])]))]);
  5080. return self;}
  5081. }),
  5082. smalltalk.Point);
  5083. smalltalk.addMethod(
  5084. '_asPoint',
  5085. smalltalk.method({
  5086. selector: 'asPoint',
  5087. fn: function (){
  5088. var self=this;
  5089. return self;
  5090. return self;}
  5091. }),
  5092. smalltalk.Point);
  5093. smalltalk.addMethod(
  5094. '__eq',
  5095. smalltalk.method({
  5096. selector: '=',
  5097. fn: function (aPoint){
  5098. var self=this;
  5099. return smalltalk.send(smalltalk.send(smalltalk.send(aPoint, "_class", []), "__eq", [smalltalk.send(self, "_class", [])]), "_and_", [(function(){return smalltalk.send(smalltalk.send(smalltalk.send(aPoint, "_x", []), "__eq", [smalltalk.send(self, "_x", [])]), "_&", [smalltalk.send(smalltalk.send(aPoint, "_y", []), "__eq", [smalltalk.send(self, "_y", [])])]);})]);
  5100. return self;}
  5101. }),
  5102. smalltalk.Point);
  5103. smalltalk.addMethod(
  5104. '_x_y_',
  5105. smalltalk.method({
  5106. selector: 'x:y:',
  5107. fn: function (aNumber, anotherNumber){
  5108. var self=this;
  5109. return (function($rec){smalltalk.send($rec, "_x_", [aNumber]);smalltalk.send($rec, "_y_", [anotherNumber]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  5110. return self;}
  5111. }),
  5112. smalltalk.Point.klass);
  5113. smalltalk.addClass('Message', smalltalk.Object, ['selector', 'arguments'], 'Kernel');
  5114. smalltalk.addMethod(
  5115. '_selector',
  5116. smalltalk.method({
  5117. selector: 'selector',
  5118. fn: function (){
  5119. var self=this;
  5120. return self['@selector'];
  5121. return self;}
  5122. }),
  5123. smalltalk.Message);
  5124. smalltalk.addMethod(
  5125. '_selector_',
  5126. smalltalk.method({
  5127. selector: 'selector:',
  5128. fn: function (aString){
  5129. var self=this;
  5130. self['@selector']=aString;
  5131. return self;}
  5132. }),
  5133. smalltalk.Message);
  5134. smalltalk.addMethod(
  5135. '_arguments_',
  5136. smalltalk.method({
  5137. selector: 'arguments:',
  5138. fn: function (anArray){
  5139. var self=this;
  5140. self['@arguments']=anArray;
  5141. return self;}
  5142. }),
  5143. smalltalk.Message);
  5144. smalltalk.addMethod(
  5145. '_arguments',
  5146. smalltalk.method({
  5147. selector: 'arguments',
  5148. fn: function (){
  5149. var self=this;
  5150. return self['@arguments'];
  5151. return self;}
  5152. }),
  5153. smalltalk.Message);
  5154. smalltalk.addMethod(
  5155. '_selector_arguments_',
  5156. smalltalk.method({
  5157. selector: 'selector:arguments:',
  5158. fn: function (aString, anArray){
  5159. var self=this;
  5160. return (function($rec){smalltalk.send($rec, "_selector_", [aString]);smalltalk.send($rec, "_arguments_", [anArray]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  5161. return self;}
  5162. }),
  5163. smalltalk.Message.klass);
  5164. smalltalk.addClass('MessageNotUnderstood', smalltalk.Error, ['message', 'receiver'], 'Kernel');
  5165. smalltalk.addMethod(
  5166. '_message',
  5167. smalltalk.method({
  5168. selector: 'message',
  5169. fn: function (){
  5170. var self=this;
  5171. return self['@message'];
  5172. return self;}
  5173. }),
  5174. smalltalk.MessageNotUnderstood);
  5175. smalltalk.addMethod(
  5176. '_message_',
  5177. smalltalk.method({
  5178. selector: 'message:',
  5179. fn: function (aMessage){
  5180. var self=this;
  5181. self['@message']=aMessage;
  5182. return self;}
  5183. }),
  5184. smalltalk.MessageNotUnderstood);
  5185. smalltalk.addMethod(
  5186. '_receiver',
  5187. smalltalk.method({
  5188. selector: 'receiver',
  5189. fn: function (){
  5190. var self=this;
  5191. return self['@receiver'];
  5192. return self;}
  5193. }),
  5194. smalltalk.MessageNotUnderstood);
  5195. smalltalk.addMethod(
  5196. '_receiver_',
  5197. smalltalk.method({
  5198. selector: 'receiver:',
  5199. fn: function (anObject){
  5200. var self=this;
  5201. self['@receiver']=anObject;
  5202. return self;}
  5203. }),
  5204. smalltalk.MessageNotUnderstood);
  5205. smalltalk.addMethod(
  5206. '_messageText',
  5207. smalltalk.method({
  5208. selector: 'messageText',
  5209. fn: function (){
  5210. var self=this;
  5211. return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_receiver", []), "_asString", []), "__comma", [unescape("%20does%20not%20understand%20%23")]), "__comma", [smalltalk.send(smalltalk.send(self, "_message", []), "_selector", [])]);
  5212. return self;}
  5213. }),
  5214. smalltalk.MessageNotUnderstood);
  5215. smalltalk.addClass('ErrorHandler', smalltalk.Object, [], 'Kernel');
  5216. smalltalk.addMethod(
  5217. '_handleError_',
  5218. smalltalk.method({
  5219. selector: 'handleError:',
  5220. fn: function (anError){
  5221. var self=this;
  5222. (($receiver = smalltalk.send(anError, "_context", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_logErrorContext_", [smalltalk.send(anError, "_context", [])]);})() : nil;
  5223. smalltalk.send(self, "_logError_", [anError]);
  5224. return self;}
  5225. }),
  5226. smalltalk.ErrorHandler);
  5227. smalltalk.addMethod(
  5228. '_logContext_',
  5229. smalltalk.method({
  5230. selector: 'logContext:',
  5231. fn: function (aContext){
  5232. var self=this;
  5233. (($receiver = smalltalk.send(aContext, "_home", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_logContext_", [smalltalk.send(aContext, "_home", [])]);})() : nil;
  5234. smalltalk.send(self, "_log_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(aContext, "_receiver", []), "_asString", []), "__comma", [unescape("%3E%3E")]), "__comma", [smalltalk.send(aContext, "_selector", [])])]);
  5235. return self;}
  5236. }),
  5237. smalltalk.ErrorHandler);
  5238. smalltalk.addMethod(
  5239. '_logErrorContext_',
  5240. smalltalk.method({
  5241. selector: 'logErrorContext:',
  5242. fn: function (aContext){
  5243. var self=this;
  5244. (($receiver = aContext) != nil && $receiver != undefined) ? (function(){return (($receiver = smalltalk.send(aContext, "_home", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_logContext_", [smalltalk.send(aContext, "_home", [])]);})() : nil;})() : nil;
  5245. return self;}
  5246. }),
  5247. smalltalk.ErrorHandler);
  5248. smalltalk.addMethod(
  5249. '_logError_',
  5250. smalltalk.method({
  5251. selector: 'logError:',
  5252. fn: function (anError){
  5253. var self=this;
  5254. smalltalk.send(self, "_log_", [smalltalk.send(anError, "_messageText", [])]);
  5255. return self;}
  5256. }),
  5257. smalltalk.ErrorHandler);
  5258. smalltalk.addMethod(
  5259. '_log_',
  5260. smalltalk.method({
  5261. selector: 'log:',
  5262. fn: function (aString){
  5263. var self=this;
  5264. smalltalk.send((typeof console == 'undefined' ? nil : console), "_log_", [aString]);
  5265. return self;}
  5266. }),
  5267. smalltalk.ErrorHandler);
  5268. smalltalk.ErrorHandler.klass.iVarNames = ['current'];
  5269. smalltalk.addMethod(
  5270. '_current',
  5271. smalltalk.method({
  5272. selector: 'current',
  5273. fn: function (){
  5274. var self=this;
  5275. return (($receiver = self['@current']) == nil || $receiver == undefined) ? (function(){return self['@current']=smalltalk.send(self, "_new", []);})() : $receiver;
  5276. return self;}
  5277. }),
  5278. smalltalk.ErrorHandler.klass);
  5279. smalltalk.addMethod(
  5280. '_initialize',
  5281. smalltalk.method({
  5282. selector: 'initialize',
  5283. fn: function (){
  5284. var self=this;
  5285. smalltalk.send(self, "_register", []);
  5286. return self;}
  5287. }),
  5288. smalltalk.ErrorHandler.klass);
  5289. smalltalk.addMethod(
  5290. '_register',
  5291. smalltalk.method({
  5292. selector: 'register',
  5293. fn: function (){
  5294. var self=this;
  5295. smalltalk.send((smalltalk.ErrorHandler || ErrorHandler), "_setCurrent_", [smalltalk.send(self, "_new", [])]);
  5296. return self;}
  5297. }),
  5298. smalltalk.ErrorHandler.klass);
  5299. smalltalk.addMethod(
  5300. '_setCurrent_',
  5301. smalltalk.method({
  5302. selector: 'setCurrent:',
  5303. fn: function (anHandler){
  5304. var self=this;
  5305. self['@current']=anHandler;
  5306. return self;}
  5307. }),
  5308. smalltalk.ErrorHandler.klass);
  5309. smalltalk.addClass('JSObjectProxy', smalltalk.Object, ['jsObject'], 'Kernel');
  5310. smalltalk.addMethod(
  5311. '_jsObject_',
  5312. smalltalk.method({
  5313. selector: 'jsObject:',
  5314. fn: function (aJSObject){
  5315. var self=this;
  5316. self['@jsObject']=aJSObject;
  5317. return self;}
  5318. }),
  5319. smalltalk.JSObjectProxy);
  5320. smalltalk.addMethod(
  5321. '_jsObject',
  5322. smalltalk.method({
  5323. selector: 'jsObject',
  5324. fn: function (){
  5325. var self=this;
  5326. return self['@jsObject'];
  5327. return self;}
  5328. }),
  5329. smalltalk.JSObjectProxy);
  5330. smalltalk.addMethod(
  5331. '_printString',
  5332. smalltalk.method({
  5333. selector: 'printString',
  5334. fn: function (){
  5335. var self=this;
  5336. return smalltalk.send(smalltalk.send(self, "_jsObject", []), "_toString", []);
  5337. return self;}
  5338. }),
  5339. smalltalk.JSObjectProxy);
  5340. smalltalk.addMethod(
  5341. '_inspectOn_',
  5342. smalltalk.method({
  5343. selector: 'inspectOn:',
  5344. fn: function (anInspector){
  5345. var self=this;
  5346. var variables=nil;
  5347. variables=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []);
  5348. smalltalk.send(variables, "_at_put_", [unescape("%23self"), smalltalk.send(self, "_jsObject", [])]);
  5349. smalltalk.send(anInspector, "_setLabel_", [smalltalk.send(self, "_printString", [])]);
  5350. for(var i in self['@jsObject']) {
  5351. variables._at_put_(i, self['@jsObject'][i]);
  5352. };
  5353. smalltalk.send(anInspector, "_setVariables_", [variables]);
  5354. return self;}
  5355. }),
  5356. smalltalk.JSObjectProxy);
  5357. smalltalk.addMethod(
  5358. '_doesNotUnderstand_',
  5359. smalltalk.method({
  5360. selector: 'doesNotUnderstand:',
  5361. fn: function (aMessage){
  5362. var self=this;
  5363. var obj=nil;
  5364. var selector=nil;
  5365. var jsSelector=nil;
  5366. var arguments=nil;
  5367. obj=smalltalk.send(self, "_jsObject", []);
  5368. selector=smalltalk.send(aMessage, "_selector", []);
  5369. jsSelector=smalltalk.send(selector, "_asJavaScriptSelector", []);
  5370. arguments=smalltalk.send(aMessage, "_arguments", []);
  5371. if(obj[jsSelector]) {return smalltalk.send(obj, jsSelector, arguments)};
  5372. smalltalk.send(self, "_doesNotUnderstand_", [aMessage], smalltalk.Object);
  5373. return self;}
  5374. }),
  5375. smalltalk.JSObjectProxy);
  5376. smalltalk.addMethod(
  5377. '_at_',
  5378. smalltalk.method({
  5379. selector: 'at:',
  5380. fn: function (aString){
  5381. var self=this;
  5382. return self['@jsObject'][aString];
  5383. return self;}
  5384. }),
  5385. smalltalk.JSObjectProxy);
  5386. smalltalk.addMethod(
  5387. '_at_put_',
  5388. smalltalk.method({
  5389. selector: 'at:put:',
  5390. fn: function (aString, anObject){
  5391. var self=this;
  5392. self['@jsObject'][aString] = anObject;
  5393. return self;}
  5394. }),
  5395. smalltalk.JSObjectProxy);
  5396. smalltalk.addMethod(
  5397. '_on_',
  5398. smalltalk.method({
  5399. selector: 'on:',
  5400. fn: function (aJSObject){
  5401. var self=this;
  5402. return (function($rec){smalltalk.send($rec, "_jsObject_", [aJSObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  5403. return self;}
  5404. }),
  5405. smalltalk.JSObjectProxy.klass);
  5406. smalltalk.addClass('Set', smalltalk.Collection, ['elements'], 'Kernel');
  5407. smalltalk.addMethod(
  5408. '_add_',
  5409. smalltalk.method({
  5410. selector: 'add:',
  5411. fn: function (anObject){
  5412. var self=this;
  5413. var found;
  5414. for(var i in self['@elements']) {
  5415. if(anObject == self['@elements'][i]) {
  5416. found = true;
  5417. break;
  5418. }
  5419. }
  5420. if(!found) {self['@elements'].push(anObject)}
  5421. ;
  5422. return self;}
  5423. }),
  5424. smalltalk.Set);
  5425. smalltalk.addMethod(
  5426. '_remove_',
  5427. smalltalk.method({
  5428. selector: 'remove:',
  5429. fn: function (anObject){
  5430. var self=this;
  5431. smalltalk.send(self['@elements'], "_remove_", [anObject]);
  5432. return self;}
  5433. }),
  5434. smalltalk.Set);
  5435. smalltalk.addMethod(
  5436. '_initialize',
  5437. smalltalk.method({
  5438. selector: 'initialize',
  5439. fn: function (){
  5440. var self=this;
  5441. smalltalk.send(self, "_initialize", [], smalltalk.Collection);
  5442. self['@elements']=[];
  5443. return self;}
  5444. }),
  5445. smalltalk.Set);
  5446. smalltalk.addMethod(
  5447. '_size',
  5448. smalltalk.method({
  5449. selector: 'size',
  5450. fn: function (){
  5451. var self=this;
  5452. return smalltalk.send(self['@elements'], "_size", []);
  5453. return self;}
  5454. }),
  5455. smalltalk.Set);
  5456. smalltalk.addMethod(
  5457. '_asArray',
  5458. smalltalk.method({
  5459. selector: 'asArray',
  5460. fn: function (){
  5461. var self=this;
  5462. return smalltalk.send(self['@elements'], "_copy", []);
  5463. return self;}
  5464. }),
  5465. smalltalk.Set);
  5466. smalltalk.addMethod(
  5467. '_detect_ifNone_',
  5468. smalltalk.method({
  5469. selector: 'detect:ifNone:',
  5470. fn: function (aBlock, anotherBlock){
  5471. var self=this;
  5472. return smalltalk.send(self['@elements'], "_detect_ifNone_", [aBlock, anotherBlock]);
  5473. return self;}
  5474. }),
  5475. smalltalk.Set);
  5476. smalltalk.addMethod(
  5477. '_do_',
  5478. smalltalk.method({
  5479. selector: 'do:',
  5480. fn: function (aBlock){
  5481. var self=this;
  5482. smalltalk.send(self['@elements'], "_do_", [aBlock]);
  5483. return self;}
  5484. }),
  5485. smalltalk.Set);
  5486. smalltalk.addMethod(
  5487. '_includes_',
  5488. smalltalk.method({
  5489. selector: 'includes:',
  5490. fn: function (anObject){
  5491. var self=this;
  5492. return smalltalk.send(self['@elements'], "_includes_", [anObject]);
  5493. return self;}
  5494. }),
  5495. smalltalk.Set);
  5496. smalltalk.addMethod(
  5497. '__eq',
  5498. smalltalk.method({
  5499. selector: '=',
  5500. fn: function (aCollection){
  5501. var self=this;
  5502. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(aCollection, "_class", [])]), "_and_", [(function(){return smalltalk.send(self['@elements'], "__eq", [smalltalk.send(aCollection, "_asArray", [])]);})]);
  5503. return self;}
  5504. }),
  5505. smalltalk.Set);