Kernel.deploy.js 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303
  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. array=smalltalk.send((smalltalk.Array || Array), "_new", []);
  1468. 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)]));})]);
  1469. return array;
  1470. return self;}
  1471. }),
  1472. smalltalk.Number);
  1473. smalltalk.addMethod(
  1474. '_timesRepeat_',
  1475. smalltalk.method({
  1476. selector: 'timesRepeat:',
  1477. fn: function (aBlock){
  1478. var self=this;
  1479. var integer=nil;
  1480. var count=nil;
  1481. integer=smalltalk.send(self, "_truncated", []);
  1482. count=(1);
  1483. (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)]));})()}})();
  1484. return self;}
  1485. }),
  1486. smalltalk.Number);
  1487. smalltalk.addMethod(
  1488. '_to_do_',
  1489. smalltalk.method({
  1490. selector: 'to:do:',
  1491. fn: function (stop, aBlock){
  1492. var self=this;
  1493. var nextValue=nil;
  1494. nextValue=self;
  1495. (function(){while((function(){return ((($receiver = nextValue).klass === smalltalk.Number) ? $receiver <=stop : smalltalk.send($receiver, "__lt_eq", [stop]));})()) {(function(){smalltalk.send(aBlock, "_value_", [nextValue]);return nextValue=((($receiver = nextValue).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));})()}})();
  1496. return self;}
  1497. }),
  1498. smalltalk.Number);
  1499. smalltalk.addMethod(
  1500. '_asString',
  1501. smalltalk.method({
  1502. selector: 'asString',
  1503. fn: function (){
  1504. var self=this;
  1505. return smalltalk.send(self, "_printString", []);
  1506. return self;}
  1507. }),
  1508. smalltalk.Number);
  1509. smalltalk.addMethod(
  1510. '_asJavascript',
  1511. smalltalk.method({
  1512. selector: 'asJavascript',
  1513. fn: function (){
  1514. var self=this;
  1515. return smalltalk.send(smalltalk.send(unescape("%28"), "__comma", [smalltalk.send(self, "_printString", [])]), "__comma", [unescape("%29")]);
  1516. return self;}
  1517. }),
  1518. smalltalk.Number);
  1519. smalltalk.addMethod(
  1520. '_printString',
  1521. smalltalk.method({
  1522. selector: 'printString',
  1523. fn: function (){
  1524. var self=this;
  1525. return String(self);
  1526. return self;}
  1527. }),
  1528. smalltalk.Number);
  1529. smalltalk.addMethod(
  1530. '_isNumber',
  1531. smalltalk.method({
  1532. selector: 'isNumber',
  1533. fn: function (){
  1534. var self=this;
  1535. return true;
  1536. return self;}
  1537. }),
  1538. smalltalk.Number);
  1539. smalltalk.addMethod(
  1540. '_atRandom',
  1541. smalltalk.method({
  1542. selector: 'atRandom',
  1543. fn: function (){
  1544. var self=this;
  1545. 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)]));
  1546. return self;}
  1547. }),
  1548. smalltalk.Number);
  1549. smalltalk.addMethod(
  1550. '__at',
  1551. smalltalk.method({
  1552. selector: '@',
  1553. fn: function (aNumber){
  1554. var self=this;
  1555. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [self, aNumber]);
  1556. return self;}
  1557. }),
  1558. smalltalk.Number);
  1559. smalltalk.addMethod(
  1560. '_asPoint',
  1561. smalltalk.method({
  1562. selector: 'asPoint',
  1563. fn: function (){
  1564. var self=this;
  1565. return smalltalk.send((smalltalk.Point || Point), "_x_y_", [self, self]);
  1566. return self;}
  1567. }),
  1568. smalltalk.Number);
  1569. smalltalk.addMethod(
  1570. '_clearInterval',
  1571. smalltalk.method({
  1572. selector: 'clearInterval',
  1573. fn: function (){
  1574. var self=this;
  1575. clearInterval(Number(self));
  1576. return self;}
  1577. }),
  1578. smalltalk.Number);
  1579. smalltalk.addMethod(
  1580. '_asJSONObject',
  1581. smalltalk.method({
  1582. selector: 'asJSONObject',
  1583. fn: function (){
  1584. var self=this;
  1585. return self;
  1586. return self;}
  1587. }),
  1588. smalltalk.Number);
  1589. smalltalk.addMethod(
  1590. '_clearTimeout',
  1591. smalltalk.method({
  1592. selector: 'clearTimeout',
  1593. fn: function (){
  1594. var self=this;
  1595. clearTimeout(Number(self));
  1596. return self;}
  1597. }),
  1598. smalltalk.Number);
  1599. smalltalk.addMethod(
  1600. '_even',
  1601. smalltalk.method({
  1602. selector: 'even',
  1603. fn: function (){
  1604. var self=this;
  1605. return smalltalk.send((0), "__eq", [smalltalk.send(self, "_\\\\", [(2)])]);
  1606. return self;}
  1607. }),
  1608. smalltalk.Number);
  1609. smalltalk.addMethod(
  1610. '_odd',
  1611. smalltalk.method({
  1612. selector: 'odd',
  1613. fn: function (){
  1614. var self=this;
  1615. return smalltalk.send(smalltalk.send(self, "_even", []), "_not", []);
  1616. return self;}
  1617. }),
  1618. smalltalk.Number);
  1619. smalltalk.addMethod(
  1620. '_negated',
  1621. smalltalk.method({
  1622. selector: 'negated',
  1623. fn: function (){
  1624. var self=this;
  1625. return (0) - self;
  1626. return self;}
  1627. }),
  1628. smalltalk.Number);
  1629. smalltalk.addMethod(
  1630. '__eq_eq',
  1631. smalltalk.method({
  1632. selector: '==',
  1633. fn: function (aNumber){
  1634. var self=this;
  1635. 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}})})();})]));
  1636. return Number(self) === Number(aNumber);
  1637. return self;
  1638. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq_eq'){return e.fn()} throw(e)}}
  1639. }),
  1640. smalltalk.Number);
  1641. smalltalk.addMethod(
  1642. '_printShowingDecimalPlaces_',
  1643. smalltalk.method({
  1644. selector: 'printShowingDecimalPlaces:',
  1645. fn: function (placesDesired){
  1646. var self=this;
  1647. return self.toFixed(placesDesired);
  1648. return self;}
  1649. }),
  1650. smalltalk.Number);
  1651. smalltalk.addMethod(
  1652. '_\\',
  1653. smalltalk.method({
  1654. selector: '\\',
  1655. fn: function (aNumber){
  1656. var self=this;
  1657. return self % aNumber;
  1658. return self;}
  1659. }),
  1660. smalltalk.Number);
  1661. smalltalk.addMethod(
  1662. '_to_by_',
  1663. smalltalk.method({
  1664. selector: 'to:by:',
  1665. fn: function (stop, step){
  1666. var self=this;
  1667. var array=nil;
  1668. var value=nil;
  1669. var pos=nil;
  1670. value=self;
  1671. array=smalltalk.send((smalltalk.Array || Array), "_new", []);
  1672. pos=(1);
  1673. ((($receiver = smalltalk.send(step, "__eq", [(0)])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_error_", [unescape("step%20must%20be%20non-zero")]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_error_", [unescape("step%20must%20be%20non-zero")]);})]));
  1674. ((($receiver = ((($receiver = step).klass === smalltalk.Number) ? $receiver <(0) : smalltalk.send($receiver, "__lt", [(0)]))).klass === smalltalk.Boolean) ? ($receiver ? (function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver >=stop : smalltalk.send($receiver, "__gt_eq", [stop]));})()) {(function(){smalltalk.send(array, "_at_put_", [pos, value]);pos=((($receiver = pos).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();})() : (function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver <=stop : smalltalk.send($receiver, "__lt_eq", [stop]));})()) {(function(){smalltalk.send(array, "_at_put_", [pos, value]);pos=((($receiver = pos).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver >=stop : smalltalk.send($receiver, "__gt_eq", [stop]));})()) {(function(){smalltalk.send(array, "_at_put_", [pos, value]);pos=((($receiver = pos).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();}), (function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver <=stop : smalltalk.send($receiver, "__lt_eq", [stop]));})()) {(function(){smalltalk.send(array, "_at_put_", [pos, value]);pos=((($receiver = pos).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();})]));
  1675. return array;
  1676. return self;}
  1677. }),
  1678. smalltalk.Number);
  1679. smalltalk.addMethod(
  1680. '_to_by_do_',
  1681. smalltalk.method({
  1682. selector: 'to:by:do:',
  1683. fn: function (stop, step, aBlock){
  1684. var self=this;
  1685. var value=nil;
  1686. value=self;
  1687. ((($receiver = smalltalk.send(step, "__eq", [(0)])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(self, "_error_", [unescape("step%20must%20be%20non-zero")]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(self, "_error_", [unescape("step%20must%20be%20non-zero")]);})]));
  1688. ((($receiver = ((($receiver = step).klass === smalltalk.Number) ? $receiver <(0) : smalltalk.send($receiver, "__lt", [(0)]))).klass === smalltalk.Boolean) ? ($receiver ? (function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver >=stop : smalltalk.send($receiver, "__gt_eq", [stop]));})()) {(function(){smalltalk.send(aBlock, "_value_", [value]);return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();})() : (function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver <=stop : smalltalk.send($receiver, "__lt_eq", [stop]));})()) {(function(){smalltalk.send(aBlock, "_value_", [value]);return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver >=stop : smalltalk.send($receiver, "__gt_eq", [stop]));})()) {(function(){smalltalk.send(aBlock, "_value_", [value]);return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();}), (function(){return (function(){while((function(){return ((($receiver = value).klass === smalltalk.Number) ? $receiver <=stop : smalltalk.send($receiver, "__lt_eq", [stop]));})()) {(function(){smalltalk.send(aBlock, "_value_", [value]);return value=((($receiver = value).klass === smalltalk.Number) ? $receiver +step : smalltalk.send($receiver, "__plus", [step]));})()}})();})]));
  1689. return self;}
  1690. }),
  1691. smalltalk.Number);
  1692. smalltalk.addMethod(
  1693. '_pi',
  1694. smalltalk.method({
  1695. selector: 'pi',
  1696. fn: function (){
  1697. var self=this;
  1698. return Math.PI;
  1699. return self;}
  1700. }),
  1701. smalltalk.Number.klass);
  1702. smalltalk.addClass('BlockClosure', smalltalk.Object, [], 'Kernel');
  1703. smalltalk.addMethod(
  1704. '_compiledSource',
  1705. smalltalk.method({
  1706. selector: 'compiledSource',
  1707. fn: function (){
  1708. var self=this;
  1709. return self.toString();
  1710. return self;}
  1711. }),
  1712. smalltalk.BlockClosure);
  1713. smalltalk.addMethod(
  1714. '_whileTrue_',
  1715. smalltalk.method({
  1716. selector: 'whileTrue:',
  1717. fn: function (aBlock){
  1718. var self=this;
  1719. while(self()) {aBlock()};
  1720. return self;}
  1721. }),
  1722. smalltalk.BlockClosure);
  1723. smalltalk.addMethod(
  1724. '_whileFalse_',
  1725. smalltalk.method({
  1726. selector: 'whileFalse:',
  1727. fn: function (aBlock){
  1728. var self=this;
  1729. while(!self()) {aBlock()};
  1730. return self;}
  1731. }),
  1732. smalltalk.BlockClosure);
  1733. smalltalk.addMethod(
  1734. '_value',
  1735. smalltalk.method({
  1736. selector: 'value',
  1737. fn: function (){
  1738. var self=this;
  1739. return self();;
  1740. return self;}
  1741. }),
  1742. smalltalk.BlockClosure);
  1743. smalltalk.addMethod(
  1744. '_value_',
  1745. smalltalk.method({
  1746. selector: 'value:',
  1747. fn: function (anArg){
  1748. var self=this;
  1749. return self(anArg);;
  1750. return self;}
  1751. }),
  1752. smalltalk.BlockClosure);
  1753. smalltalk.addMethod(
  1754. '_value_value_',
  1755. smalltalk.method({
  1756. selector: 'value:value:',
  1757. fn: function (firstArg, secondArg){
  1758. var self=this;
  1759. return self(firstArg, secondArg);;
  1760. return self;}
  1761. }),
  1762. smalltalk.BlockClosure);
  1763. smalltalk.addMethod(
  1764. '_value_value_value_',
  1765. smalltalk.method({
  1766. selector: 'value:value:value:',
  1767. fn: function (firstArg, secondArg, thirdArg){
  1768. var self=this;
  1769. return self(firstArg, secondArg, thirdArg);;
  1770. return self;}
  1771. }),
  1772. smalltalk.BlockClosure);
  1773. smalltalk.addMethod(
  1774. '_valueWithPossibleArguments_',
  1775. smalltalk.method({
  1776. selector: 'valueWithPossibleArguments:',
  1777. fn: function (aCollection){
  1778. var self=this;
  1779. return self.apply(null, aCollection);;
  1780. return self;}
  1781. }),
  1782. smalltalk.BlockClosure);
  1783. smalltalk.addMethod(
  1784. '_on_do_',
  1785. smalltalk.method({
  1786. selector: 'on:do:',
  1787. fn: function (anErrorClass, aBlock){
  1788. var self=this;
  1789. 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", []);})]));})]);
  1790. return self;}
  1791. }),
  1792. smalltalk.BlockClosure);
  1793. smalltalk.addMethod(
  1794. '_valueWithTimeout_',
  1795. smalltalk.method({
  1796. selector: 'valueWithTimeout:',
  1797. fn: function (aNumber){
  1798. var self=this;
  1799. return setTimeout(self, aNumber);
  1800. return self;}
  1801. }),
  1802. smalltalk.BlockClosure);
  1803. smalltalk.addMethod(
  1804. '_valueWithInterval_',
  1805. smalltalk.method({
  1806. selector: 'valueWithInterval:',
  1807. fn: function (aNumber){
  1808. var self=this;
  1809. return setInterval(self, aNumber);
  1810. return self;}
  1811. }),
  1812. smalltalk.BlockClosure);
  1813. smalltalk.addMethod(
  1814. '_whileFalse',
  1815. smalltalk.method({
  1816. selector: 'whileFalse',
  1817. fn: function (){
  1818. var self=this;
  1819. smalltalk.send(self, "_whileFalse_", [(function(){return nil;})]);
  1820. return self;}
  1821. }),
  1822. smalltalk.BlockClosure);
  1823. smalltalk.addMethod(
  1824. '_whileTrue',
  1825. smalltalk.method({
  1826. selector: 'whileTrue',
  1827. fn: function (){
  1828. var self=this;
  1829. smalltalk.send(self, "_whileTrue_", [(function(){return nil;})]);
  1830. return self;}
  1831. }),
  1832. smalltalk.BlockClosure);
  1833. smalltalk.addMethod(
  1834. '_new',
  1835. smalltalk.method({
  1836. selector: 'new',
  1837. fn: function (){
  1838. var self=this;
  1839. return new self();
  1840. return self;}
  1841. }),
  1842. smalltalk.BlockClosure);
  1843. smalltalk.addMethod(
  1844. '_applyTo_arguments_',
  1845. smalltalk.method({
  1846. selector: 'applyTo:arguments:',
  1847. fn: function (anObject, aCollection){
  1848. var self=this;
  1849. return self.apply(anObject, aCollection);
  1850. return self;}
  1851. }),
  1852. smalltalk.BlockClosure);
  1853. smalltalk.addMethod(
  1854. '_timeToRun',
  1855. smalltalk.method({
  1856. selector: 'timeToRun',
  1857. fn: function (){
  1858. var self=this;
  1859. return smalltalk.send((smalltalk.Date || Date), "_millisecondsToRun_", [self]);
  1860. return self;}
  1861. }),
  1862. smalltalk.BlockClosure);
  1863. smalltalk.addClass('Boolean', smalltalk.Object, [], 'Kernel');
  1864. smalltalk.addMethod(
  1865. '__eq',
  1866. smalltalk.method({
  1867. selector: '=',
  1868. fn: function (aBoolean){
  1869. var self=this;
  1870. 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}})})();})]));
  1871. return Boolean(self == true) == aBoolean;
  1872. return self;
  1873. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  1874. }),
  1875. smalltalk.Boolean);
  1876. smalltalk.addMethod(
  1877. '_shallowCopy',
  1878. smalltalk.method({
  1879. selector: 'shallowCopy',
  1880. fn: function (){
  1881. var self=this;
  1882. return self;
  1883. return self;}
  1884. }),
  1885. smalltalk.Boolean);
  1886. smalltalk.addMethod(
  1887. '_deepCopy',
  1888. smalltalk.method({
  1889. selector: 'deepCopy',
  1890. fn: function (){
  1891. var self=this;
  1892. return self;
  1893. return self;}
  1894. }),
  1895. smalltalk.Boolean);
  1896. smalltalk.addMethod(
  1897. '_ifTrue_',
  1898. smalltalk.method({
  1899. selector: 'ifTrue:',
  1900. fn: function (aBlock){
  1901. var self=this;
  1902. return smalltalk.send(self, "_ifTrue_ifFalse_", [aBlock, (function(){return nil;})]);
  1903. return self;}
  1904. }),
  1905. smalltalk.Boolean);
  1906. smalltalk.addMethod(
  1907. '_ifFalse_',
  1908. smalltalk.method({
  1909. selector: 'ifFalse:',
  1910. fn: function (aBlock){
  1911. var self=this;
  1912. return smalltalk.send(self, "_ifTrue_ifFalse_", [(function(){return nil;}), aBlock]);
  1913. return self;}
  1914. }),
  1915. smalltalk.Boolean);
  1916. smalltalk.addMethod(
  1917. '_ifFalse_ifTrue_',
  1918. smalltalk.method({
  1919. selector: 'ifFalse:ifTrue:',
  1920. fn: function (aBlock, anotherBlock){
  1921. var self=this;
  1922. return smalltalk.send(self, "_ifTrue_ifFalse_", [anotherBlock, aBlock]);
  1923. return self;}
  1924. }),
  1925. smalltalk.Boolean);
  1926. smalltalk.addMethod(
  1927. '_ifTrue_ifFalse_',
  1928. smalltalk.method({
  1929. selector: 'ifTrue:ifFalse:',
  1930. fn: function (aBlock, anotherBlock){
  1931. var self=this;
  1932. if(self == true) {
  1933. return aBlock();
  1934. } else {
  1935. return anotherBlock();
  1936. }
  1937. ;
  1938. return self;}
  1939. }),
  1940. smalltalk.Boolean);
  1941. smalltalk.addMethod(
  1942. '_and_',
  1943. smalltalk.method({
  1944. selector: 'and:',
  1945. fn: function (aBlock){
  1946. var self=this;
  1947. return smalltalk.send(smalltalk.send(self, "__eq", [true]), "_ifTrue_ifFalse_", [aBlock, (function(){return false;})]);
  1948. return self;}
  1949. }),
  1950. smalltalk.Boolean);
  1951. smalltalk.addMethod(
  1952. '_or_',
  1953. smalltalk.method({
  1954. selector: 'or:',
  1955. fn: function (aBlock){
  1956. var self=this;
  1957. return smalltalk.send(smalltalk.send(self, "__eq", [true]), "_ifTrue_ifFalse_", [(function(){return true;}), aBlock]);
  1958. return self;}
  1959. }),
  1960. smalltalk.Boolean);
  1961. smalltalk.addMethod(
  1962. '_not',
  1963. smalltalk.method({
  1964. selector: 'not',
  1965. fn: function (){
  1966. var self=this;
  1967. return smalltalk.send(self, "__eq", [false]);
  1968. return self;}
  1969. }),
  1970. smalltalk.Boolean);
  1971. smalltalk.addMethod(
  1972. '_printString',
  1973. smalltalk.method({
  1974. selector: 'printString',
  1975. fn: function (){
  1976. var self=this;
  1977. return self.toString();
  1978. return self;}
  1979. }),
  1980. smalltalk.Boolean);
  1981. smalltalk.addMethod(
  1982. '_asJSONObject',
  1983. smalltalk.method({
  1984. selector: 'asJSONObject',
  1985. fn: function (){
  1986. var self=this;
  1987. return self;
  1988. return self;}
  1989. }),
  1990. smalltalk.Boolean);
  1991. smalltalk.addMethod(
  1992. '_&',
  1993. smalltalk.method({
  1994. selector: '&',
  1995. fn: function (aBoolean){
  1996. var self=this;
  1997. if(self == true) {
  1998. return aBoolean;
  1999. } else {
  2000. return false;
  2001. }
  2002. ;
  2003. return self;}
  2004. }),
  2005. smalltalk.Boolean);
  2006. smalltalk.addMethod(
  2007. '_|',
  2008. smalltalk.method({
  2009. selector: '|',
  2010. fn: function (aBoolean){
  2011. var self=this;
  2012. if(self == true) {
  2013. return true;
  2014. } else {
  2015. return aBoolean;
  2016. }
  2017. ;
  2018. return self;}
  2019. }),
  2020. smalltalk.Boolean);
  2021. smalltalk.addMethod(
  2022. '__eq_eq',
  2023. smalltalk.method({
  2024. selector: '==',
  2025. fn: function (aBoolean){
  2026. var self=this;
  2027. 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}})})();})]));
  2028. return Boolean(self == true) === Boolean(aBoolean == true);
  2029. return self;
  2030. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq_eq'){return e.fn()} throw(e)}}
  2031. }),
  2032. smalltalk.Boolean);
  2033. smalltalk.addClass('Date', smalltalk.Object, [], 'Kernel');
  2034. smalltalk.addMethod(
  2035. '_year',
  2036. smalltalk.method({
  2037. selector: 'year',
  2038. fn: function (){
  2039. var self=this;
  2040. return self.getFullYear();
  2041. return self;}
  2042. }),
  2043. smalltalk.Date);
  2044. smalltalk.addMethod(
  2045. '_month',
  2046. smalltalk.method({
  2047. selector: 'month',
  2048. fn: function (){
  2049. var self=this;
  2050. return self.getMonth() + 1;
  2051. return self;}
  2052. }),
  2053. smalltalk.Date);
  2054. smalltalk.addMethod(
  2055. '_month_',
  2056. smalltalk.method({
  2057. selector: 'month:',
  2058. fn: function (aNumber){
  2059. var self=this;
  2060. self.setMonth(aNumber - 1);
  2061. return self;}
  2062. }),
  2063. smalltalk.Date);
  2064. smalltalk.addMethod(
  2065. '_day',
  2066. smalltalk.method({
  2067. selector: 'day',
  2068. fn: function (){
  2069. var self=this;
  2070. return smalltalk.send(self, "_dayOfWeek", []);
  2071. return self;}
  2072. }),
  2073. smalltalk.Date);
  2074. smalltalk.addMethod(
  2075. '_dayOfWeek',
  2076. smalltalk.method({
  2077. selector: 'dayOfWeek',
  2078. fn: function (){
  2079. var self=this;
  2080. return self.getDay() + 1;
  2081. return self;}
  2082. }),
  2083. smalltalk.Date);
  2084. smalltalk.addMethod(
  2085. '_dayOfWeek_',
  2086. smalltalk.method({
  2087. selector: 'dayOfWeek:',
  2088. fn: function (aNumber){
  2089. var self=this;
  2090. return self.setDay(aNumber - 1);
  2091. return self;}
  2092. }),
  2093. smalltalk.Date);
  2094. smalltalk.addMethod(
  2095. '_day_',
  2096. smalltalk.method({
  2097. selector: 'day:',
  2098. fn: function (aNumber){
  2099. var self=this;
  2100. smalltalk.send(self, "_day_", [aNumber]);
  2101. return self;}
  2102. }),
  2103. smalltalk.Date);
  2104. smalltalk.addMethod(
  2105. '_year_',
  2106. smalltalk.method({
  2107. selector: 'year:',
  2108. fn: function (aNumber){
  2109. var self=this;
  2110. self.setFullYear(aNumber);
  2111. return self;}
  2112. }),
  2113. smalltalk.Date);
  2114. smalltalk.addMethod(
  2115. '_dayOfMonth',
  2116. smalltalk.method({
  2117. selector: 'dayOfMonth',
  2118. fn: function (){
  2119. var self=this;
  2120. return self.getDate();
  2121. return self;}
  2122. }),
  2123. smalltalk.Date);
  2124. smalltalk.addMethod(
  2125. '_dayOfMonth_',
  2126. smalltalk.method({
  2127. selector: 'dayOfMonth:',
  2128. fn: function (aNumber){
  2129. var self=this;
  2130. self.setDate(aNumber);
  2131. return self;}
  2132. }),
  2133. smalltalk.Date);
  2134. smalltalk.addMethod(
  2135. '_asString',
  2136. smalltalk.method({
  2137. selector: 'asString',
  2138. fn: function (){
  2139. var self=this;
  2140. return self.toString();
  2141. return self;}
  2142. }),
  2143. smalltalk.Date);
  2144. smalltalk.addMethod(
  2145. '_printString',
  2146. smalltalk.method({
  2147. selector: 'printString',
  2148. fn: function (){
  2149. var self=this;
  2150. return smalltalk.send(self, "_asString", []);
  2151. return self;}
  2152. }),
  2153. smalltalk.Date);
  2154. smalltalk.addMethod(
  2155. '_asMilliseconds',
  2156. smalltalk.method({
  2157. selector: 'asMilliseconds',
  2158. fn: function (){
  2159. var self=this;
  2160. return smalltalk.send(self, "_time", []);
  2161. return self;}
  2162. }),
  2163. smalltalk.Date);
  2164. smalltalk.addMethod(
  2165. '_time',
  2166. smalltalk.method({
  2167. selector: 'time',
  2168. fn: function (){
  2169. var self=this;
  2170. return self.getTime();
  2171. return self;}
  2172. }),
  2173. smalltalk.Date);
  2174. smalltalk.addMethod(
  2175. '_time_',
  2176. smalltalk.method({
  2177. selector: 'time:',
  2178. fn: function (aNumber){
  2179. var self=this;
  2180. self.setTime(aNumber);
  2181. return self;}
  2182. }),
  2183. smalltalk.Date);
  2184. smalltalk.addMethod(
  2185. '_asDateString',
  2186. smalltalk.method({
  2187. selector: 'asDateString',
  2188. fn: function (){
  2189. var self=this;
  2190. return self.toDateString();
  2191. return self;}
  2192. }),
  2193. smalltalk.Date);
  2194. smalltalk.addMethod(
  2195. '_asTimeString',
  2196. smalltalk.method({
  2197. selector: 'asTimeString',
  2198. fn: function (){
  2199. var self=this;
  2200. return self.toTimeString();
  2201. return self;}
  2202. }),
  2203. smalltalk.Date);
  2204. smalltalk.addMethod(
  2205. '_asLocaleString',
  2206. smalltalk.method({
  2207. selector: 'asLocaleString',
  2208. fn: function (){
  2209. var self=this;
  2210. return self.toLocaleString();
  2211. return self;}
  2212. }),
  2213. smalltalk.Date);
  2214. smalltalk.addMethod(
  2215. '_asNumber',
  2216. smalltalk.method({
  2217. selector: 'asNumber',
  2218. fn: function (){
  2219. var self=this;
  2220. return smalltalk.send(self, "_asMilliseconds", []);
  2221. return self;}
  2222. }),
  2223. smalltalk.Date);
  2224. smalltalk.addMethod(
  2225. '_hours_',
  2226. smalltalk.method({
  2227. selector: 'hours:',
  2228. fn: function (aNumber){
  2229. var self=this;
  2230. self.setHours(aNumber);
  2231. return self;}
  2232. }),
  2233. smalltalk.Date);
  2234. smalltalk.addMethod(
  2235. '_minutes_',
  2236. smalltalk.method({
  2237. selector: 'minutes:',
  2238. fn: function (aNumber){
  2239. var self=this;
  2240. self.setMinutes(aNumber);
  2241. return self;}
  2242. }),
  2243. smalltalk.Date);
  2244. smalltalk.addMethod(
  2245. '_seconds_',
  2246. smalltalk.method({
  2247. selector: 'seconds:',
  2248. fn: function (aNumber){
  2249. var self=this;
  2250. self.setSeconds(aNumber);
  2251. return self;}
  2252. }),
  2253. smalltalk.Date);
  2254. smalltalk.addMethod(
  2255. '_milliseconds_',
  2256. smalltalk.method({
  2257. selector: 'milliseconds:',
  2258. fn: function (aNumber){
  2259. var self=this;
  2260. self.setMilliseconds(aNumber);
  2261. return self;}
  2262. }),
  2263. smalltalk.Date);
  2264. smalltalk.addMethod(
  2265. '_hours',
  2266. smalltalk.method({
  2267. selector: 'hours',
  2268. fn: function (){
  2269. var self=this;
  2270. return self.getHours();
  2271. return self;}
  2272. }),
  2273. smalltalk.Date);
  2274. smalltalk.addMethod(
  2275. '_minutes',
  2276. smalltalk.method({
  2277. selector: 'minutes',
  2278. fn: function (){
  2279. var self=this;
  2280. return self.getMinutes();
  2281. return self;}
  2282. }),
  2283. smalltalk.Date);
  2284. smalltalk.addMethod(
  2285. '_seconds',
  2286. smalltalk.method({
  2287. selector: 'seconds',
  2288. fn: function (){
  2289. var self=this;
  2290. return self.getSeconds();
  2291. return self;}
  2292. }),
  2293. smalltalk.Date);
  2294. smalltalk.addMethod(
  2295. '_milliseconds',
  2296. smalltalk.method({
  2297. selector: 'milliseconds',
  2298. fn: function (){
  2299. var self=this;
  2300. return self.getMilliseconds();
  2301. return self;}
  2302. }),
  2303. smalltalk.Date);
  2304. smalltalk.addMethod(
  2305. '__lt',
  2306. smalltalk.method({
  2307. selector: '<',
  2308. fn: function (aDate){
  2309. var self=this;
  2310. return self < aDate;
  2311. return self;}
  2312. }),
  2313. smalltalk.Date);
  2314. smalltalk.addMethod(
  2315. '__gt',
  2316. smalltalk.method({
  2317. selector: '>',
  2318. fn: function (aDate){
  2319. var self=this;
  2320. return self > aDate;
  2321. return self;}
  2322. }),
  2323. smalltalk.Date);
  2324. smalltalk.addMethod(
  2325. '__lt_eq',
  2326. smalltalk.method({
  2327. selector: '<=',
  2328. fn: function (aDate){
  2329. var self=this;
  2330. return self <= aDate;
  2331. return self;}
  2332. }),
  2333. smalltalk.Date);
  2334. smalltalk.addMethod(
  2335. '__gt_eq',
  2336. smalltalk.method({
  2337. selector: '>=',
  2338. fn: function (aDate){
  2339. var self=this;
  2340. return self >= aDate;
  2341. return self;}
  2342. }),
  2343. smalltalk.Date);
  2344. smalltalk.addMethod(
  2345. '__minus',
  2346. smalltalk.method({
  2347. selector: '-',
  2348. fn: function (aDate){
  2349. var self=this;
  2350. return self - aDate;
  2351. return self;}
  2352. }),
  2353. smalltalk.Date);
  2354. smalltalk.addMethod(
  2355. '__plus',
  2356. smalltalk.method({
  2357. selector: '+',
  2358. fn: function (aDate){
  2359. var self=this;
  2360. return self + aDate;
  2361. return self;}
  2362. }),
  2363. smalltalk.Date);
  2364. smalltalk.addMethod(
  2365. '_asJSONObject',
  2366. smalltalk.method({
  2367. selector: 'asJSONObject',
  2368. fn: function (){
  2369. var self=this;
  2370. return self;
  2371. return self;}
  2372. }),
  2373. smalltalk.Date);
  2374. smalltalk.addMethod(
  2375. '_new_',
  2376. smalltalk.method({
  2377. selector: 'new:',
  2378. fn: function (anObject){
  2379. var self=this;
  2380. return new Date(anObject);
  2381. return self;}
  2382. }),
  2383. smalltalk.Date.klass);
  2384. smalltalk.addMethod(
  2385. '_fromString_',
  2386. smalltalk.method({
  2387. selector: 'fromString:',
  2388. fn: function (aString){
  2389. var self=this;
  2390. return smalltalk.send(self, "_new_", [aString]);
  2391. return self;}
  2392. }),
  2393. smalltalk.Date.klass);
  2394. smalltalk.addMethod(
  2395. '_fromSeconds_',
  2396. smalltalk.method({
  2397. selector: 'fromSeconds:',
  2398. fn: function (aNumber){
  2399. var self=this;
  2400. return smalltalk.send(self, "_fromMilliseconds_", [((($receiver = aNumber).klass === smalltalk.Number) ? $receiver *(1000) : smalltalk.send($receiver, "__star", [(1000)]))]);
  2401. return self;}
  2402. }),
  2403. smalltalk.Date.klass);
  2404. smalltalk.addMethod(
  2405. '_fromMilliseconds_',
  2406. smalltalk.method({
  2407. selector: 'fromMilliseconds:',
  2408. fn: function (aNumber){
  2409. var self=this;
  2410. return smalltalk.send(self, "_new_", [aNumber]);
  2411. return self;}
  2412. }),
  2413. smalltalk.Date.klass);
  2414. smalltalk.addMethod(
  2415. '_today',
  2416. smalltalk.method({
  2417. selector: 'today',
  2418. fn: function (){
  2419. var self=this;
  2420. return smalltalk.send(self, "_new", []);
  2421. return self;}
  2422. }),
  2423. smalltalk.Date.klass);
  2424. smalltalk.addMethod(
  2425. '_now',
  2426. smalltalk.method({
  2427. selector: 'now',
  2428. fn: function (){
  2429. var self=this;
  2430. return smalltalk.send(self, "_today", []);
  2431. return self;}
  2432. }),
  2433. smalltalk.Date.klass);
  2434. smalltalk.addMethod(
  2435. '_millisecondsToRun_',
  2436. smalltalk.method({
  2437. selector: 'millisecondsToRun:',
  2438. fn: function (aBlock){
  2439. var self=this;
  2440. var t=nil;
  2441. t=smalltalk.send((smalltalk.Date || Date), "_now", []);
  2442. smalltalk.send(aBlock, "_value", []);
  2443. return ((($receiver = smalltalk.send((smalltalk.Date || Date), "_now", [])).klass === smalltalk.Number) ? $receiver -t : smalltalk.send($receiver, "__minus", [t]));
  2444. return self;}
  2445. }),
  2446. smalltalk.Date.klass);
  2447. smalltalk.addClass('UndefinedObject', smalltalk.Object, [], 'Kernel');
  2448. smalltalk.addMethod(
  2449. '_subclass_instanceVariableNames_',
  2450. smalltalk.method({
  2451. selector: 'subclass:instanceVariableNames:',
  2452. fn: function (aString, anotherString){
  2453. var self=this;
  2454. return smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, anotherString, nil]);
  2455. return self;}
  2456. }),
  2457. smalltalk.UndefinedObject);
  2458. smalltalk.addMethod(
  2459. '_subclass_instanceVariableNames_category_',
  2460. smalltalk.method({
  2461. selector: 'subclass:instanceVariableNames:category:',
  2462. fn: function (aString, aString2, aString3){
  2463. var self=this;
  2464. return smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, aString2, aString3]);
  2465. return self;}
  2466. }),
  2467. smalltalk.UndefinedObject);
  2468. smalltalk.addMethod(
  2469. '_shallowCopy',
  2470. smalltalk.method({
  2471. selector: 'shallowCopy',
  2472. fn: function (){
  2473. var self=this;
  2474. return self;
  2475. return self;}
  2476. }),
  2477. smalltalk.UndefinedObject);
  2478. smalltalk.addMethod(
  2479. '_deepCopy',
  2480. smalltalk.method({
  2481. selector: 'deepCopy',
  2482. fn: function (){
  2483. var self=this;
  2484. return self;
  2485. return self;}
  2486. }),
  2487. smalltalk.UndefinedObject);
  2488. smalltalk.addMethod(
  2489. '_ifNil_',
  2490. smalltalk.method({
  2491. selector: 'ifNil:',
  2492. fn: function (aBlock){
  2493. var self=this;
  2494. return smalltalk.send(self, "_ifNil_ifNotNil_", [aBlock, (function(){return nil;})]);
  2495. return self;}
  2496. }),
  2497. smalltalk.UndefinedObject);
  2498. smalltalk.addMethod(
  2499. '_ifNotNil_',
  2500. smalltalk.method({
  2501. selector: 'ifNotNil:',
  2502. fn: function (aBlock){
  2503. var self=this;
  2504. return self;
  2505. return self;}
  2506. }),
  2507. smalltalk.UndefinedObject);
  2508. smalltalk.addMethod(
  2509. '_ifNil_ifNotNil_',
  2510. smalltalk.method({
  2511. selector: 'ifNil:ifNotNil:',
  2512. fn: function (aBlock, anotherBlock){
  2513. var self=this;
  2514. return smalltalk.send(aBlock, "_value", []);
  2515. return self;}
  2516. }),
  2517. smalltalk.UndefinedObject);
  2518. smalltalk.addMethod(
  2519. '_ifNotNil_ifNil_',
  2520. smalltalk.method({
  2521. selector: 'ifNotNil:ifNil:',
  2522. fn: function (aBlock, anotherBlock){
  2523. var self=this;
  2524. return smalltalk.send(anotherBlock, "_value", []);
  2525. return self;}
  2526. }),
  2527. smalltalk.UndefinedObject);
  2528. smalltalk.addMethod(
  2529. '_isNil',
  2530. smalltalk.method({
  2531. selector: 'isNil',
  2532. fn: function (){
  2533. var self=this;
  2534. return true;
  2535. return self;}
  2536. }),
  2537. smalltalk.UndefinedObject);
  2538. smalltalk.addMethod(
  2539. '_notNil',
  2540. smalltalk.method({
  2541. selector: 'notNil',
  2542. fn: function (){
  2543. var self=this;
  2544. return false;
  2545. return self;}
  2546. }),
  2547. smalltalk.UndefinedObject);
  2548. smalltalk.addMethod(
  2549. '_printString',
  2550. smalltalk.method({
  2551. selector: 'printString',
  2552. fn: function (){
  2553. var self=this;
  2554. return "nil";
  2555. return self;}
  2556. }),
  2557. smalltalk.UndefinedObject);
  2558. smalltalk.addMethod(
  2559. '_subclass_instanceVariableNames_package_',
  2560. smalltalk.method({
  2561. selector: 'subclass:instanceVariableNames:package:',
  2562. fn: function (aString, aString2, aString3){
  2563. var self=this;
  2564. return smalltalk.send(smalltalk.send((smalltalk.ClassBuilder || ClassBuilder), "_new", []), "_superclass_subclass_instanceVariableNames_package_", [self, aString, aString2, aString3]);
  2565. return self;}
  2566. }),
  2567. smalltalk.UndefinedObject);
  2568. smalltalk.addMethod(
  2569. '_new',
  2570. smalltalk.method({
  2571. selector: 'new',
  2572. fn: function (){
  2573. var self=this;
  2574. smalltalk.send(self, "_error_", ["You cannot create new instances of UndefinedObject. Use nil"]);
  2575. return self;}
  2576. }),
  2577. smalltalk.UndefinedObject.klass);
  2578. smalltalk.addClass('Collection', smalltalk.Object, [], 'Kernel');
  2579. smalltalk.addMethod(
  2580. '_size',
  2581. smalltalk.method({
  2582. selector: 'size',
  2583. fn: function (){
  2584. var self=this;
  2585. smalltalk.send(self, "_subclassResponsibility", []);
  2586. return self;}
  2587. }),
  2588. smalltalk.Collection);
  2589. smalltalk.addMethod(
  2590. '_readStream',
  2591. smalltalk.method({
  2592. selector: 'readStream',
  2593. fn: function (){
  2594. var self=this;
  2595. return smalltalk.send(self, "_stream", []);
  2596. return self;}
  2597. }),
  2598. smalltalk.Collection);
  2599. smalltalk.addMethod(
  2600. '_writeStream',
  2601. smalltalk.method({
  2602. selector: 'writeStream',
  2603. fn: function (){
  2604. var self=this;
  2605. return smalltalk.send(self, "_stream", []);
  2606. return self;}
  2607. }),
  2608. smalltalk.Collection);
  2609. smalltalk.addMethod(
  2610. '_stream',
  2611. smalltalk.method({
  2612. selector: 'stream',
  2613. fn: function (){
  2614. var self=this;
  2615. return smalltalk.send(smalltalk.send(self, "_streamClass", []), "_on_", [self]);
  2616. return self;}
  2617. }),
  2618. smalltalk.Collection);
  2619. smalltalk.addMethod(
  2620. '_streamClass',
  2621. smalltalk.method({
  2622. selector: 'streamClass',
  2623. fn: function (){
  2624. var self=this;
  2625. return smalltalk.send(smalltalk.send(self, "_class", []), "_streamClass", []);
  2626. return self;}
  2627. }),
  2628. smalltalk.Collection);
  2629. smalltalk.addMethod(
  2630. '_add_',
  2631. smalltalk.method({
  2632. selector: 'add:',
  2633. fn: function (anObject){
  2634. var self=this;
  2635. smalltalk.send(self, "_subclassResponsibility", []);
  2636. return self;}
  2637. }),
  2638. smalltalk.Collection);
  2639. smalltalk.addMethod(
  2640. '_addAll_',
  2641. smalltalk.method({
  2642. selector: 'addAll:',
  2643. fn: function (aCollection){
  2644. var self=this;
  2645. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(self, "_add_", [each]);})]);
  2646. return aCollection;
  2647. return self;}
  2648. }),
  2649. smalltalk.Collection);
  2650. smalltalk.addMethod(
  2651. '__comma',
  2652. smalltalk.method({
  2653. selector: ',',
  2654. fn: function (aCollection){
  2655. var self=this;
  2656. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  2657. return self;}
  2658. }),
  2659. smalltalk.Collection);
  2660. smalltalk.addMethod(
  2661. '_copyWith_',
  2662. smalltalk.method({
  2663. selector: 'copyWith:',
  2664. fn: function (anObject){
  2665. var self=this;
  2666. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  2667. return self;}
  2668. }),
  2669. smalltalk.Collection);
  2670. smalltalk.addMethod(
  2671. '_copyWithAll_',
  2672. smalltalk.method({
  2673. selector: 'copyWithAll:',
  2674. fn: function (aCollection){
  2675. var self=this;
  2676. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  2677. return self;}
  2678. }),
  2679. smalltalk.Collection);
  2680. smalltalk.addMethod(
  2681. '_asArray',
  2682. smalltalk.method({
  2683. selector: 'asArray',
  2684. fn: function (){
  2685. var self=this;
  2686. var array=nil;
  2687. var index=nil;
  2688. array=smalltalk.send((smalltalk.Array || Array), "_new", []);
  2689. index=(0);
  2690. 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]);})]);
  2691. return array;
  2692. return self;}
  2693. }),
  2694. smalltalk.Collection);
  2695. smalltalk.addMethod(
  2696. '_do_',
  2697. smalltalk.method({
  2698. selector: 'do:',
  2699. fn: function (aBlock){
  2700. var self=this;
  2701. for(var i=0;i<self.length;i++){aBlock(self[i]);};
  2702. return self;}
  2703. }),
  2704. smalltalk.Collection);
  2705. smalltalk.addMethod(
  2706. '_collect_',
  2707. smalltalk.method({
  2708. selector: 'collect:',
  2709. fn: function (aBlock){
  2710. var self=this;
  2711. var newCollection=nil;
  2712. newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  2713. smalltalk.send(self, "_do_", [(function(each){return smalltalk.send(newCollection, "_add_", [smalltalk.send(aBlock, "_value_", [each])]);})]);
  2714. return newCollection;
  2715. return self;}
  2716. }),
  2717. smalltalk.Collection);
  2718. smalltalk.addMethod(
  2719. '_detect_',
  2720. smalltalk.method({
  2721. selector: 'detect:',
  2722. fn: function (aBlock){
  2723. var self=this;
  2724. return smalltalk.send(self, "_detect_ifNone_", [aBlock, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  2725. return self;}
  2726. }),
  2727. smalltalk.Collection);
  2728. smalltalk.addMethod(
  2729. '_detect_ifNone_',
  2730. smalltalk.method({
  2731. selector: 'detect:ifNone:',
  2732. fn: function (aBlock, anotherBlock){
  2733. var self=this;
  2734. for(var i = 0; i < self.length; i++)
  2735. if(aBlock(self[i]))
  2736. return self[i];
  2737. return anotherBlock();
  2738. ;
  2739. return self;}
  2740. }),
  2741. smalltalk.Collection);
  2742. smalltalk.addMethod(
  2743. '_do_separatedBy_',
  2744. smalltalk.method({
  2745. selector: 'do:separatedBy:',
  2746. fn: function (aBlock, anotherBlock){
  2747. var self=this;
  2748. var first=nil;
  2749. first=true;
  2750. 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]);})]);
  2751. return self;}
  2752. }),
  2753. smalltalk.Collection);
  2754. smalltalk.addMethod(
  2755. '_inject_into_',
  2756. smalltalk.method({
  2757. selector: 'inject:into:',
  2758. fn: function (anObject, aBlock){
  2759. var self=this;
  2760. var result=nil;
  2761. result=anObject;
  2762. smalltalk.send(self, "_do_", [(function(each){return result=smalltalk.send(aBlock, "_value_value_", [result, each]);})]);
  2763. return result;
  2764. return self;}
  2765. }),
  2766. smalltalk.Collection);
  2767. smalltalk.addMethod(
  2768. '_reject_',
  2769. smalltalk.method({
  2770. selector: 'reject:',
  2771. fn: function (aBlock){
  2772. var self=this;
  2773. return smalltalk.send(self, "_select_", [(function(each){return smalltalk.send(smalltalk.send(aBlock, "_value_", [each]), "__eq", [false]);})]);
  2774. return self;}
  2775. }),
  2776. smalltalk.Collection);
  2777. smalltalk.addMethod(
  2778. '_select_',
  2779. smalltalk.method({
  2780. selector: 'select:',
  2781. fn: function (aBlock){
  2782. var self=this;
  2783. var stream=nil;
  2784. stream=smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_new", []), "_writeStream", []);
  2785. 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]);})]));})]);
  2786. return smalltalk.send(stream, "_contents", []);
  2787. return self;}
  2788. }),
  2789. smalltalk.Collection);
  2790. smalltalk.addMethod(
  2791. '_errorNotFound',
  2792. smalltalk.method({
  2793. selector: 'errorNotFound',
  2794. fn: function (){
  2795. var self=this;
  2796. smalltalk.send(self, "_error_", ["Object is not in the collection"]);
  2797. return self;}
  2798. }),
  2799. smalltalk.Collection);
  2800. smalltalk.addMethod(
  2801. '_includes_',
  2802. smalltalk.method({
  2803. selector: 'includes:',
  2804. fn: function (anObject){
  2805. var self=this;
  2806. var i = self.length;
  2807. while (i--) {
  2808. if (smalltalk.send(self[i], "__eq", [anObject])) {return true;}
  2809. }
  2810. return false
  2811. ;
  2812. return self;}
  2813. }),
  2814. smalltalk.Collection);
  2815. smalltalk.addMethod(
  2816. '_notEmpty',
  2817. smalltalk.method({
  2818. selector: 'notEmpty',
  2819. fn: function (){
  2820. var self=this;
  2821. return smalltalk.send(smalltalk.send(self, "_isEmpty", []), "_not", []);
  2822. return self;}
  2823. }),
  2824. smalltalk.Collection);
  2825. smalltalk.addMethod(
  2826. '_isEmpty',
  2827. smalltalk.method({
  2828. selector: 'isEmpty',
  2829. fn: function (){
  2830. var self=this;
  2831. return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [(0)]);
  2832. return self;}
  2833. }),
  2834. smalltalk.Collection);
  2835. smalltalk.addMethod(
  2836. '_remove_',
  2837. smalltalk.method({
  2838. selector: 'remove:',
  2839. fn: function (anObject){
  2840. var self=this;
  2841. smalltalk.send(self, "_subclassResponsibility", []);
  2842. return self;}
  2843. }),
  2844. smalltalk.Collection);
  2845. smalltalk.addMethod(
  2846. '_asSet',
  2847. smalltalk.method({
  2848. selector: 'asSet',
  2849. fn: function (){
  2850. var self=this;
  2851. return smalltalk.send((smalltalk.Set || Set), "_withAll_", [self]);
  2852. return self;}
  2853. }),
  2854. smalltalk.Collection);
  2855. smalltalk.addMethod(
  2856. '_ifNotEmpty_',
  2857. smalltalk.method({
  2858. selector: 'ifNotEmpty:',
  2859. fn: function (aBlock){
  2860. var self=this;
  2861. smalltalk.send(smalltalk.send(self, "_notEmpty", []), "_ifTrue_", [aBlock]);
  2862. return self;}
  2863. }),
  2864. smalltalk.Collection);
  2865. smalltalk.addMethod(
  2866. '_ifEmpty_',
  2867. smalltalk.method({
  2868. selector: 'ifEmpty:',
  2869. fn: function (aBlock){
  2870. var self=this;
  2871. smalltalk.send(smalltalk.send(self, "_isEmpty", []), "_ifTrue_", [aBlock]);
  2872. return self;}
  2873. }),
  2874. smalltalk.Collection);
  2875. smalltalk.addMethod(
  2876. '_copyWithoutAll_',
  2877. smalltalk.method({
  2878. selector: 'copyWithoutAll:',
  2879. fn: function (aCollection){
  2880. var self=this;
  2881. return smalltalk.send(self, "_reject_", [(function(each){return smalltalk.send(aCollection, "_includes_", [each]);})]);
  2882. return self;}
  2883. }),
  2884. smalltalk.Collection);
  2885. smalltalk.addMethod(
  2886. '_streamClass',
  2887. smalltalk.method({
  2888. selector: 'streamClass',
  2889. fn: function (){
  2890. var self=this;
  2891. return (smalltalk.Stream || Stream);
  2892. return self;}
  2893. }),
  2894. smalltalk.Collection.klass);
  2895. smalltalk.addMethod(
  2896. '_with_',
  2897. smalltalk.method({
  2898. selector: 'with:',
  2899. fn: function (anObject){
  2900. var self=this;
  2901. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2902. return self;}
  2903. }),
  2904. smalltalk.Collection.klass);
  2905. smalltalk.addMethod(
  2906. '_with_with_',
  2907. smalltalk.method({
  2908. selector: 'with:with:',
  2909. fn: function (anObject, anotherObject){
  2910. var self=this;
  2911. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);smalltalk.send($rec, "_add_", [anotherObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2912. return self;}
  2913. }),
  2914. smalltalk.Collection.klass);
  2915. smalltalk.addMethod(
  2916. '_with_with_with_',
  2917. smalltalk.method({
  2918. selector: 'with:with:with:',
  2919. fn: function (firstObject, secondObject, thirdObject){
  2920. var self=this;
  2921. 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", []));
  2922. return self;}
  2923. }),
  2924. smalltalk.Collection.klass);
  2925. smalltalk.addMethod(
  2926. '_withAll_',
  2927. smalltalk.method({
  2928. selector: 'withAll:',
  2929. fn: function (aCollection){
  2930. var self=this;
  2931. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2932. return self;}
  2933. }),
  2934. smalltalk.Collection.klass);
  2935. smalltalk.addClass('SequenceableCollection', smalltalk.Collection, [], 'Kernel');
  2936. smalltalk.addMethod(
  2937. '_at_',
  2938. smalltalk.method({
  2939. selector: 'at:',
  2940. fn: function (anIndex){
  2941. var self=this;
  2942. return smalltalk.send(self, "_at_ifAbsent_", [anIndex, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  2943. return self;}
  2944. }),
  2945. smalltalk.SequenceableCollection);
  2946. smalltalk.addMethod(
  2947. '_at_ifAbsent_',
  2948. smalltalk.method({
  2949. selector: 'at:ifAbsent:',
  2950. fn: function (anIndex, aBlock){
  2951. var self=this;
  2952. smalltalk.send(self, "_subclassResponsibility", []);
  2953. return self;}
  2954. }),
  2955. smalltalk.SequenceableCollection);
  2956. smalltalk.addMethod(
  2957. '_at_put_',
  2958. smalltalk.method({
  2959. selector: 'at:put:',
  2960. fn: function (anIndex, anObject){
  2961. var self=this;
  2962. smalltalk.send(self, "_subclassResponsibility", []);
  2963. return self;}
  2964. }),
  2965. smalltalk.SequenceableCollection);
  2966. smalltalk.addMethod(
  2967. '_copyFrom_to_',
  2968. smalltalk.method({
  2969. selector: 'copyFrom:to:',
  2970. fn: function (anIndex, anotherIndex){
  2971. var self=this;
  2972. smalltalk.send(self, "_subclassResponsibility", []);
  2973. return self;}
  2974. }),
  2975. smalltalk.SequenceableCollection);
  2976. smalltalk.addMethod(
  2977. '_first',
  2978. smalltalk.method({
  2979. selector: 'first',
  2980. fn: function (){
  2981. var self=this;
  2982. return smalltalk.send(self, "_at_", [(1)]);
  2983. return self;}
  2984. }),
  2985. smalltalk.SequenceableCollection);
  2986. smalltalk.addMethod(
  2987. '_fourth',
  2988. smalltalk.method({
  2989. selector: 'fourth',
  2990. fn: function (){
  2991. var self=this;
  2992. return smalltalk.send(self, "_at_", [(4)]);
  2993. return self;}
  2994. }),
  2995. smalltalk.SequenceableCollection);
  2996. smalltalk.addMethod(
  2997. '_last',
  2998. smalltalk.method({
  2999. selector: 'last',
  3000. fn: function (){
  3001. var self=this;
  3002. return smalltalk.send(self, "_at_", [smalltalk.send(self, "_size", [])]);
  3003. return self;}
  3004. }),
  3005. smalltalk.SequenceableCollection);
  3006. smalltalk.addMethod(
  3007. '_second',
  3008. smalltalk.method({
  3009. selector: 'second',
  3010. fn: function (){
  3011. var self=this;
  3012. return smalltalk.send(self, "_at_", [(2)]);
  3013. return self;}
  3014. }),
  3015. smalltalk.SequenceableCollection);
  3016. smalltalk.addMethod(
  3017. '_third',
  3018. smalltalk.method({
  3019. selector: 'third',
  3020. fn: function (){
  3021. var self=this;
  3022. return smalltalk.send(self, "_at_", [(3)]);
  3023. return self;}
  3024. }),
  3025. smalltalk.SequenceableCollection);
  3026. smalltalk.addMethod(
  3027. '_removeLast',
  3028. smalltalk.method({
  3029. selector: 'removeLast',
  3030. fn: function (){
  3031. var self=this;
  3032. smalltalk.send(self, "_remove_", [smalltalk.send(self, "_last", [])]);
  3033. return self;}
  3034. }),
  3035. smalltalk.SequenceableCollection);
  3036. smalltalk.addMethod(
  3037. '_addLast_',
  3038. smalltalk.method({
  3039. selector: 'addLast:',
  3040. fn: function (anObject){
  3041. var self=this;
  3042. smalltalk.send(self, "_add_", [anObject]);
  3043. return self;}
  3044. }),
  3045. smalltalk.SequenceableCollection);
  3046. smalltalk.addMethod(
  3047. '_withIndexDo_',
  3048. smalltalk.method({
  3049. selector: 'withIndexDo:',
  3050. fn: function (aBlock){
  3051. var self=this;
  3052. for(var i=0;i<self.length;i++){aBlock(self[i], i+1);};
  3053. return self;}
  3054. }),
  3055. smalltalk.SequenceableCollection);
  3056. smalltalk.addMethod(
  3057. '_allButFirst',
  3058. smalltalk.method({
  3059. selector: 'allButFirst',
  3060. fn: function (){
  3061. var self=this;
  3062. return smalltalk.send(self, "_copyFrom_to_", [(2), smalltalk.send(self, "_size", [])]);
  3063. return self;}
  3064. }),
  3065. smalltalk.SequenceableCollection);
  3066. smalltalk.addMethod(
  3067. '_allButLast',
  3068. smalltalk.method({
  3069. selector: 'allButLast',
  3070. fn: function (){
  3071. var self=this;
  3072. return smalltalk.send(self, "_copyFrom_to_", [(1), ((($receiver = smalltalk.send(self, "_size", [])).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)]))]);
  3073. return self;}
  3074. }),
  3075. smalltalk.SequenceableCollection);
  3076. smalltalk.addMethod(
  3077. '_indexOf_',
  3078. smalltalk.method({
  3079. selector: 'indexOf:',
  3080. fn: function (anObject){
  3081. var self=this;
  3082. return smalltalk.send(self, "_indexOf_ifAbsent_", [anObject, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  3083. return self;}
  3084. }),
  3085. smalltalk.SequenceableCollection);
  3086. smalltalk.addMethod(
  3087. '_indexOf_ifAbsent_',
  3088. smalltalk.method({
  3089. selector: 'indexOf:ifAbsent:',
  3090. fn: function (anObject, aBlock){
  3091. var self=this;
  3092. for(var i=0;i<self.length;i++){
  3093. if(self[i].__eq(anObject)) {return i+1}
  3094. }
  3095. return aBlock();
  3096. ;
  3097. return self;}
  3098. }),
  3099. smalltalk.SequenceableCollection);
  3100. smalltalk.addMethod(
  3101. '_indexOf_startingAt_ifAbsent_',
  3102. smalltalk.method({
  3103. selector: 'indexOf:startingAt:ifAbsent:',
  3104. fn: function (anObject, start, aBlock){
  3105. var self=this;
  3106. for(var i=start-1;i<self.length;i++){
  3107. if(self[i].__eq(anObject)) {return i+1}
  3108. }
  3109. return aBlock();
  3110. ;
  3111. return self;}
  3112. }),
  3113. smalltalk.SequenceableCollection);
  3114. smalltalk.addMethod(
  3115. '_indexOf_startingAt_',
  3116. smalltalk.method({
  3117. selector: 'indexOf:startingAt:',
  3118. fn: function (anObject, start){
  3119. var self=this;
  3120. return smalltalk.send(self, "_indexOf_startingAt_ifAbsent_", [anObject, start, (function(){return (0);})]);
  3121. return self;}
  3122. }),
  3123. smalltalk.SequenceableCollection);
  3124. smalltalk.addMethod(
  3125. '_reversed',
  3126. smalltalk.method({
  3127. selector: 'reversed',
  3128. fn: function (){
  3129. var self=this;
  3130. smalltalk.send(self, "_subclassResponsibility", []);
  3131. return self;}
  3132. }),
  3133. smalltalk.SequenceableCollection);
  3134. smalltalk.addClass('String', smalltalk.SequenceableCollection, [], 'Kernel');
  3135. smalltalk.addMethod(
  3136. '__eq',
  3137. smalltalk.method({
  3138. selector: '=',
  3139. fn: function (aString){
  3140. var self=this;
  3141. 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}})})();})]));
  3142. return String(self) == aString;
  3143. return self;
  3144. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  3145. }),
  3146. smalltalk.String);
  3147. smalltalk.addMethod(
  3148. '_size',
  3149. smalltalk.method({
  3150. selector: 'size',
  3151. fn: function (){
  3152. var self=this;
  3153. return self.length;
  3154. return self;}
  3155. }),
  3156. smalltalk.String);
  3157. smalltalk.addMethod(
  3158. '_at_',
  3159. smalltalk.method({
  3160. selector: 'at:',
  3161. fn: function (anIndex){
  3162. var self=this;
  3163. return self[anIndex - 1];
  3164. return self;}
  3165. }),
  3166. smalltalk.String);
  3167. smalltalk.addMethod(
  3168. '_at_put_',
  3169. smalltalk.method({
  3170. selector: 'at:put:',
  3171. fn: function (anIndex, anObject){
  3172. var self=this;
  3173. smalltalk.send(self, "_errorReadOnly", []);
  3174. return self;}
  3175. }),
  3176. smalltalk.String);
  3177. smalltalk.addMethod(
  3178. '_at_ifAbsent_',
  3179. smalltalk.method({
  3180. selector: 'at:ifAbsent:',
  3181. fn: function (anIndex, aBlock){
  3182. var self=this;
  3183. (($receiver = smalltalk.send(self, "_at_", [anIndex])) == nil || $receiver == undefined) ? (function(){return aBlock;})() : $receiver;
  3184. return self;}
  3185. }),
  3186. smalltalk.String);
  3187. smalltalk.addMethod(
  3188. '_escaped',
  3189. smalltalk.method({
  3190. selector: 'escaped',
  3191. fn: function (){
  3192. var self=this;
  3193. return escape(self);
  3194. return self;}
  3195. }),
  3196. smalltalk.String);
  3197. smalltalk.addMethod(
  3198. '_unescaped',
  3199. smalltalk.method({
  3200. selector: 'unescaped',
  3201. fn: function (){
  3202. var self=this;
  3203. return unescape(self);
  3204. return self;}
  3205. }),
  3206. smalltalk.String);
  3207. smalltalk.addMethod(
  3208. '_add_',
  3209. smalltalk.method({
  3210. selector: 'add:',
  3211. fn: function (anObject){
  3212. var self=this;
  3213. smalltalk.send(self, "_errorReadOnly", []);
  3214. return self;}
  3215. }),
  3216. smalltalk.String);
  3217. smalltalk.addMethod(
  3218. '__comma',
  3219. smalltalk.method({
  3220. selector: ',',
  3221. fn: function (aString){
  3222. var self=this;
  3223. return self + aString;
  3224. return self;}
  3225. }),
  3226. smalltalk.String);
  3227. smalltalk.addMethod(
  3228. '_copyFrom_to_',
  3229. smalltalk.method({
  3230. selector: 'copyFrom:to:',
  3231. fn: function (anIndex, anotherIndex){
  3232. var self=this;
  3233. return self.substring(anIndex - 1, anotherIndex);
  3234. return self;}
  3235. }),
  3236. smalltalk.String);
  3237. smalltalk.addMethod(
  3238. '_shallowCopy',
  3239. smalltalk.method({
  3240. selector: 'shallowCopy',
  3241. fn: function (){
  3242. var self=this;
  3243. return smalltalk.send(smalltalk.send(self, "_class", []), "_fromString_", [self]);
  3244. return self;}
  3245. }),
  3246. smalltalk.String);
  3247. smalltalk.addMethod(
  3248. '_deepCopy',
  3249. smalltalk.method({
  3250. selector: 'deepCopy',
  3251. fn: function (){
  3252. var self=this;
  3253. return smalltalk.send(self, "_shallowCopy", []);
  3254. return self;}
  3255. }),
  3256. smalltalk.String);
  3257. smalltalk.addMethod(
  3258. '_asSelector',
  3259. smalltalk.method({
  3260. selector: 'asSelector',
  3261. fn: function (){
  3262. var self=this;
  3263. var selector=nil;
  3264. selector=smalltalk.send("_", "__comma", [self]);
  3265. selector=smalltalk.send(selector, "_replace_with_", [":", "_"]);
  3266. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B+%5D"), "_plus"]);
  3267. selector=smalltalk.send(selector, "_replace_with_", [unescape("-"), "_minus"]);
  3268. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B*%5D"), "_star"]);
  3269. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B/%5D"), "_slash"]);
  3270. selector=smalltalk.send(selector, "_replace_with_", [unescape("%3E"), "_gt"]);
  3271. selector=smalltalk.send(selector, "_replace_with_", [unescape("%3C"), "_lt"]);
  3272. selector=smalltalk.send(selector, "_replace_with_", [unescape("%3D"), "_eq"]);
  3273. selector=smalltalk.send(selector, "_replace_with_", [unescape("%2C"), "_comma"]);
  3274. selector=smalltalk.send(selector, "_replace_with_", [unescape("%5B@%5D"), "_at"]);
  3275. return selector;
  3276. return self;}
  3277. }),
  3278. smalltalk.String);
  3279. smalltalk.addMethod(
  3280. '_asJavascript',
  3281. smalltalk.method({
  3282. selector: 'asJavascript',
  3283. fn: function (){
  3284. var self=this;
  3285. if(self.search(/^[a-zA-Z0-9_:.$ ]*$/) == -1)
  3286. return "unescape(\"" + escape(self) + "\")";
  3287. else
  3288. return "\"" + self + "\"";
  3289. ;
  3290. return self;}
  3291. }),
  3292. smalltalk.String);
  3293. smalltalk.addMethod(
  3294. '_replace_with_',
  3295. smalltalk.method({
  3296. selector: 'replace:with:',
  3297. fn: function (aString, anotherString){
  3298. var self=this;
  3299. return smalltalk.send(self, "_replaceRegexp_with_", [smalltalk.send((smalltalk.RegularExpression || RegularExpression), "_fromString_flag_", [aString, "g"]), anotherString]);
  3300. return self;}
  3301. }),
  3302. smalltalk.String);
  3303. smalltalk.addMethod(
  3304. '_replaceRegexp_with_',
  3305. smalltalk.method({
  3306. selector: 'replaceRegexp:with:',
  3307. fn: function (aRegexp, aString){
  3308. var self=this;
  3309. return self.replace(aRegexp, aString);
  3310. return self;}
  3311. }),
  3312. smalltalk.String);
  3313. smalltalk.addMethod(
  3314. '_tokenize_',
  3315. smalltalk.method({
  3316. selector: 'tokenize:',
  3317. fn: function (aString){
  3318. var self=this;
  3319. return self.split(aString);
  3320. return self;}
  3321. }),
  3322. smalltalk.String);
  3323. smalltalk.addMethod(
  3324. '_match_',
  3325. smalltalk.method({
  3326. selector: 'match:',
  3327. fn: function (aRegexp){
  3328. var self=this;
  3329. return self.search(aRegexp) != -1;
  3330. return self;}
  3331. }),
  3332. smalltalk.String);
  3333. smalltalk.addMethod(
  3334. '_asString',
  3335. smalltalk.method({
  3336. selector: 'asString',
  3337. fn: function (){
  3338. var self=this;
  3339. return self;
  3340. return self;}
  3341. }),
  3342. smalltalk.String);
  3343. smalltalk.addMethod(
  3344. '_asNumber',
  3345. smalltalk.method({
  3346. selector: 'asNumber',
  3347. fn: function (){
  3348. var self=this;
  3349. return Number(self);
  3350. return self;}
  3351. }),
  3352. smalltalk.String);
  3353. smalltalk.addMethod(
  3354. '_errorReadOnly',
  3355. smalltalk.method({
  3356. selector: 'errorReadOnly',
  3357. fn: function (){
  3358. var self=this;
  3359. smalltalk.send(self, "_error_", [unescape("Object%20is%20read-only")]);
  3360. return self;}
  3361. }),
  3362. smalltalk.String);
  3363. smalltalk.addMethod(
  3364. '_printString',
  3365. smalltalk.method({
  3366. selector: 'printString',
  3367. fn: function (){
  3368. var self=this;
  3369. return smalltalk.send(smalltalk.send(unescape("%27"), "__comma", [self]), "__comma", [unescape("%27")]);
  3370. return self;}
  3371. }),
  3372. smalltalk.String);
  3373. smalltalk.addMethod(
  3374. '_printNl',
  3375. smalltalk.method({
  3376. selector: 'printNl',
  3377. fn: function (){
  3378. var self=this;
  3379. console.log(self);
  3380. return self;}
  3381. }),
  3382. smalltalk.String);
  3383. smalltalk.addMethod(
  3384. '_isString',
  3385. smalltalk.method({
  3386. selector: 'isString',
  3387. fn: function (){
  3388. var self=this;
  3389. return true;
  3390. return self;}
  3391. }),
  3392. smalltalk.String);
  3393. smalltalk.addMethod(
  3394. '__gt',
  3395. smalltalk.method({
  3396. selector: '>',
  3397. fn: function (aString){
  3398. var self=this;
  3399. return String(self) > aString;
  3400. return self;}
  3401. }),
  3402. smalltalk.String);
  3403. smalltalk.addMethod(
  3404. '__lt',
  3405. smalltalk.method({
  3406. selector: '<',
  3407. fn: function (aString){
  3408. var self=this;
  3409. return String(self) < aString;
  3410. return self;}
  3411. }),
  3412. smalltalk.String);
  3413. smalltalk.addMethod(
  3414. '__gt_eq',
  3415. smalltalk.method({
  3416. selector: '>=',
  3417. fn: function (aString){
  3418. var self=this;
  3419. return String(self) >= aString;
  3420. return self;}
  3421. }),
  3422. smalltalk.String);
  3423. smalltalk.addMethod(
  3424. '__lt_eq',
  3425. smalltalk.method({
  3426. selector: '<=',
  3427. fn: function (aString){
  3428. var self=this;
  3429. return String(self) <= aString;
  3430. return self;}
  3431. }),
  3432. smalltalk.String);
  3433. smalltalk.addMethod(
  3434. '_remove_',
  3435. smalltalk.method({
  3436. selector: 'remove:',
  3437. fn: function (anObject){
  3438. var self=this;
  3439. smalltalk.send(self, "_errorReadOnly", []);
  3440. return self;}
  3441. }),
  3442. smalltalk.String);
  3443. smalltalk.addMethod(
  3444. '_asJSONObject',
  3445. smalltalk.method({
  3446. selector: 'asJSONObject',
  3447. fn: function (){
  3448. var self=this;
  3449. return self;
  3450. return self;}
  3451. }),
  3452. smalltalk.String);
  3453. smalltalk.addMethod(
  3454. '_trimLeft_',
  3455. smalltalk.method({
  3456. selector: 'trimLeft:',
  3457. fn: function (separators){
  3458. var self=this;
  3459. 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"]), ""]);
  3460. return self;}
  3461. }),
  3462. smalltalk.String);
  3463. smalltalk.addMethod(
  3464. '_trimRight_',
  3465. smalltalk.method({
  3466. selector: 'trimRight:',
  3467. fn: function (separators){
  3468. var self=this;
  3469. 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"]), ""]);
  3470. return self;}
  3471. }),
  3472. smalltalk.String);
  3473. smalltalk.addMethod(
  3474. '_trimLeft',
  3475. smalltalk.method({
  3476. selector: 'trimLeft',
  3477. fn: function (){
  3478. var self=this;
  3479. return smalltalk.send(self, "_trimLeft_", [unescape("%5Cs")]);
  3480. return self;}
  3481. }),
  3482. smalltalk.String);
  3483. smalltalk.addMethod(
  3484. '_trimRight',
  3485. smalltalk.method({
  3486. selector: 'trimRight',
  3487. fn: function (){
  3488. var self=this;
  3489. return smalltalk.send(self, "_trimRight_", [unescape("%5Cs")]);
  3490. return self;}
  3491. }),
  3492. smalltalk.String);
  3493. smalltalk.addMethod(
  3494. '_trimBoth',
  3495. smalltalk.method({
  3496. selector: 'trimBoth',
  3497. fn: function (){
  3498. var self=this;
  3499. return smalltalk.send(self, "_trimBoth_", [unescape("%5Cs")]);
  3500. return self;}
  3501. }),
  3502. smalltalk.String);
  3503. smalltalk.addMethod(
  3504. '_trimBoth_',
  3505. smalltalk.method({
  3506. selector: 'trimBoth:',
  3507. fn: function (separators){
  3508. var self=this;
  3509. return smalltalk.send(smalltalk.send(self, "_trimLeft_", [separators]), "_trimRight_", [separators]);
  3510. return self;}
  3511. }),
  3512. smalltalk.String);
  3513. smalltalk.addMethod(
  3514. '_asLowercase',
  3515. smalltalk.method({
  3516. selector: 'asLowercase',
  3517. fn: function (){
  3518. var self=this;
  3519. return self.toLowerCase();
  3520. return self;}
  3521. }),
  3522. smalltalk.String);
  3523. smalltalk.addMethod(
  3524. '_asUppercase',
  3525. smalltalk.method({
  3526. selector: 'asUppercase',
  3527. fn: function (){
  3528. var self=this;
  3529. return self.toUpperCase();
  3530. return self;}
  3531. }),
  3532. smalltalk.String);
  3533. smalltalk.addMethod(
  3534. '_join_',
  3535. smalltalk.method({
  3536. selector: 'join:',
  3537. fn: function (aCollection){
  3538. var self=this;
  3539. 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]);})]);})]);
  3540. return self;}
  3541. }),
  3542. smalltalk.String);
  3543. smalltalk.addMethod(
  3544. '_includesSubString_',
  3545. smalltalk.method({
  3546. selector: 'includesSubString:',
  3547. fn: function (subString){
  3548. var self=this;
  3549. return self.indexOf(subString) != -1 ;
  3550. return self;}
  3551. }),
  3552. smalltalk.String);
  3553. smalltalk.addMethod(
  3554. '_asciiValue',
  3555. smalltalk.method({
  3556. selector: 'asciiValue',
  3557. fn: function (){
  3558. var self=this;
  3559. return self.charCodeAt(0);;
  3560. return self;}
  3561. }),
  3562. smalltalk.String);
  3563. smalltalk.addMethod(
  3564. '_lineIndicesDo_',
  3565. smalltalk.method({
  3566. selector: 'lineIndicesDo:',
  3567. fn: function (aBlock){
  3568. var self=this;
  3569. try{var cr=nil;
  3570. var lf=nil;
  3571. var start=nil;
  3572. var sz=nil;
  3573. var nextLF=nil;
  3574. var nextCR=nil;
  3575. start=(1);
  3576. sz=smalltalk.send(self, "_size", []);
  3577. cr=smalltalk.send((smalltalk.String || String), "_cr", []);
  3578. nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, (1)]);
  3579. lf=smalltalk.send((smalltalk.String || String), "_lf", []);
  3580. nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, (1)]);
  3581. (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]);})]));})]));})()}})();
  3582. return self;
  3583. } catch(e) {if(e.name === 'stReturn' && e.selector === '_lineIndicesDo_'){return e.fn()} throw(e)}}
  3584. }),
  3585. smalltalk.String);
  3586. smalltalk.addMethod(
  3587. '_linesDo_',
  3588. smalltalk.method({
  3589. selector: 'linesDo:',
  3590. fn: function (aBlock){
  3591. var self=this;
  3592. smalltalk.send(self, "_lineIndicesDo_", [(function(start, endWithoutDelimiters, end){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_copyFrom_to_", [start, endWithoutDelimiters])]);})]);
  3593. return self;}
  3594. }),
  3595. smalltalk.String);
  3596. smalltalk.addMethod(
  3597. '_lines',
  3598. smalltalk.method({
  3599. selector: 'lines',
  3600. fn: function (){
  3601. var self=this;
  3602. var lines=nil;
  3603. lines=smalltalk.send((smalltalk.Array || Array), "_new", []);
  3604. smalltalk.send(self, "_linesDo_", [(function(aLine){return smalltalk.send(lines, "_add_", [aLine]);})]);
  3605. return lines;
  3606. return self;}
  3607. }),
  3608. smalltalk.String);
  3609. smalltalk.addMethod(
  3610. '_lineNumber_',
  3611. smalltalk.method({
  3612. selector: 'lineNumber:',
  3613. fn: function (anIndex){
  3614. var self=this;
  3615. try{var lineCount=nil;
  3616. lineCount=(0);
  3617. 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])}})})();})]));})]);
  3618. (function(){throw({name: 'stReturn', selector: '_lineNumber_', fn: function(){return nil}})})();
  3619. return self;
  3620. } catch(e) {if(e.name === 'stReturn' && e.selector === '_lineNumber_'){return e.fn()} throw(e)}}
  3621. }),
  3622. smalltalk.String);
  3623. smalltalk.addMethod(
  3624. '_reversed',
  3625. smalltalk.method({
  3626. selector: 'reversed',
  3627. fn: function (){
  3628. var self=this;
  3629. return self.split("").reverse().join("");
  3630. return self;}
  3631. }),
  3632. smalltalk.String);
  3633. smalltalk.addMethod(
  3634. '__eq_eq',
  3635. smalltalk.method({
  3636. selector: '==',
  3637. fn: function (aString){
  3638. var self=this;
  3639. 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}})})();})]));
  3640. return String(self) === String(aString);
  3641. return self;
  3642. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq_eq'){return e.fn()} throw(e)}}
  3643. }),
  3644. smalltalk.String);
  3645. smalltalk.addMethod(
  3646. '_asJavaScriptSelector',
  3647. smalltalk.method({
  3648. selector: 'asJavaScriptSelector',
  3649. fn: function (){
  3650. var self=this;
  3651. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_asSelector", []), "_replace_with_", [unescape("%5E_"), ""]), "_replace_with_", [unescape("_.*"), ""]);
  3652. return self;}
  3653. }),
  3654. smalltalk.String);
  3655. smalltalk.addMethod(
  3656. '_streamClass',
  3657. smalltalk.method({
  3658. selector: 'streamClass',
  3659. fn: function (){
  3660. var self=this;
  3661. return (smalltalk.StringStream || StringStream);
  3662. return self;}
  3663. }),
  3664. smalltalk.String.klass);
  3665. smalltalk.addMethod(
  3666. '_fromString_',
  3667. smalltalk.method({
  3668. selector: 'fromString:',
  3669. fn: function (aString){
  3670. var self=this;
  3671. return new self.fn(aString);
  3672. return self;}
  3673. }),
  3674. smalltalk.String.klass);
  3675. smalltalk.addMethod(
  3676. '_cr',
  3677. smalltalk.method({
  3678. selector: 'cr',
  3679. fn: function (){
  3680. var self=this;
  3681. return '\r';
  3682. return self;}
  3683. }),
  3684. smalltalk.String.klass);
  3685. smalltalk.addMethod(
  3686. '_lf',
  3687. smalltalk.method({
  3688. selector: 'lf',
  3689. fn: function (){
  3690. var self=this;
  3691. return '\n';
  3692. return self;}
  3693. }),
  3694. smalltalk.String.klass);
  3695. smalltalk.addMethod(
  3696. '_space',
  3697. smalltalk.method({
  3698. selector: 'space',
  3699. fn: function (){
  3700. var self=this;
  3701. return ' ';
  3702. return self;}
  3703. }),
  3704. smalltalk.String.klass);
  3705. smalltalk.addMethod(
  3706. '_tab',
  3707. smalltalk.method({
  3708. selector: 'tab',
  3709. fn: function (){
  3710. var self=this;
  3711. return '\t';
  3712. return self;}
  3713. }),
  3714. smalltalk.String.klass);
  3715. smalltalk.addMethod(
  3716. '_crlf',
  3717. smalltalk.method({
  3718. selector: 'crlf',
  3719. fn: function (){
  3720. var self=this;
  3721. return '\r\n';
  3722. return self;}
  3723. }),
  3724. smalltalk.String.klass);
  3725. smalltalk.addMethod(
  3726. '_streamContents_',
  3727. smalltalk.method({
  3728. selector: 'streamContents:',
  3729. fn: function (blockWithArg){
  3730. var self=this;
  3731. var stream=nil;
  3732. stream=smalltalk.send(smalltalk.send(self, "_streamClass", []), "_on_", [smalltalk.send((smalltalk.String || String), "_new", [])]);
  3733. smalltalk.send(blockWithArg, "_value_", [stream]);
  3734. return smalltalk.send(stream, "_contents", []);
  3735. return self;}
  3736. }),
  3737. smalltalk.String.klass);
  3738. smalltalk.addMethod(
  3739. '_value_',
  3740. smalltalk.method({
  3741. selector: 'value:',
  3742. fn: function (aUTFCharCode){
  3743. var self=this;
  3744. return String.fromCharCode(aUTFCharCode);;
  3745. return self;}
  3746. }),
  3747. smalltalk.String.klass);
  3748. smalltalk.addClass('Array', smalltalk.SequenceableCollection, [], 'Kernel');
  3749. smalltalk.addMethod(
  3750. '_size',
  3751. smalltalk.method({
  3752. selector: 'size',
  3753. fn: function (){
  3754. var self=this;
  3755. return self.length;
  3756. return self;}
  3757. }),
  3758. smalltalk.Array);
  3759. smalltalk.addMethod(
  3760. '_at_put_',
  3761. smalltalk.method({
  3762. selector: 'at:put:',
  3763. fn: function (anIndex, anObject){
  3764. var self=this;
  3765. return self[anIndex - 1] = anObject;
  3766. return self;}
  3767. }),
  3768. smalltalk.Array);
  3769. smalltalk.addMethod(
  3770. '_at_ifAbsent_',
  3771. smalltalk.method({
  3772. selector: 'at:ifAbsent:',
  3773. fn: function (anIndex, aBlock){
  3774. var self=this;
  3775. var value = self[anIndex - 1];
  3776. if(value === undefined) {
  3777. return aBlock();
  3778. } else {
  3779. return value;
  3780. }
  3781. ;
  3782. return self;}
  3783. }),
  3784. smalltalk.Array);
  3785. smalltalk.addMethod(
  3786. '_add_',
  3787. smalltalk.method({
  3788. selector: 'add:',
  3789. fn: function (anObject){
  3790. var self=this;
  3791. self.push(anObject); return anObject;;
  3792. return self;}
  3793. }),
  3794. smalltalk.Array);
  3795. smalltalk.addMethod(
  3796. '_shallowCopy',
  3797. smalltalk.method({
  3798. selector: 'shallowCopy',
  3799. fn: function (){
  3800. var self=this;
  3801. var newCollection=nil;
  3802. newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  3803. smalltalk.send(self, "_do_", [(function(each){return smalltalk.send(newCollection, "_add_", [each]);})]);
  3804. return newCollection;
  3805. return self;}
  3806. }),
  3807. smalltalk.Array);
  3808. smalltalk.addMethod(
  3809. '_deepCopy',
  3810. smalltalk.method({
  3811. selector: 'deepCopy',
  3812. fn: function (){
  3813. var self=this;
  3814. var newCollection=nil;
  3815. newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  3816. smalltalk.send(self, "_do_", [(function(each){return smalltalk.send(newCollection, "_add_", [smalltalk.send(each, "_deepCopy", [])]);})]);
  3817. return newCollection;
  3818. return self;}
  3819. }),
  3820. smalltalk.Array);
  3821. smalltalk.addMethod(
  3822. '_copyFrom_to_',
  3823. smalltalk.method({
  3824. selector: 'copyFrom:to:',
  3825. fn: function (anIndex, anotherIndex){
  3826. var self=this;
  3827. var array=nil;
  3828. array=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  3829. smalltalk.send(anIndex, "_to_do_", [anotherIndex, (function(each){return smalltalk.send(array, "_add_", [smalltalk.send(self, "_at_", [each])]);})]);
  3830. return array;
  3831. return self;}
  3832. }),
  3833. smalltalk.Array);
  3834. smalltalk.addMethod(
  3835. '_join_',
  3836. smalltalk.method({
  3837. selector: 'join:',
  3838. fn: function (aString){
  3839. var self=this;
  3840. return self.join(aString);
  3841. return self;}
  3842. }),
  3843. smalltalk.Array);
  3844. smalltalk.addMethod(
  3845. '_asJavascript',
  3846. smalltalk.method({
  3847. selector: 'asJavascript',
  3848. fn: function (){
  3849. var self=this;
  3850. 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")]);
  3851. return self;}
  3852. }),
  3853. smalltalk.Array);
  3854. smalltalk.addMethod(
  3855. '_sort',
  3856. smalltalk.method({
  3857. selector: 'sort',
  3858. fn: function (){
  3859. var self=this;
  3860. return smalltalk.send(self, "_basicPerform_", ["sort"]);
  3861. return self;}
  3862. }),
  3863. smalltalk.Array);
  3864. smalltalk.addMethod(
  3865. '_sort_',
  3866. smalltalk.method({
  3867. selector: 'sort:',
  3868. fn: function (aBlock){
  3869. var self=this;
  3870. return self.sort(function(a, b) {
  3871. if(aBlock(a,b)) {return -1} else {return 1}
  3872. })
  3873. ;
  3874. return self;}
  3875. }),
  3876. smalltalk.Array);
  3877. smalltalk.addMethod(
  3878. '_remove_',
  3879. smalltalk.method({
  3880. selector: 'remove:',
  3881. fn: function (anObject){
  3882. var self=this;
  3883. for(var i=0;i<self.length;i++) {
  3884. if(self[i] == anObject) {
  3885. self.splice(i,1);
  3886. break;
  3887. }
  3888. }
  3889. ;
  3890. return self;}
  3891. }),
  3892. smalltalk.Array);
  3893. smalltalk.addMethod(
  3894. '_sorted',
  3895. smalltalk.method({
  3896. selector: 'sorted',
  3897. fn: function (){
  3898. var self=this;
  3899. return smalltalk.send(smalltalk.send(self, "_copy", []), "_sort", []);
  3900. return self;}
  3901. }),
  3902. smalltalk.Array);
  3903. smalltalk.addMethod(
  3904. '_sorted_',
  3905. smalltalk.method({
  3906. selector: 'sorted:',
  3907. fn: function (aBlock){
  3908. var self=this;
  3909. return smalltalk.send(smalltalk.send(self, "_copy", []), "_sort_", [aBlock]);
  3910. return self;}
  3911. }),
  3912. smalltalk.Array);
  3913. smalltalk.addMethod(
  3914. '_asJSONObject',
  3915. smalltalk.method({
  3916. selector: 'asJSONObject',
  3917. fn: function (){
  3918. var self=this;
  3919. return smalltalk.send(self, "_collect_", [(function(each){return smalltalk.send(each, "_asJSONObject", []);})]);
  3920. return self;}
  3921. }),
  3922. smalltalk.Array);
  3923. smalltalk.addMethod(
  3924. '_removeFrom_to_',
  3925. smalltalk.method({
  3926. selector: 'removeFrom:to:',
  3927. fn: function (aNumber, anotherNumber){
  3928. var self=this;
  3929. self.splice(aNumber - 1,anotherNumber - 1);
  3930. return self;}
  3931. }),
  3932. smalltalk.Array);
  3933. smalltalk.addMethod(
  3934. '_printString',
  3935. smalltalk.method({
  3936. selector: 'printString',
  3937. fn: function (){
  3938. var self=this;
  3939. var str=nil;
  3940. str=smalltalk.send("", "_writeStream", []);
  3941. smalltalk.send(str, "_nextPutAll_", [smalltalk.send(smalltalk.send(self, "_printString", [], smalltalk.SequenceableCollection), "__comma", [unescape("%20%28")])]);
  3942. smalltalk.send(self, "_do_separatedBy_", [(function(each){return smalltalk.send(str, "_nextPutAll_", [smalltalk.send(each, "_printString", [])]);}), (function(){return smalltalk.send(str, "_nextPutAll_", [" "]);})]);
  3943. smalltalk.send(str, "_nextPutAll_", [unescape("%29")]);
  3944. return smalltalk.send(str, "_contents", []);
  3945. return self;}
  3946. }),
  3947. smalltalk.Array);
  3948. smalltalk.addMethod(
  3949. '_reversed',
  3950. smalltalk.method({
  3951. selector: 'reversed',
  3952. fn: function (){
  3953. var self=this;
  3954. return self._copy().reverse();
  3955. return self;}
  3956. }),
  3957. smalltalk.Array);
  3958. smalltalk.addMethod(
  3959. '__eq',
  3960. smalltalk.method({
  3961. selector: '=',
  3962. fn: function (aCollection){
  3963. var self=this;
  3964. 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}})})();})]));
  3965. 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}})})();})]));})]);
  3966. (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return true}})})();
  3967. return self;
  3968. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  3969. }),
  3970. smalltalk.Array);
  3971. smalltalk.addClass('RegularExpression', smalltalk.Object, [], 'Kernel');
  3972. smalltalk.addMethod(
  3973. '_compile_',
  3974. smalltalk.method({
  3975. selector: 'compile:',
  3976. fn: function (aString){
  3977. var self=this;
  3978. return self.compile(aString);
  3979. return self;}
  3980. }),
  3981. smalltalk.RegularExpression);
  3982. smalltalk.addMethod(
  3983. '_exec_',
  3984. smalltalk.method({
  3985. selector: 'exec:',
  3986. fn: function (aString){
  3987. var self=this;
  3988. return self.exec(aString) || nil;
  3989. return self;}
  3990. }),
  3991. smalltalk.RegularExpression);
  3992. smalltalk.addMethod(
  3993. '_test_',
  3994. smalltalk.method({
  3995. selector: 'test:',
  3996. fn: function (aString){
  3997. var self=this;
  3998. return self.test(aString);
  3999. return self;}
  4000. }),
  4001. smalltalk.RegularExpression);
  4002. smalltalk.addMethod(
  4003. '_fromString_flag_',
  4004. smalltalk.method({
  4005. selector: 'fromString:flag:',
  4006. fn: function (aString, anotherString){
  4007. var self=this;
  4008. return new RegExp(aString, anotherString);
  4009. return self;}
  4010. }),
  4011. smalltalk.RegularExpression.klass);
  4012. smalltalk.addMethod(
  4013. '_fromString_',
  4014. smalltalk.method({
  4015. selector: 'fromString:',
  4016. fn: function (aString){
  4017. var self=this;
  4018. return smalltalk.send(self, "_fromString_flag_", [aString, ""]);
  4019. return self;}
  4020. }),
  4021. smalltalk.RegularExpression.klass);
  4022. smalltalk.addClass('Error', smalltalk.Object, ['messageText'], 'Kernel');
  4023. smalltalk.addMethod(
  4024. '_messageText',
  4025. smalltalk.method({
  4026. selector: 'messageText',
  4027. fn: function (){
  4028. var self=this;
  4029. return self['@messageText'];
  4030. return self;}
  4031. }),
  4032. smalltalk.Error);
  4033. smalltalk.addMethod(
  4034. '_messageText_',
  4035. smalltalk.method({
  4036. selector: 'messageText:',
  4037. fn: function (aString){
  4038. var self=this;
  4039. self['@messageText']=aString;
  4040. return self;}
  4041. }),
  4042. smalltalk.Error);
  4043. smalltalk.addMethod(
  4044. '_signal',
  4045. smalltalk.method({
  4046. selector: 'signal',
  4047. fn: function (){
  4048. var self=this;
  4049. self.context = smalltalk.getThisContext(); self.smalltalkError = true; throw(self);
  4050. return self;}
  4051. }),
  4052. smalltalk.Error);
  4053. smalltalk.addMethod(
  4054. '_context',
  4055. smalltalk.method({
  4056. selector: 'context',
  4057. fn: function (){
  4058. var self=this;
  4059. return self.context;
  4060. return self;}
  4061. }),
  4062. smalltalk.Error);
  4063. smalltalk.addMethod(
  4064. '_signal_',
  4065. smalltalk.method({
  4066. selector: 'signal:',
  4067. fn: function (aString){
  4068. var self=this;
  4069. return (function($rec){smalltalk.send($rec, "_messageText_", [aString]);return smalltalk.send($rec, "_signal", []);})(smalltalk.send(self, "_new", []));
  4070. return self;}
  4071. }),
  4072. smalltalk.Error.klass);
  4073. smalltalk.addClass('MethodContext', smalltalk.Object, [], 'Kernel');
  4074. smalltalk.addMethod(
  4075. '_receiver',
  4076. smalltalk.method({
  4077. selector: 'receiver',
  4078. fn: function (){
  4079. var self=this;
  4080. return self.receiver;
  4081. return self;}
  4082. }),
  4083. smalltalk.MethodContext);
  4084. smalltalk.addMethod(
  4085. '_selector',
  4086. smalltalk.method({
  4087. selector: 'selector',
  4088. fn: function (){
  4089. var self=this;
  4090. return smalltalk.convertSelector(self.selector);
  4091. return self;}
  4092. }),
  4093. smalltalk.MethodContext);
  4094. smalltalk.addMethod(
  4095. '_home',
  4096. smalltalk.method({
  4097. selector: 'home',
  4098. fn: function (){
  4099. var self=this;
  4100. return self.homeContext;
  4101. return self;}
  4102. }),
  4103. smalltalk.MethodContext);
  4104. smalltalk.addMethod(
  4105. '_temps',
  4106. smalltalk.method({
  4107. selector: 'temps',
  4108. fn: function (){
  4109. var self=this;
  4110. return self.temps;
  4111. return self;}
  4112. }),
  4113. smalltalk.MethodContext);
  4114. smalltalk.addMethod(
  4115. '_printString',
  4116. smalltalk.method({
  4117. selector: 'printString',
  4118. fn: function (){
  4119. var self=this;
  4120. return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_printString", [], smalltalk.Object), "__comma", [unescape("%28")]), "__comma", [smalltalk.send(self, "_asString", [])]), "__comma", [unescape("%29")]);
  4121. return self;}
  4122. }),
  4123. smalltalk.MethodContext);
  4124. smalltalk.addMethod(
  4125. '_asString',
  4126. smalltalk.method({
  4127. selector: 'asString',
  4128. fn: function (){
  4129. var self=this;
  4130. 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", [])]);
  4131. return self;}
  4132. }),
  4133. smalltalk.MethodContext);
  4134. smalltalk.addClass('Association', smalltalk.Object, ['key', 'value'], 'Kernel');
  4135. smalltalk.addMethod(
  4136. '__eq',
  4137. smalltalk.method({
  4138. selector: '=',
  4139. fn: function (anAssociation){
  4140. var self=this;
  4141. 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", [])]);})]);})]);
  4142. return self;}
  4143. }),
  4144. smalltalk.Association);
  4145. smalltalk.addMethod(
  4146. '_key_',
  4147. smalltalk.method({
  4148. selector: 'key:',
  4149. fn: function (aKey){
  4150. var self=this;
  4151. self['@key']=aKey;
  4152. return self;}
  4153. }),
  4154. smalltalk.Association);
  4155. smalltalk.addMethod(
  4156. '_key',
  4157. smalltalk.method({
  4158. selector: 'key',
  4159. fn: function (){
  4160. var self=this;
  4161. return self['@key'];
  4162. return self;}
  4163. }),
  4164. smalltalk.Association);
  4165. smalltalk.addMethod(
  4166. '_value_',
  4167. smalltalk.method({
  4168. selector: 'value:',
  4169. fn: function (aValue){
  4170. var self=this;
  4171. self['@value']=aValue;
  4172. return self;}
  4173. }),
  4174. smalltalk.Association);
  4175. smalltalk.addMethod(
  4176. '_value',
  4177. smalltalk.method({
  4178. selector: 'value',
  4179. fn: function (){
  4180. var self=this;
  4181. return self['@value'];
  4182. return self;}
  4183. }),
  4184. smalltalk.Association);
  4185. smalltalk.addMethod(
  4186. '_key_value_',
  4187. smalltalk.method({
  4188. selector: 'key:value:',
  4189. fn: function (aKey, aValue){
  4190. var self=this;
  4191. return (function($rec){smalltalk.send($rec, "_key_", [aKey]);smalltalk.send($rec, "_value_", [aValue]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  4192. return self;}
  4193. }),
  4194. smalltalk.Association.klass);
  4195. smalltalk.addClass('Dictionary', smalltalk.Collection, ['keys'], 'Kernel');
  4196. smalltalk.addMethod(
  4197. '__eq',
  4198. smalltalk.method({
  4199. selector: '=',
  4200. fn: function (aDictionary){
  4201. var self=this;
  4202. 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}})})();})]));
  4203. ((($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}})})();})]));
  4204. (function(){throw({name: 'stReturn', selector: '__eq', fn: function(){return smalltalk.send(smalltalk.send(self, "_associations", []), "__eq", [smalltalk.send(aDictionary, "_associations", [])])}})})();
  4205. return self;
  4206. } catch(e) {if(e.name === 'stReturn' && e.selector === '__eq'){return e.fn()} throw(e)}}
  4207. }),
  4208. smalltalk.Dictionary);
  4209. smalltalk.addMethod(
  4210. '_shallowCopy',
  4211. smalltalk.method({
  4212. selector: 'shallowCopy',
  4213. fn: function (){
  4214. var self=this;
  4215. var copy=nil;
  4216. copy=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  4217. smalltalk.send(self, "_associationsDo_", [(function(each){return smalltalk.send(copy, "_at_put_", [smalltalk.send(each, "_key", []), smalltalk.send(each, "_value", [])]);})]);
  4218. return copy;
  4219. return self;}
  4220. }),
  4221. smalltalk.Dictionary);
  4222. smalltalk.addMethod(
  4223. '_initialize',
  4224. smalltalk.method({
  4225. selector: 'initialize',
  4226. fn: function (){
  4227. var self=this;
  4228. smalltalk.send(self, "_initialize", [], smalltalk.Collection);
  4229. self['@keys']=[];
  4230. return self;}
  4231. }),
  4232. smalltalk.Dictionary);
  4233. smalltalk.addMethod(
  4234. '_size',
  4235. smalltalk.method({
  4236. selector: 'size',
  4237. fn: function (){
  4238. var self=this;
  4239. return smalltalk.send(self['@keys'], "_size", []);
  4240. return self;}
  4241. }),
  4242. smalltalk.Dictionary);
  4243. smalltalk.addMethod(
  4244. '_associations',
  4245. smalltalk.method({
  4246. selector: 'associations',
  4247. fn: function (){
  4248. var self=this;
  4249. var associations=nil;
  4250. associations=[];
  4251. 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])])]);})]);
  4252. return associations;
  4253. return self;}
  4254. }),
  4255. smalltalk.Dictionary);
  4256. smalltalk.addMethod(
  4257. '_keys',
  4258. smalltalk.method({
  4259. selector: 'keys',
  4260. fn: function (){
  4261. var self=this;
  4262. return smalltalk.send(self['@keys'], "_copy", []);
  4263. return self;}
  4264. }),
  4265. smalltalk.Dictionary);
  4266. smalltalk.addMethod(
  4267. '_values',
  4268. smalltalk.method({
  4269. selector: 'values',
  4270. fn: function (){
  4271. var self=this;
  4272. return smalltalk.send(self['@keys'], "_collect_", [(function(each){return smalltalk.send(self, "_at_", [each]);})]);
  4273. return self;}
  4274. }),
  4275. smalltalk.Dictionary);
  4276. smalltalk.addMethod(
  4277. '_at_put_',
  4278. smalltalk.method({
  4279. selector: 'at:put:',
  4280. fn: function (aKey, aValue){
  4281. var self=this;
  4282. ((($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]);})]));
  4283. return smalltalk.send(self, "_basicAt_put_", [aKey, aValue]);
  4284. return self;}
  4285. }),
  4286. smalltalk.Dictionary);
  4287. smalltalk.addMethod(
  4288. '_at_ifAbsent_',
  4289. smalltalk.method({
  4290. selector: 'at:ifAbsent:',
  4291. fn: function (aKey, aBlock){
  4292. var self=this;
  4293. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_keys", []), "_includes_", [aKey]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self, "_basicAt_", [aKey]);}), aBlock]);
  4294. return self;}
  4295. }),
  4296. smalltalk.Dictionary);
  4297. smalltalk.addMethod(
  4298. '_at_ifAbsentPut_',
  4299. smalltalk.method({
  4300. selector: 'at:ifAbsentPut:',
  4301. fn: function (aKey, aBlock){
  4302. var self=this;
  4303. return smalltalk.send(self, "_at_ifAbsent_", [aKey, (function(){return smalltalk.send(self, "_at_put_", [aKey, smalltalk.send(aBlock, "_value", [])]);})]);
  4304. return self;}
  4305. }),
  4306. smalltalk.Dictionary);
  4307. smalltalk.addMethod(
  4308. '_at_ifPresent_',
  4309. smalltalk.method({
  4310. selector: 'at:ifPresent:',
  4311. fn: function (aKey, aBlock){
  4312. var self=this;
  4313. return (($receiver = smalltalk.send(self, "_basicAt_", [aKey])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_at_", [aKey])]);})() : nil;
  4314. return self;}
  4315. }),
  4316. smalltalk.Dictionary);
  4317. smalltalk.addMethod(
  4318. '_at_ifPresent_ifAbsent_',
  4319. smalltalk.method({
  4320. selector: 'at:ifPresent:ifAbsent:',
  4321. fn: function (aKey, aBlock, anotherBlock){
  4322. var self=this;
  4323. return smalltalk.send(smalltalk.send(self, "_basicAt_", [aKey]), "_ifNil_ifNotNil_", [anotherBlock, (function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_at_", [aKey])]);})]);
  4324. return self;}
  4325. }),
  4326. smalltalk.Dictionary);
  4327. smalltalk.addMethod(
  4328. '_add_',
  4329. smalltalk.method({
  4330. selector: 'add:',
  4331. fn: function (anAssociation){
  4332. var self=this;
  4333. smalltalk.send(self, "_at_put_", [smalltalk.send(anAssociation, "_key", []), smalltalk.send(anAssociation, "_value", [])]);
  4334. return self;}
  4335. }),
  4336. smalltalk.Dictionary);
  4337. smalltalk.addMethod(
  4338. '_addAll_',
  4339. smalltalk.method({
  4340. selector: 'addAll:',
  4341. fn: function (aDictionary){
  4342. var self=this;
  4343. smalltalk.send(self, "_addAll_", [smalltalk.send(aDictionary, "_associations", [])], smalltalk.Collection);
  4344. return aDictionary;
  4345. return self;}
  4346. }),
  4347. smalltalk.Dictionary);
  4348. smalltalk.addMethod(
  4349. '__comma',
  4350. smalltalk.method({
  4351. selector: ',',
  4352. fn: function (aCollection){
  4353. var self=this;
  4354. smalltalk.send(self, "_shouldNotImplement", []);
  4355. return self;}
  4356. }),
  4357. smalltalk.Dictionary);
  4358. smalltalk.addMethod(
  4359. '_copyFrom_to_',
  4360. smalltalk.method({
  4361. selector: 'copyFrom:to:',
  4362. fn: function (anIndex, anotherIndex){
  4363. var self=this;
  4364. smalltalk.send(self, "_shouldNotImplement", []);
  4365. return self;}
  4366. }),
  4367. smalltalk.Dictionary);
  4368. smalltalk.addMethod(
  4369. '_associationsDo_',
  4370. smalltalk.method({
  4371. selector: 'associationsDo:',
  4372. fn: function (aBlock){
  4373. var self=this;
  4374. smalltalk.send(smalltalk.send(self, "_associations", []), "_do_", [aBlock]);
  4375. return self;}
  4376. }),
  4377. smalltalk.Dictionary);
  4378. smalltalk.addMethod(
  4379. '_keysAndValuesDo_',
  4380. smalltalk.method({
  4381. selector: 'keysAndValuesDo:',
  4382. fn: function (aBlock){
  4383. var self=this;
  4384. smalltalk.send(self, "_associationsDo_", [(function(each){return smalltalk.send(aBlock, "_value_value_", [smalltalk.send(each, "_key", []), smalltalk.send(each, "_value", [])]);})]);
  4385. return self;}
  4386. }),
  4387. smalltalk.Dictionary);
  4388. smalltalk.addMethod(
  4389. '_do_',
  4390. smalltalk.method({
  4391. selector: 'do:',
  4392. fn: function (aBlock){
  4393. var self=this;
  4394. smalltalk.send(smalltalk.send(self, "_values", []), "_do_", [aBlock]);
  4395. return self;}
  4396. }),
  4397. smalltalk.Dictionary);
  4398. smalltalk.addMethod(
  4399. '_select_',
  4400. smalltalk.method({
  4401. selector: 'select:',
  4402. fn: function (aBlock){
  4403. var self=this;
  4404. var newDict=nil;
  4405. newDict=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  4406. 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]);})]));})]);
  4407. return newDict;
  4408. return self;}
  4409. }),
  4410. smalltalk.Dictionary);
  4411. smalltalk.addMethod(
  4412. '_collect_',
  4413. smalltalk.method({
  4414. selector: 'collect:',
  4415. fn: function (aBlock){
  4416. var self=this;
  4417. var newDict=nil;
  4418. newDict=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []);
  4419. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(newDict, "_at_put_", [key, smalltalk.send(aBlock, "_value_", [value])]);})]);
  4420. return newDict;
  4421. return self;}
  4422. }),
  4423. smalltalk.Dictionary);
  4424. smalltalk.addMethod(
  4425. '_detect_ifNone_',
  4426. smalltalk.method({
  4427. selector: 'detect:ifNone:',
  4428. fn: function (aBlock, anotherBlock){
  4429. var self=this;
  4430. return smalltalk.send(smalltalk.send(self, "_values", []), "_detect_ifNone_", [aBlock, anotherBlock]);
  4431. return self;}
  4432. }),
  4433. smalltalk.Dictionary);
  4434. smalltalk.addMethod(
  4435. '_includes_',
  4436. smalltalk.method({
  4437. selector: 'includes:',
  4438. fn: function (anObject){
  4439. var self=this;
  4440. return smalltalk.send(smalltalk.send(self, "_values", []), "_includes_", [anObject]);
  4441. return self;}
  4442. }),
  4443. smalltalk.Dictionary);
  4444. smalltalk.addMethod(
  4445. '_remove_',
  4446. smalltalk.method({
  4447. selector: 'remove:',
  4448. fn: function (aKey){
  4449. var self=this;
  4450. smalltalk.send(self, "_removeKey_", [aKey]);
  4451. return self;}
  4452. }),
  4453. smalltalk.Dictionary);
  4454. smalltalk.addMethod(
  4455. '_removeKey_',
  4456. smalltalk.method({
  4457. selector: 'removeKey:',
  4458. fn: function (aKey){
  4459. var self=this;
  4460. smalltalk.send(self['@keys'], "_remove_", [aKey]);
  4461. return self;}
  4462. }),
  4463. smalltalk.Dictionary);
  4464. smalltalk.addMethod(
  4465. '_at_',
  4466. smalltalk.method({
  4467. selector: 'at:',
  4468. fn: function (aKey){
  4469. var self=this;
  4470. return smalltalk.send(self, "_at_ifAbsent_", [aKey, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  4471. return self;}
  4472. }),
  4473. smalltalk.Dictionary);
  4474. smalltalk.addMethod(
  4475. '_asJSONObject',
  4476. smalltalk.method({
  4477. selector: 'asJSONObject',
  4478. fn: function (){
  4479. var self=this;
  4480. var object=nil;
  4481. object=smalltalk.send((smalltalk.Object || Object), "_new", []);
  4482. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(object, "_basicAt_put_", [key, smalltalk.send(value, "_asJSONObject", [])]);})]);
  4483. return object;
  4484. return self;}
  4485. }),
  4486. smalltalk.Dictionary);
  4487. smalltalk.addMethod(
  4488. '_printString',
  4489. smalltalk.method({
  4490. selector: 'printString',
  4491. fn: function (){
  4492. var self=this;
  4493. 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")]);})]);
  4494. return self;}
  4495. }),
  4496. smalltalk.Dictionary);
  4497. smalltalk.addMethod(
  4498. '_fromPairs_',
  4499. smalltalk.method({
  4500. selector: 'fromPairs:',
  4501. fn: function (aCollection){
  4502. var self=this;
  4503. var dict=nil;
  4504. dict=smalltalk.send(self, "_new", []);
  4505. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(dict, "_add_", [each]);})]);
  4506. return dict;
  4507. return self;}
  4508. }),
  4509. smalltalk.Dictionary.klass);
  4510. smalltalk.addClass('ClassBuilder', smalltalk.Object, [], 'Kernel');
  4511. smalltalk.addMethod(
  4512. '_superclass_subclass_',
  4513. smalltalk.method({
  4514. selector: 'superclass:subclass:',
  4515. fn: function (aClass, aString){
  4516. var self=this;
  4517. return smalltalk.send(self, "_superclass_subclass_instanceVariableNames_package_", [aClass, aString, "", nil]);
  4518. return self;}
  4519. }),
  4520. smalltalk.ClassBuilder);
  4521. smalltalk.addMethod(
  4522. '_class_instanceVariableNames_',
  4523. smalltalk.method({
  4524. selector: 'class:instanceVariableNames:',
  4525. fn: function (aClass, aString){
  4526. var self=this;
  4527. ((($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"])]);})]));
  4528. smalltalk.send(aClass, "_basicAt_put_", ["iVarNames", smalltalk.send(self, "_instanceVariableNamesFor_", [aString])]);
  4529. smalltalk.send(self, "_setupClass_", [aClass]);
  4530. return self;}
  4531. }),
  4532. smalltalk.ClassBuilder);
  4533. smalltalk.addMethod(
  4534. '_instanceVariableNamesFor_',
  4535. smalltalk.method({
  4536. selector: 'instanceVariableNamesFor:',
  4537. fn: function (aString){
  4538. var self=this;
  4539. return smalltalk.send(smalltalk.send(aString, "_tokenize_", [" "]), "_reject_", [(function(each){return smalltalk.send(each, "_isEmpty", []);})]);
  4540. return self;}
  4541. }),
  4542. smalltalk.ClassBuilder);
  4543. smalltalk.addMethod(
  4544. '_addSubclassOf_named_instanceVariableNames_',
  4545. smalltalk.method({
  4546. selector: 'addSubclassOf:named:instanceVariableNames:',
  4547. fn: function (aClass, aString, aCollection){
  4548. var self=this;
  4549. smalltalk.addClass(aString, aClass, aCollection);
  4550. return smalltalk[aString];
  4551. return self;}
  4552. }),
  4553. smalltalk.ClassBuilder);
  4554. smalltalk.addMethod(
  4555. '_setupClass_',
  4556. smalltalk.method({
  4557. selector: 'setupClass:',
  4558. fn: function (aClass){
  4559. var self=this;
  4560. smalltalk.init(aClass);;
  4561. return self;}
  4562. }),
  4563. smalltalk.ClassBuilder);
  4564. smalltalk.addMethod(
  4565. '_superclass_subclass_instanceVariableNames_module_',
  4566. smalltalk.method({
  4567. selector: 'superclass:subclass:instanceVariableNames:module:',
  4568. fn: function (aClass, aString, aString2, aString3){
  4569. var self=this;
  4570. var newClass=nil;
  4571. newClass=smalltalk.send(self, "_addSubclassOf_named_instanceVariableNames_module_", [aClass, aString, smalltalk.send(self, "_instanceVariableNamesFor_", [aString2]), (($receiver = aString3) == nil || $receiver == undefined) ? (function(){return "unclassified";})() : $receiver]);
  4572. smalltalk.send(self, "_setupClass_", [newClass]);
  4573. return self;}
  4574. }),
  4575. smalltalk.ClassBuilder);
  4576. smalltalk.addMethod(
  4577. '_addSubclassOf_named_instanceVariableNames_module_',
  4578. smalltalk.method({
  4579. selector: 'addSubclassOf:named:instanceVariableNames:module:',
  4580. fn: function (aClass, aString, aCollection, moduleName){
  4581. var self=this;
  4582. smalltalk.addClass(aString, aClass, aCollection, moduleName);
  4583. return smalltalk[aString];
  4584. return self;}
  4585. }),
  4586. smalltalk.ClassBuilder);
  4587. smalltalk.addMethod(
  4588. '_superclass_subclass_instanceVariableNames_package_',
  4589. smalltalk.method({
  4590. selector: 'superclass:subclass:instanceVariableNames:package:',
  4591. fn: function (aClass, aString, aString2, aString3){
  4592. var self=this;
  4593. var newClass=nil;
  4594. newClass=smalltalk.send(self, "_addSubclassOf_named_instanceVariableNames_package_", [aClass, aString, smalltalk.send(self, "_instanceVariableNamesFor_", [aString2]), (($receiver = aString3) == nil || $receiver == undefined) ? (function(){return "unclassified";})() : $receiver]);
  4595. smalltalk.send(self, "_setupClass_", [newClass]);
  4596. return self;}
  4597. }),
  4598. smalltalk.ClassBuilder);
  4599. smalltalk.addMethod(
  4600. '_addSubclassOf_named_instanceVariableNames_package_',
  4601. smalltalk.method({
  4602. selector: 'addSubclassOf:named:instanceVariableNames:package:',
  4603. fn: function (aClass, aString, aCollection, packageName){
  4604. var self=this;
  4605. smalltalk.addClass(aString, aClass, aCollection, packageName);
  4606. return smalltalk[aString];
  4607. return self;}
  4608. }),
  4609. smalltalk.ClassBuilder);
  4610. smalltalk.addClass('ClassCategoryReader', smalltalk.Object, ['class', 'category', 'chunkParser'], 'Kernel');
  4611. smalltalk.addMethod(
  4612. '_initialize',
  4613. smalltalk.method({
  4614. selector: 'initialize',
  4615. fn: function (){
  4616. var self=this;
  4617. smalltalk.send(self, "_initialize", [], smalltalk.Object);
  4618. self['@chunkParser']=smalltalk.send((smalltalk.ChunkParser || ChunkParser), "_new", []);
  4619. return self;}
  4620. }),
  4621. smalltalk.ClassCategoryReader);
  4622. smalltalk.addMethod(
  4623. '_class_category_',
  4624. smalltalk.method({
  4625. selector: 'class:category:',
  4626. fn: function (aClass, aString){
  4627. var self=this;
  4628. self['@class']=aClass;
  4629. self['@category']=aString;
  4630. return self;}
  4631. }),
  4632. smalltalk.ClassCategoryReader);
  4633. smalltalk.addMethod(
  4634. '_scanFrom_',
  4635. smalltalk.method({
  4636. selector: 'scanFrom:',
  4637. fn: function (aChunkParser){
  4638. var self=this;
  4639. var chunk=nil;
  4640. (function(){while(!(function(){chunk=smalltalk.send(aChunkParser, "_nextChunk", []);return smalltalk.send(chunk, "_isEmpty", []);})()) {(function(){return smalltalk.send(self, "_compileMethod_", [chunk]);})()}})();
  4641. return self;}
  4642. }),
  4643. smalltalk.ClassCategoryReader);
  4644. smalltalk.addMethod(
  4645. '_compileMethod_',
  4646. smalltalk.method({
  4647. selector: 'compileMethod:',
  4648. fn: function (aString){
  4649. var self=this;
  4650. var method=nil;
  4651. method=smalltalk.send(smalltalk.send((smalltalk.Compiler || Compiler), "_new", []), "_load_forClass_", [aString, self['@class']]);
  4652. smalltalk.send(method, "_category_", [self['@category']]);
  4653. smalltalk.send(self['@class'], "_addCompiledMethod_", [method]);
  4654. return self;}
  4655. }),
  4656. smalltalk.ClassCategoryReader);
  4657. smalltalk.addClass('Stream', smalltalk.Object, ['collection', 'position', 'streamSize'], 'Kernel');
  4658. smalltalk.addMethod(
  4659. '_collection',
  4660. smalltalk.method({
  4661. selector: 'collection',
  4662. fn: function (){
  4663. var self=this;
  4664. return self['@collection'];
  4665. return self;}
  4666. }),
  4667. smalltalk.Stream);
  4668. smalltalk.addMethod(
  4669. '_setCollection_',
  4670. smalltalk.method({
  4671. selector: 'setCollection:',
  4672. fn: function (aCollection){
  4673. var self=this;
  4674. self['@collection']=aCollection;
  4675. return self;}
  4676. }),
  4677. smalltalk.Stream);
  4678. smalltalk.addMethod(
  4679. '_position',
  4680. smalltalk.method({
  4681. selector: 'position',
  4682. fn: function (){
  4683. var self=this;
  4684. return (($receiver = self['@position']) == nil || $receiver == undefined) ? (function(){return self['@position']=(0);})() : $receiver;
  4685. return self;}
  4686. }),
  4687. smalltalk.Stream);
  4688. smalltalk.addMethod(
  4689. '_position_',
  4690. smalltalk.method({
  4691. selector: 'position:',
  4692. fn: function (anInteger){
  4693. var self=this;
  4694. self['@position']=anInteger;
  4695. return self;}
  4696. }),
  4697. smalltalk.Stream);
  4698. smalltalk.addMethod(
  4699. '_streamSize',
  4700. smalltalk.method({
  4701. selector: 'streamSize',
  4702. fn: function (){
  4703. var self=this;
  4704. return self['@streamSize'];
  4705. return self;}
  4706. }),
  4707. smalltalk.Stream);
  4708. smalltalk.addMethod(
  4709. '_setStreamSize_',
  4710. smalltalk.method({
  4711. selector: 'setStreamSize:',
  4712. fn: function (anInteger){
  4713. var self=this;
  4714. self['@streamSize']=anInteger;
  4715. return self;}
  4716. }),
  4717. smalltalk.Stream);
  4718. smalltalk.addMethod(
  4719. '_contents',
  4720. smalltalk.method({
  4721. selector: 'contents',
  4722. fn: function (){
  4723. var self=this;
  4724. return smalltalk.send(smalltalk.send(self, "_collection", []), "_copyFrom_to_", [(1), smalltalk.send(self, "_streamSize", [])]);
  4725. return self;}
  4726. }),
  4727. smalltalk.Stream);
  4728. smalltalk.addMethod(
  4729. '_size',
  4730. smalltalk.method({
  4731. selector: 'size',
  4732. fn: function (){
  4733. var self=this;
  4734. return smalltalk.send(self, "_streamSize", []);
  4735. return self;}
  4736. }),
  4737. smalltalk.Stream);
  4738. smalltalk.addMethod(
  4739. '_reset',
  4740. smalltalk.method({
  4741. selector: 'reset',
  4742. fn: function (){
  4743. var self=this;
  4744. smalltalk.send(self, "_position_", [(0)]);
  4745. return self;}
  4746. }),
  4747. smalltalk.Stream);
  4748. smalltalk.addMethod(
  4749. '_close',
  4750. smalltalk.method({
  4751. selector: 'close',
  4752. fn: function (){
  4753. var self=this;
  4754. return self;}
  4755. }),
  4756. smalltalk.Stream);
  4757. smalltalk.addMethod(
  4758. '_flush',
  4759. smalltalk.method({
  4760. selector: 'flush',
  4761. fn: function (){
  4762. var self=this;
  4763. return self;}
  4764. }),
  4765. smalltalk.Stream);
  4766. smalltalk.addMethod(
  4767. '_resetContents',
  4768. smalltalk.method({
  4769. selector: 'resetContents',
  4770. fn: function (){
  4771. var self=this;
  4772. smalltalk.send(self, "_reset", []);
  4773. smalltalk.send(self, "_setStreamSize_", [(0)]);
  4774. return self;}
  4775. }),
  4776. smalltalk.Stream);
  4777. smalltalk.addMethod(
  4778. '_do_',
  4779. smalltalk.method({
  4780. selector: 'do:',
  4781. fn: function (aBlock){
  4782. var self=this;
  4783. (function(){while(!(function(){return smalltalk.send(self, "_atEnd", []);})()) {(function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_next", [])]);})()}})();
  4784. return self;}
  4785. }),
  4786. smalltalk.Stream);
  4787. smalltalk.addMethod(
  4788. '_setToEnd',
  4789. smalltalk.method({
  4790. selector: 'setToEnd',
  4791. fn: function (){
  4792. var self=this;
  4793. smalltalk.send(self, "_position_", [smalltalk.send(self, "_size", [])]);
  4794. return self;}
  4795. }),
  4796. smalltalk.Stream);
  4797. smalltalk.addMethod(
  4798. '_skip_',
  4799. smalltalk.method({
  4800. selector: 'skip:',
  4801. fn: function (anInteger){
  4802. var self=this;
  4803. 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)])]);
  4804. return self;}
  4805. }),
  4806. smalltalk.Stream);
  4807. smalltalk.addMethod(
  4808. '_next',
  4809. smalltalk.method({
  4810. selector: 'next',
  4811. fn: function (){
  4812. var self=this;
  4813. smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);
  4814. return smalltalk.send(self['@collection'], "_at_", [smalltalk.send(self, "_position", [])]);
  4815. return self;}
  4816. }),
  4817. smalltalk.Stream);
  4818. smalltalk.addMethod(
  4819. '_next_',
  4820. smalltalk.method({
  4821. selector: 'next:',
  4822. fn: function (anInteger){
  4823. var self=this;
  4824. var tempCollection=nil;
  4825. tempCollection=smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_class", []), "_new", []);
  4826. 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", [])]);})]));})]);
  4827. return tempCollection;
  4828. return self;}
  4829. }),
  4830. smalltalk.Stream);
  4831. smalltalk.addMethod(
  4832. '_nextPut_',
  4833. smalltalk.method({
  4834. selector: 'nextPut:',
  4835. fn: function (anObject){
  4836. var self=this;
  4837. smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);
  4838. smalltalk.send(smalltalk.send(self, "_collection", []), "_at_put_", [smalltalk.send(self, "_position", []), anObject]);
  4839. smalltalk.send(self, "_setStreamSize_", [smalltalk.send(smalltalk.send(self, "_streamSize", []), "_max_", [smalltalk.send(self, "_position", [])])]);
  4840. return self;}
  4841. }),
  4842. smalltalk.Stream);
  4843. smalltalk.addMethod(
  4844. '_nextPutAll_',
  4845. smalltalk.method({
  4846. selector: 'nextPutAll:',
  4847. fn: function (aCollection){
  4848. var self=this;
  4849. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(self, "_nextPut_", [each]);})]);
  4850. return self;}
  4851. }),
  4852. smalltalk.Stream);
  4853. smalltalk.addMethod(
  4854. '_peek',
  4855. smalltalk.method({
  4856. selector: 'peek',
  4857. fn: function (){
  4858. var self=this;
  4859. 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)]))]);})]));
  4860. return self;}
  4861. }),
  4862. smalltalk.Stream);
  4863. smalltalk.addMethod(
  4864. '_atEnd',
  4865. smalltalk.method({
  4866. selector: 'atEnd',
  4867. fn: function (){
  4868. var self=this;
  4869. return smalltalk.send(smalltalk.send(self, "_position", []), "__eq", [smalltalk.send(self, "_size", [])]);
  4870. return self;}
  4871. }),
  4872. smalltalk.Stream);
  4873. smalltalk.addMethod(
  4874. '_atStart',
  4875. smalltalk.method({
  4876. selector: 'atStart',
  4877. fn: function (){
  4878. var self=this;
  4879. return smalltalk.send(smalltalk.send(self, "_position", []), "__eq", [(0)]);
  4880. return self;}
  4881. }),
  4882. smalltalk.Stream);
  4883. smalltalk.addMethod(
  4884. '_isEmpty',
  4885. smalltalk.method({
  4886. selector: 'isEmpty',
  4887. fn: function (){
  4888. var self=this;
  4889. return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [(0)]);
  4890. return self;}
  4891. }),
  4892. smalltalk.Stream);
  4893. smalltalk.addMethod(
  4894. '_on_',
  4895. smalltalk.method({
  4896. selector: 'on:',
  4897. fn: function (aCollection){
  4898. var self=this;
  4899. 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", []));
  4900. return self;}
  4901. }),
  4902. smalltalk.Stream.klass);
  4903. smalltalk.addClass('StringStream', smalltalk.Stream, [], 'Kernel');
  4904. smalltalk.addMethod(
  4905. '_next_',
  4906. smalltalk.method({
  4907. selector: 'next:',
  4908. fn: function (anInteger){
  4909. var self=this;
  4910. var tempCollection=nil;
  4911. tempCollection=smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_class", []), "_new", []);
  4912. 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", [])]);})]));})]);
  4913. return tempCollection;
  4914. return self;}
  4915. }),
  4916. smalltalk.StringStream);
  4917. smalltalk.addMethod(
  4918. '_nextPut_',
  4919. smalltalk.method({
  4920. selector: 'nextPut:',
  4921. fn: function (aString){
  4922. var self=this;
  4923. smalltalk.send(self, "_nextPutAll_", [aString]);
  4924. return self;}
  4925. }),
  4926. smalltalk.StringStream);
  4927. smalltalk.addMethod(
  4928. '_nextPutAll_',
  4929. smalltalk.method({
  4930. selector: 'nextPutAll:',
  4931. fn: function (aString){
  4932. var self=this;
  4933. 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", [])])])]);
  4934. 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", [])]))]);
  4935. smalltalk.send(self, "_setStreamSize_", [smalltalk.send(smalltalk.send(self, "_streamSize", []), "_max_", [smalltalk.send(self, "_position", [])])]);
  4936. return self;}
  4937. }),
  4938. smalltalk.StringStream);
  4939. smalltalk.addMethod(
  4940. '_cr',
  4941. smalltalk.method({
  4942. selector: 'cr',
  4943. fn: function (){
  4944. var self=this;
  4945. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_cr", [])]);
  4946. return self;}
  4947. }),
  4948. smalltalk.StringStream);
  4949. smalltalk.addMethod(
  4950. '_crlf',
  4951. smalltalk.method({
  4952. selector: 'crlf',
  4953. fn: function (){
  4954. var self=this;
  4955. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_crlf", [])]);
  4956. return self;}
  4957. }),
  4958. smalltalk.StringStream);
  4959. smalltalk.addMethod(
  4960. '_lf',
  4961. smalltalk.method({
  4962. selector: 'lf',
  4963. fn: function (){
  4964. var self=this;
  4965. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_lf", [])]);
  4966. return self;}
  4967. }),
  4968. smalltalk.StringStream);
  4969. smalltalk.addMethod(
  4970. '_space',
  4971. smalltalk.method({
  4972. selector: 'space',
  4973. fn: function (){
  4974. var self=this;
  4975. smalltalk.send(self, "_nextPut_", [" "]);
  4976. return self;}
  4977. }),
  4978. smalltalk.StringStream);
  4979. smalltalk.addClass('ClassCommentReader', smalltalk.Object, ['class', 'chunkParser'], 'Kernel');
  4980. smalltalk.addMethod(
  4981. '_class_',
  4982. smalltalk.method({
  4983. selector: 'class:',
  4984. fn: function (aClass){
  4985. var self=this;
  4986. self['@class']=aClass;
  4987. return self;}
  4988. }),
  4989. smalltalk.ClassCommentReader);
  4990. smalltalk.addMethod(
  4991. '_scanFrom_',
  4992. smalltalk.method({
  4993. selector: 'scanFrom:',
  4994. fn: function (aChunkParser){
  4995. var self=this;
  4996. var chunk=nil;
  4997. chunk=smalltalk.send(aChunkParser, "_nextChunk", []);
  4998. ((($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]);})]));
  4999. return self;}
  5000. }),
  5001. smalltalk.ClassCommentReader);
  5002. smalltalk.addMethod(
  5003. '_initialize',
  5004. smalltalk.method({
  5005. selector: 'initialize',
  5006. fn: function (){
  5007. var self=this;
  5008. smalltalk.send(self, "_initialize", [], smalltalk.Object);
  5009. self['@chunkParser']=smalltalk.send((smalltalk.ChunkParser || ChunkParser), "_new", []);
  5010. return self;}
  5011. }),
  5012. smalltalk.ClassCommentReader);
  5013. smalltalk.addMethod(
  5014. '_setComment_',
  5015. smalltalk.method({
  5016. selector: 'setComment:',
  5017. fn: function (aString){
  5018. var self=this;
  5019. smalltalk.send(self['@class'], "_comment_", [aString]);
  5020. return self;}
  5021. }),
  5022. smalltalk.ClassCommentReader);
  5023. smalltalk.addClass('Random', smalltalk.Object, [], 'Kernel');
  5024. smalltalk.addMethod(
  5025. '_next',
  5026. smalltalk.method({
  5027. selector: 'next',
  5028. fn: function (){
  5029. var self=this;
  5030. return Math.random();
  5031. return self;}
  5032. }),
  5033. smalltalk.Random);
  5034. smalltalk.addMethod(
  5035. '_next_',
  5036. smalltalk.method({
  5037. selector: 'next:',
  5038. fn: function (anInteger){
  5039. var self=this;
  5040. return smalltalk.send(smalltalk.send((1), "_to_", [anInteger]), "_collect_", [(function(each){return smalltalk.send(self, "_next", []);})]);
  5041. return self;}
  5042. }),
  5043. smalltalk.Random);
  5044. smalltalk.addClass('Point', smalltalk.Object, ['x', 'y'], 'Kernel');
  5045. smalltalk.addMethod(
  5046. '_x',
  5047. smalltalk.method({
  5048. selector: 'x',
  5049. fn: function (){
  5050. var self=this;
  5051. return self['@x'];
  5052. return self;}
  5053. }),
  5054. smalltalk.Point);
  5055. smalltalk.addMethod(
  5056. '_y',
  5057. smalltalk.method({
  5058. selector: 'y',
  5059. fn: function (){
  5060. var self=this;
  5061. return self['@y'];
  5062. return self;}
  5063. }),
  5064. smalltalk.Point);
  5065. smalltalk.addMethod(
  5066. '_y_',
  5067. smalltalk.method({
  5068. selector: 'y:',
  5069. fn: function (aNumber){
  5070. var self=this;
  5071. self['@y']=aNumber;
  5072. return self;}
  5073. }),
  5074. smalltalk.Point);
  5075. smalltalk.addMethod(
  5076. '_x_',
  5077. smalltalk.method({
  5078. selector: 'x:',
  5079. fn: function (aNumber){
  5080. var self=this;
  5081. self['@x']=aNumber;
  5082. return self;}
  5083. }),
  5084. smalltalk.Point);
  5085. smalltalk.addMethod(
  5086. '__star',
  5087. smalltalk.method({
  5088. selector: '*',
  5089. fn: function (aPoint){
  5090. var self=this;
  5091. 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", [])]))]);
  5092. return self;}
  5093. }),
  5094. smalltalk.Point);
  5095. smalltalk.addMethod(
  5096. '__plus',
  5097. smalltalk.method({
  5098. selector: '+',
  5099. fn: function (aPoint){
  5100. var self=this;
  5101. 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", [])]))]);
  5102. return self;}
  5103. }),
  5104. smalltalk.Point);
  5105. smalltalk.addMethod(
  5106. '__minus',
  5107. smalltalk.method({
  5108. selector: '-',
  5109. fn: function (aPoint){
  5110. var self=this;
  5111. 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", [])]))]);
  5112. return self;}
  5113. }),
  5114. smalltalk.Point);
  5115. smalltalk.addMethod(
  5116. '__slash',
  5117. smalltalk.method({
  5118. selector: '/',
  5119. fn: function (aPoint){
  5120. var self=this;
  5121. 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", [])]))]);
  5122. return self;}
  5123. }),
  5124. smalltalk.Point);
  5125. smalltalk.addMethod(
  5126. '_asPoint',
  5127. smalltalk.method({
  5128. selector: 'asPoint',
  5129. fn: function (){
  5130. var self=this;
  5131. return self;
  5132. return self;}
  5133. }),
  5134. smalltalk.Point);
  5135. smalltalk.addMethod(
  5136. '__eq',
  5137. smalltalk.method({
  5138. selector: '=',
  5139. fn: function (aPoint){
  5140. var self=this;
  5141. 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", [])])]);})]);
  5142. return self;}
  5143. }),
  5144. smalltalk.Point);
  5145. smalltalk.addMethod(
  5146. '_x_y_',
  5147. smalltalk.method({
  5148. selector: 'x:y:',
  5149. fn: function (aNumber, anotherNumber){
  5150. var self=this;
  5151. return (function($rec){smalltalk.send($rec, "_x_", [aNumber]);smalltalk.send($rec, "_y_", [anotherNumber]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  5152. return self;}
  5153. }),
  5154. smalltalk.Point.klass);
  5155. smalltalk.addClass('Message', smalltalk.Object, ['selector', 'arguments'], 'Kernel');
  5156. smalltalk.addMethod(
  5157. '_selector',
  5158. smalltalk.method({
  5159. selector: 'selector',
  5160. fn: function (){
  5161. var self=this;
  5162. return self['@selector'];
  5163. return self;}
  5164. }),
  5165. smalltalk.Message);
  5166. smalltalk.addMethod(
  5167. '_selector_',
  5168. smalltalk.method({
  5169. selector: 'selector:',
  5170. fn: function (aString){
  5171. var self=this;
  5172. self['@selector']=aString;
  5173. return self;}
  5174. }),
  5175. smalltalk.Message);
  5176. smalltalk.addMethod(
  5177. '_arguments_',
  5178. smalltalk.method({
  5179. selector: 'arguments:',
  5180. fn: function (anArray){
  5181. var self=this;
  5182. self['@arguments']=anArray;
  5183. return self;}
  5184. }),
  5185. smalltalk.Message);
  5186. smalltalk.addMethod(
  5187. '_arguments',
  5188. smalltalk.method({
  5189. selector: 'arguments',
  5190. fn: function (){
  5191. var self=this;
  5192. return self['@arguments'];
  5193. return self;}
  5194. }),
  5195. smalltalk.Message);
  5196. smalltalk.addMethod(
  5197. '_printString',
  5198. smalltalk.method({
  5199. selector: 'printString',
  5200. fn: function (){
  5201. var self=this;
  5202. return smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(aStream){return (function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(self, "_printString", [], smalltalk.Object)]);smalltalk.send($rec, "_nextPutAll_", [unescape("%28")]);smalltalk.send($rec, "_nextPutAll_", [self['@selector']]);return smalltalk.send($rec, "_nextPutAll_", [unescape("%29")]);})(aStream);})]);
  5203. return self;}
  5204. }),
  5205. smalltalk.Message);
  5206. smalltalk.addMethod(
  5207. '_selector_arguments_',
  5208. smalltalk.method({
  5209. selector: 'selector:arguments:',
  5210. fn: function (aString, anArray){
  5211. var self=this;
  5212. return (function($rec){smalltalk.send($rec, "_selector_", [aString]);smalltalk.send($rec, "_arguments_", [anArray]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  5213. return self;}
  5214. }),
  5215. smalltalk.Message.klass);
  5216. smalltalk.addClass('MessageNotUnderstood', smalltalk.Error, ['message', 'receiver'], 'Kernel');
  5217. smalltalk.addMethod(
  5218. '_message',
  5219. smalltalk.method({
  5220. selector: 'message',
  5221. fn: function (){
  5222. var self=this;
  5223. return self['@message'];
  5224. return self;}
  5225. }),
  5226. smalltalk.MessageNotUnderstood);
  5227. smalltalk.addMethod(
  5228. '_message_',
  5229. smalltalk.method({
  5230. selector: 'message:',
  5231. fn: function (aMessage){
  5232. var self=this;
  5233. self['@message']=aMessage;
  5234. return self;}
  5235. }),
  5236. smalltalk.MessageNotUnderstood);
  5237. smalltalk.addMethod(
  5238. '_receiver',
  5239. smalltalk.method({
  5240. selector: 'receiver',
  5241. fn: function (){
  5242. var self=this;
  5243. return self['@receiver'];
  5244. return self;}
  5245. }),
  5246. smalltalk.MessageNotUnderstood);
  5247. smalltalk.addMethod(
  5248. '_receiver_',
  5249. smalltalk.method({
  5250. selector: 'receiver:',
  5251. fn: function (anObject){
  5252. var self=this;
  5253. self['@receiver']=anObject;
  5254. return self;}
  5255. }),
  5256. smalltalk.MessageNotUnderstood);
  5257. smalltalk.addMethod(
  5258. '_messageText',
  5259. smalltalk.method({
  5260. selector: 'messageText',
  5261. fn: function (){
  5262. var self=this;
  5263. 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", [])]);
  5264. return self;}
  5265. }),
  5266. smalltalk.MessageNotUnderstood);
  5267. smalltalk.addClass('ErrorHandler', smalltalk.Object, [], 'Kernel');
  5268. smalltalk.addMethod(
  5269. '_handleError_',
  5270. smalltalk.method({
  5271. selector: 'handleError:',
  5272. fn: function (anError){
  5273. var self=this;
  5274. (($receiver = smalltalk.send(anError, "_context", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_logErrorContext_", [smalltalk.send(anError, "_context", [])]);})() : nil;
  5275. smalltalk.send(self, "_logError_", [anError]);
  5276. return self;}
  5277. }),
  5278. smalltalk.ErrorHandler);
  5279. smalltalk.addMethod(
  5280. '_logContext_',
  5281. smalltalk.method({
  5282. selector: 'logContext:',
  5283. fn: function (aContext){
  5284. var self=this;
  5285. (($receiver = smalltalk.send(aContext, "_home", [])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(self, "_logContext_", [smalltalk.send(aContext, "_home", [])]);})() : nil;
  5286. smalltalk.send(self, "_log_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(aContext, "_receiver", []), "_asString", []), "__comma", [unescape("%3E%3E")]), "__comma", [smalltalk.send(aContext, "_selector", [])])]);
  5287. return self;}
  5288. }),
  5289. smalltalk.ErrorHandler);
  5290. smalltalk.addMethod(
  5291. '_logErrorContext_',
  5292. smalltalk.method({
  5293. selector: 'logErrorContext:',
  5294. fn: function (aContext){
  5295. var self=this;
  5296. (($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;
  5297. return self;}
  5298. }),
  5299. smalltalk.ErrorHandler);
  5300. smalltalk.addMethod(
  5301. '_logError_',
  5302. smalltalk.method({
  5303. selector: 'logError:',
  5304. fn: function (anError){
  5305. var self=this;
  5306. smalltalk.send(self, "_log_", [smalltalk.send(anError, "_messageText", [])]);
  5307. return self;}
  5308. }),
  5309. smalltalk.ErrorHandler);
  5310. smalltalk.addMethod(
  5311. '_log_',
  5312. smalltalk.method({
  5313. selector: 'log:',
  5314. fn: function (aString){
  5315. var self=this;
  5316. smalltalk.send((typeof console == 'undefined' ? nil : console), "_log_", [aString]);
  5317. return self;}
  5318. }),
  5319. smalltalk.ErrorHandler);
  5320. smalltalk.ErrorHandler.klass.iVarNames = ['current'];
  5321. smalltalk.addMethod(
  5322. '_current',
  5323. smalltalk.method({
  5324. selector: 'current',
  5325. fn: function (){
  5326. var self=this;
  5327. return (($receiver = self['@current']) == nil || $receiver == undefined) ? (function(){return self['@current']=smalltalk.send(self, "_new", []);})() : $receiver;
  5328. return self;}
  5329. }),
  5330. smalltalk.ErrorHandler.klass);
  5331. smalltalk.addMethod(
  5332. '_initialize',
  5333. smalltalk.method({
  5334. selector: 'initialize',
  5335. fn: function (){
  5336. var self=this;
  5337. smalltalk.send(self, "_register", []);
  5338. return self;}
  5339. }),
  5340. smalltalk.ErrorHandler.klass);
  5341. smalltalk.addMethod(
  5342. '_register',
  5343. smalltalk.method({
  5344. selector: 'register',
  5345. fn: function (){
  5346. var self=this;
  5347. smalltalk.send((smalltalk.ErrorHandler || ErrorHandler), "_setCurrent_", [smalltalk.send(self, "_new", [])]);
  5348. return self;}
  5349. }),
  5350. smalltalk.ErrorHandler.klass);
  5351. smalltalk.addMethod(
  5352. '_setCurrent_',
  5353. smalltalk.method({
  5354. selector: 'setCurrent:',
  5355. fn: function (anHandler){
  5356. var self=this;
  5357. self['@current']=anHandler;
  5358. return self;}
  5359. }),
  5360. smalltalk.ErrorHandler.klass);
  5361. smalltalk.addClass('JSObjectProxy', smalltalk.Object, ['jsObject'], 'Kernel');
  5362. smalltalk.addMethod(
  5363. '_jsObject_',
  5364. smalltalk.method({
  5365. selector: 'jsObject:',
  5366. fn: function (aJSObject){
  5367. var self=this;
  5368. self['@jsObject']=aJSObject;
  5369. return self;}
  5370. }),
  5371. smalltalk.JSObjectProxy);
  5372. smalltalk.addMethod(
  5373. '_jsObject',
  5374. smalltalk.method({
  5375. selector: 'jsObject',
  5376. fn: function (){
  5377. var self=this;
  5378. return self['@jsObject'];
  5379. return self;}
  5380. }),
  5381. smalltalk.JSObjectProxy);
  5382. smalltalk.addMethod(
  5383. '_printString',
  5384. smalltalk.method({
  5385. selector: 'printString',
  5386. fn: function (){
  5387. var self=this;
  5388. return smalltalk.send(smalltalk.send(self, "_jsObject", []), "_toString", []);
  5389. return self;}
  5390. }),
  5391. smalltalk.JSObjectProxy);
  5392. smalltalk.addMethod(
  5393. '_inspectOn_',
  5394. smalltalk.method({
  5395. selector: 'inspectOn:',
  5396. fn: function (anInspector){
  5397. var self=this;
  5398. var variables=nil;
  5399. variables=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []);
  5400. smalltalk.send(variables, "_at_put_", [unescape("%23self"), smalltalk.send(self, "_jsObject", [])]);
  5401. smalltalk.send(anInspector, "_setLabel_", [smalltalk.send(self, "_printString", [])]);
  5402. for(var i in self['@jsObject']) {
  5403. variables._at_put_(i, self['@jsObject'][i]);
  5404. };
  5405. smalltalk.send(anInspector, "_setVariables_", [variables]);
  5406. return self;}
  5407. }),
  5408. smalltalk.JSObjectProxy);
  5409. smalltalk.addMethod(
  5410. '_doesNotUnderstand_',
  5411. smalltalk.method({
  5412. selector: 'doesNotUnderstand:',
  5413. fn: function (aMessage){
  5414. var self=this;
  5415. var obj=nil;
  5416. var selector=nil;
  5417. var jsSelector=nil;
  5418. var arguments=nil;
  5419. obj=smalltalk.send(self, "_jsObject", []);
  5420. selector=smalltalk.send(aMessage, "_selector", []);
  5421. jsSelector=smalltalk.send(selector, "_asJavaScriptSelector", []);
  5422. arguments=smalltalk.send(aMessage, "_arguments", []);
  5423. if(obj[jsSelector] != undefined) {return smalltalk.send(obj, jsSelector, arguments)};
  5424. smalltalk.send(self, "_doesNotUnderstand_", [aMessage], smalltalk.Object);
  5425. return self;}
  5426. }),
  5427. smalltalk.JSObjectProxy);
  5428. smalltalk.addMethod(
  5429. '_at_',
  5430. smalltalk.method({
  5431. selector: 'at:',
  5432. fn: function (aString){
  5433. var self=this;
  5434. return self['@jsObject'][aString];
  5435. return self;}
  5436. }),
  5437. smalltalk.JSObjectProxy);
  5438. smalltalk.addMethod(
  5439. '_at_put_',
  5440. smalltalk.method({
  5441. selector: 'at:put:',
  5442. fn: function (aString, anObject){
  5443. var self=this;
  5444. self['@jsObject'][aString] = anObject;
  5445. return self;}
  5446. }),
  5447. smalltalk.JSObjectProxy);
  5448. smalltalk.addMethod(
  5449. '_on_',
  5450. smalltalk.method({
  5451. selector: 'on:',
  5452. fn: function (aJSObject){
  5453. var self=this;
  5454. return (function($rec){smalltalk.send($rec, "_jsObject_", [aJSObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  5455. return self;}
  5456. }),
  5457. smalltalk.JSObjectProxy.klass);
  5458. smalltalk.addClass('Set', smalltalk.Collection, ['elements'], 'Kernel');
  5459. smalltalk.addMethod(
  5460. '_add_',
  5461. smalltalk.method({
  5462. selector: 'add:',
  5463. fn: function (anObject){
  5464. var self=this;
  5465. var found;
  5466. for(var i in self['@elements']) {
  5467. if(anObject == self['@elements'][i]) {
  5468. found = true;
  5469. break;
  5470. }
  5471. }
  5472. if(!found) {self['@elements'].push(anObject)}
  5473. ;
  5474. return self;}
  5475. }),
  5476. smalltalk.Set);
  5477. smalltalk.addMethod(
  5478. '_remove_',
  5479. smalltalk.method({
  5480. selector: 'remove:',
  5481. fn: function (anObject){
  5482. var self=this;
  5483. smalltalk.send(self['@elements'], "_remove_", [anObject]);
  5484. return self;}
  5485. }),
  5486. smalltalk.Set);
  5487. smalltalk.addMethod(
  5488. '_initialize',
  5489. smalltalk.method({
  5490. selector: 'initialize',
  5491. fn: function (){
  5492. var self=this;
  5493. smalltalk.send(self, "_initialize", [], smalltalk.Collection);
  5494. self['@elements']=[];
  5495. return self;}
  5496. }),
  5497. smalltalk.Set);
  5498. smalltalk.addMethod(
  5499. '_size',
  5500. smalltalk.method({
  5501. selector: 'size',
  5502. fn: function (){
  5503. var self=this;
  5504. return smalltalk.send(self['@elements'], "_size", []);
  5505. return self;}
  5506. }),
  5507. smalltalk.Set);
  5508. smalltalk.addMethod(
  5509. '_asArray',
  5510. smalltalk.method({
  5511. selector: 'asArray',
  5512. fn: function (){
  5513. var self=this;
  5514. return smalltalk.send(self['@elements'], "_copy", []);
  5515. return self;}
  5516. }),
  5517. smalltalk.Set);
  5518. smalltalk.addMethod(
  5519. '_detect_ifNone_',
  5520. smalltalk.method({
  5521. selector: 'detect:ifNone:',
  5522. fn: function (aBlock, anotherBlock){
  5523. var self=this;
  5524. return smalltalk.send(self['@elements'], "_detect_ifNone_", [aBlock, anotherBlock]);
  5525. return self;}
  5526. }),
  5527. smalltalk.Set);
  5528. smalltalk.addMethod(
  5529. '_do_',
  5530. smalltalk.method({
  5531. selector: 'do:',
  5532. fn: function (aBlock){
  5533. var self=this;
  5534. smalltalk.send(self['@elements'], "_do_", [aBlock]);
  5535. return self;}
  5536. }),
  5537. smalltalk.Set);
  5538. smalltalk.addMethod(
  5539. '_includes_',
  5540. smalltalk.method({
  5541. selector: 'includes:',
  5542. fn: function (anObject){
  5543. var self=this;
  5544. return smalltalk.send(self['@elements'], "_includes_", [anObject]);
  5545. return self;}
  5546. }),
  5547. smalltalk.Set);
  5548. smalltalk.addMethod(
  5549. '__eq',
  5550. smalltalk.method({
  5551. selector: '=',
  5552. fn: function (aCollection){
  5553. var self=this;
  5554. 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", [])]);})]);
  5555. return self;}
  5556. }),
  5557. smalltalk.Set);
  5558. smalltalk.addClass('Transcript', smalltalk.Object, ['textarea'], 'Kernel');
  5559. smalltalk.Transcript.klass.iVarNames = ['current'];
  5560. smalltalk.addMethod(
  5561. '_open',
  5562. smalltalk.method({
  5563. selector: 'open',
  5564. fn: function (){
  5565. var self=this;
  5566. smalltalk.send(smalltalk.send(self, "_current", []), "_open", []);
  5567. return self;}
  5568. }),
  5569. smalltalk.Transcript.klass);
  5570. smalltalk.addMethod(
  5571. '_new',
  5572. smalltalk.method({
  5573. selector: 'new',
  5574. fn: function (){
  5575. var self=this;
  5576. smalltalk.send(self, "_shouldNotImplement", []);
  5577. return self;}
  5578. }),
  5579. smalltalk.Transcript.klass);
  5580. smalltalk.addMethod(
  5581. '_current',
  5582. smalltalk.method({
  5583. selector: 'current',
  5584. fn: function (){
  5585. var self=this;
  5586. return self['@current'];
  5587. return self;}
  5588. }),
  5589. smalltalk.Transcript.klass);
  5590. smalltalk.addMethod(
  5591. '_show_',
  5592. smalltalk.method({
  5593. selector: 'show:',
  5594. fn: function (anObject){
  5595. var self=this;
  5596. smalltalk.send(smalltalk.send(self, "_current", []), "_show_", [anObject]);
  5597. return self;}
  5598. }),
  5599. smalltalk.Transcript.klass);
  5600. smalltalk.addMethod(
  5601. '_cr',
  5602. smalltalk.method({
  5603. selector: 'cr',
  5604. fn: function (){
  5605. var self=this;
  5606. smalltalk.send(smalltalk.send(self, "_current", []), "_show_", [smalltalk.send((smalltalk.String || String), "_cr", [])]);
  5607. return self;}
  5608. }),
  5609. smalltalk.Transcript.klass);
  5610. smalltalk.addMethod(
  5611. '_clear',
  5612. smalltalk.method({
  5613. selector: 'clear',
  5614. fn: function (){
  5615. var self=this;
  5616. smalltalk.send(smalltalk.send(self, "_current", []), "_clear", []);
  5617. return self;}
  5618. }),
  5619. smalltalk.Transcript.klass);
  5620. smalltalk.addMethod(
  5621. '_register_',
  5622. smalltalk.method({
  5623. selector: 'register:',
  5624. fn: function (aTranscript){
  5625. var self=this;
  5626. self['@current']=aTranscript;
  5627. return self;}
  5628. }),
  5629. smalltalk.Transcript.klass);
  5630. smalltalk.addClass('ConsoleTranscript', smalltalk.Object, ['textarea'], 'Kernel');
  5631. smalltalk.addMethod(
  5632. '_clear',
  5633. smalltalk.method({
  5634. selector: 'clear',
  5635. fn: function (){
  5636. var self=this;
  5637. return self;}
  5638. }),
  5639. smalltalk.ConsoleTranscript);
  5640. smalltalk.addMethod(
  5641. '_cr',
  5642. smalltalk.method({
  5643. selector: 'cr',
  5644. fn: function (){
  5645. var self=this;
  5646. return self;}
  5647. }),
  5648. smalltalk.ConsoleTranscript);
  5649. smalltalk.addMethod(
  5650. '_show_',
  5651. smalltalk.method({
  5652. selector: 'show:',
  5653. fn: function (anObject){
  5654. var self=this;
  5655. console.log(String(anObject._asString()));
  5656. return self;}
  5657. }),
  5658. smalltalk.ConsoleTranscript);
  5659. smalltalk.addMethod(
  5660. '_open',
  5661. smalltalk.method({
  5662. selector: 'open',
  5663. fn: function (){
  5664. var self=this;
  5665. return self;}
  5666. }),
  5667. smalltalk.ConsoleTranscript);
  5668. smalltalk.addMethod(
  5669. '_initialize',
  5670. smalltalk.method({
  5671. selector: 'initialize',
  5672. fn: function (){
  5673. var self=this;
  5674. smalltalk.send((smalltalk.Transcript || Transcript), "_register_", [smalltalk.send(self, "_new", [])]);
  5675. return self;}
  5676. }),
  5677. smalltalk.ConsoleTranscript.klass);