Kernel.deploy.js 152 KB

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