Kernel-Objects.deploy.js 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305
  1. smalltalk.addPackage('Kernel-Objects');
  2. smalltalk.addClass('Object', smalltalk.nil, [], 'Kernel-Objects');
  3. smalltalk.addMethod(
  4. smalltalk.method({
  5. selector: "->",
  6. fn: function (anObject){
  7. var self=this;
  8. function $Association(){return smalltalk.Association||(typeof Association=="undefined"?nil:Association)}
  9. return smalltalk.withContext(function($ctx1) {
  10. var $1;
  11. $1=_st($Association())._key_value_(self,anObject);
  12. return $1;
  13. }, function($ctx1) {$ctx1.fill(self,"->",{anObject:anObject},smalltalk.Object)})},
  14. messageSends: ["key:value:"]}),
  15. smalltalk.Object);
  16. smalltalk.addMethod(
  17. smalltalk.method({
  18. selector: "=",
  19. fn: function (anObject){
  20. var self=this;
  21. return smalltalk.withContext(function($ctx1) {
  22. var $1;
  23. $1=self.__eq_eq(anObject);
  24. return $1;
  25. }, function($ctx1) {$ctx1.fill(self,"=",{anObject:anObject},smalltalk.Object)})},
  26. messageSends: ["=="]}),
  27. smalltalk.Object);
  28. smalltalk.addMethod(
  29. smalltalk.method({
  30. selector: "==",
  31. fn: function (anObject){
  32. var self=this;
  33. return smalltalk.withContext(function($ctx1) {
  34. var $1;
  35. $1=_st(self._identityHash()).__eq(_st(anObject)._identityHash());
  36. return $1;
  37. }, function($ctx1) {$ctx1.fill(self,"==",{anObject:anObject},smalltalk.Object)})},
  38. messageSends: ["=", "identityHash"]}),
  39. smalltalk.Object);
  40. smalltalk.addMethod(
  41. smalltalk.method({
  42. selector: "asJSON",
  43. fn: function (){
  44. var self=this;
  45. var variables;
  46. function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
  47. return smalltalk.withContext(function($ctx1) {
  48. var $1;
  49. variables=_st($HashedCollection())._new();
  50. _st(_st(self._class())._allInstanceVariableNames())._do_((function(each){
  51. return smalltalk.withContext(function($ctx2) {
  52. return _st(variables)._at_put_(each,_st(self._instVarAt_(each))._asJSON());
  53. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  54. $1=variables;
  55. return $1;
  56. }, function($ctx1) {$ctx1.fill(self,"asJSON",{variables:variables},smalltalk.Object)})},
  57. messageSends: ["new", "do:", "at:put:", "asJSON", "instVarAt:", "allInstanceVariableNames", "class"]}),
  58. smalltalk.Object);
  59. smalltalk.addMethod(
  60. smalltalk.method({
  61. selector: "asJSONString",
  62. fn: function (){
  63. var self=this;
  64. function $JSON(){return smalltalk.JSON||(typeof JSON=="undefined"?nil:JSON)}
  65. return smalltalk.withContext(function($ctx1) {
  66. var $1;
  67. $1=_st($JSON())._stringify_(self._asJSON());
  68. return $1;
  69. }, function($ctx1) {$ctx1.fill(self,"asJSONString",{},smalltalk.Object)})},
  70. messageSends: ["stringify:", "asJSON"]}),
  71. smalltalk.Object);
  72. smalltalk.addMethod(
  73. smalltalk.method({
  74. selector: "asJavascript",
  75. fn: function (){
  76. var self=this;
  77. return smalltalk.withContext(function($ctx1) {
  78. var $1;
  79. $1=self._asString();
  80. return $1;
  81. }, function($ctx1) {$ctx1.fill(self,"asJavascript",{},smalltalk.Object)})},
  82. messageSends: ["asString"]}),
  83. smalltalk.Object);
  84. smalltalk.addMethod(
  85. smalltalk.method({
  86. selector: "asString",
  87. fn: function (){
  88. var self=this;
  89. return smalltalk.withContext(function($ctx1) {
  90. var $1;
  91. $1=self._printString();
  92. return $1;
  93. }, function($ctx1) {$ctx1.fill(self,"asString",{},smalltalk.Object)})},
  94. messageSends: ["printString"]}),
  95. smalltalk.Object);
  96. smalltalk.addMethod(
  97. smalltalk.method({
  98. selector: "basicAt:",
  99. fn: function (aString){
  100. var self=this;
  101. return smalltalk.withContext(function($ctx1) {
  102. return self[aString];
  103. return self}, function($ctx1) {$ctx1.fill(self,"basicAt:",{aString:aString},smalltalk.Object)})},
  104. messageSends: []}),
  105. smalltalk.Object);
  106. smalltalk.addMethod(
  107. smalltalk.method({
  108. selector: "basicAt:put:",
  109. fn: function (aString,anObject){
  110. var self=this;
  111. return smalltalk.withContext(function($ctx1) {
  112. return self[aString] = anObject;
  113. return self}, function($ctx1) {$ctx1.fill(self,"basicAt:put:",{aString:aString,anObject:anObject},smalltalk.Object)})},
  114. messageSends: []}),
  115. smalltalk.Object);
  116. smalltalk.addMethod(
  117. smalltalk.method({
  118. selector: "basicDelete:",
  119. fn: function (aString){
  120. var self=this;
  121. return smalltalk.withContext(function($ctx1) {
  122. delete self[aString]; return aString;
  123. return self}, function($ctx1) {$ctx1.fill(self,"basicDelete:",{aString:aString},smalltalk.Object)})},
  124. messageSends: []}),
  125. smalltalk.Object);
  126. smalltalk.addMethod(
  127. smalltalk.method({
  128. selector: "basicPerform:",
  129. fn: function (aString){
  130. var self=this;
  131. return smalltalk.withContext(function($ctx1) {
  132. var $1;
  133. $1=self._basicPerform_withArguments_(aString,[]);
  134. return $1;
  135. }, function($ctx1) {$ctx1.fill(self,"basicPerform:",{aString:aString},smalltalk.Object)})},
  136. messageSends: ["basicPerform:withArguments:"]}),
  137. smalltalk.Object);
  138. smalltalk.addMethod(
  139. smalltalk.method({
  140. selector: "basicPerform:withArguments:",
  141. fn: function (aString,aCollection){
  142. var self=this;
  143. return smalltalk.withContext(function($ctx1) {
  144. return self[aString].apply(self, aCollection);;
  145. return self}, function($ctx1) {$ctx1.fill(self,"basicPerform:withArguments:",{aString:aString,aCollection:aCollection},smalltalk.Object)})},
  146. messageSends: []}),
  147. smalltalk.Object);
  148. smalltalk.addMethod(
  149. smalltalk.method({
  150. selector: "class",
  151. fn: function (){
  152. var self=this;
  153. return smalltalk.withContext(function($ctx1) {
  154. return self.klass;
  155. return self}, function($ctx1) {$ctx1.fill(self,"class",{},smalltalk.Object)})},
  156. messageSends: []}),
  157. smalltalk.Object);
  158. smalltalk.addMethod(
  159. smalltalk.method({
  160. selector: "copy",
  161. fn: function (){
  162. var self=this;
  163. return smalltalk.withContext(function($ctx1) {
  164. var $1;
  165. $1=_st(self._shallowCopy())._postCopy();
  166. return $1;
  167. }, function($ctx1) {$ctx1.fill(self,"copy",{},smalltalk.Object)})},
  168. messageSends: ["postCopy", "shallowCopy"]}),
  169. smalltalk.Object);
  170. smalltalk.addMethod(
  171. smalltalk.method({
  172. selector: "deepCopy",
  173. fn: function (){
  174. var self=this;
  175. return smalltalk.withContext(function($ctx1) {
  176. var copy = self.klass._new();
  177. for(var i in self) {
  178. if(/^@.+/.test(i)) {
  179. copy[i] = self[i]._deepCopy();
  180. }
  181. }
  182. return copy;
  183. ;
  184. return self}, function($ctx1) {$ctx1.fill(self,"deepCopy",{},smalltalk.Object)})},
  185. messageSends: []}),
  186. smalltalk.Object);
  187. smalltalk.addMethod(
  188. smalltalk.method({
  189. selector: "deprecatedAPI",
  190. fn: function (){
  191. var self=this;
  192. return smalltalk.withContext(function($ctx1) {
  193. _st(console)._warn_(_st(_st(_st(_st(smalltalk.getThisContext()._home())._asString()).__comma(" is deprecated! (in ")).__comma(_st(_st(smalltalk.getThisContext()._home())._home())._asString())).__comma(")"));
  194. return self}, function($ctx1) {$ctx1.fill(self,"deprecatedAPI",{},smalltalk.Object)})},
  195. messageSends: ["warn:", ",", "asString", "home"]}),
  196. smalltalk.Object);
  197. smalltalk.addMethod(
  198. smalltalk.method({
  199. selector: "doesNotUnderstand:",
  200. fn: function (aMessage){
  201. var self=this;
  202. function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
  203. return smalltalk.withContext(function($ctx1) {
  204. var $1,$2;
  205. $1=_st($MessageNotUnderstood())._new();
  206. _st($1)._receiver_(self);
  207. _st($1)._message_(aMessage);
  208. $2=_st($1)._signal();
  209. return self}, function($ctx1) {$ctx1.fill(self,"doesNotUnderstand:",{aMessage:aMessage},smalltalk.Object)})},
  210. messageSends: ["receiver:", "new", "message:", "signal"]}),
  211. smalltalk.Object);
  212. smalltalk.addMethod(
  213. smalltalk.method({
  214. selector: "error:",
  215. fn: function (aString){
  216. var self=this;
  217. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  218. return smalltalk.withContext(function($ctx1) {
  219. _st($Error())._signal_(aString);
  220. return self}, function($ctx1) {$ctx1.fill(self,"error:",{aString:aString},smalltalk.Object)})},
  221. messageSends: ["signal:"]}),
  222. smalltalk.Object);
  223. smalltalk.addMethod(
  224. smalltalk.method({
  225. selector: "halt",
  226. fn: function (){
  227. var self=this;
  228. return smalltalk.withContext(function($ctx1) {
  229. self._error_("Halt encountered");
  230. return self}, function($ctx1) {$ctx1.fill(self,"halt",{},smalltalk.Object)})},
  231. messageSends: ["error:"]}),
  232. smalltalk.Object);
  233. smalltalk.addMethod(
  234. smalltalk.method({
  235. selector: "identityHash",
  236. fn: function (){
  237. var self=this;
  238. return smalltalk.withContext(function($ctx1) {
  239. var hash=self.identityHash;
  240. if (hash) return hash;
  241. hash=smalltalk.nextId();
  242. Object.defineProperty(self, 'identityHash', {value:hash});
  243. return hash;
  244. ;
  245. return self}, function($ctx1) {$ctx1.fill(self,"identityHash",{},smalltalk.Object)})},
  246. messageSends: []}),
  247. smalltalk.Object);
  248. smalltalk.addMethod(
  249. smalltalk.method({
  250. selector: "ifNil:",
  251. fn: function (aBlock){
  252. var self=this;
  253. return smalltalk.withContext(function($ctx1) {
  254. var $1;
  255. $1=self;
  256. return $1;
  257. }, function($ctx1) {$ctx1.fill(self,"ifNil:",{aBlock:aBlock},smalltalk.Object)})},
  258. messageSends: []}),
  259. smalltalk.Object);
  260. smalltalk.addMethod(
  261. smalltalk.method({
  262. selector: "ifNil:ifNotNil:",
  263. fn: function (aBlock,anotherBlock){
  264. var self=this;
  265. return smalltalk.withContext(function($ctx1) {
  266. var $1;
  267. $1=_st(anotherBlock)._value_(self);
  268. return $1;
  269. }, function($ctx1) {$ctx1.fill(self,"ifNil:ifNotNil:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.Object)})},
  270. messageSends: ["value:"]}),
  271. smalltalk.Object);
  272. smalltalk.addMethod(
  273. smalltalk.method({
  274. selector: "ifNotNil:",
  275. fn: function (aBlock){
  276. var self=this;
  277. return smalltalk.withContext(function($ctx1) {
  278. var $1;
  279. $1=_st(aBlock)._value_(self);
  280. return $1;
  281. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:",{aBlock:aBlock},smalltalk.Object)})},
  282. messageSends: ["value:"]}),
  283. smalltalk.Object);
  284. smalltalk.addMethod(
  285. smalltalk.method({
  286. selector: "ifNotNil:ifNil:",
  287. fn: function (aBlock,anotherBlock){
  288. var self=this;
  289. return smalltalk.withContext(function($ctx1) {
  290. var $1;
  291. $1=_st(aBlock)._value_(self);
  292. return $1;
  293. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:ifNil:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.Object)})},
  294. messageSends: ["value:"]}),
  295. smalltalk.Object);
  296. smalltalk.addMethod(
  297. smalltalk.method({
  298. selector: "initialize",
  299. fn: function (){
  300. var self=this;
  301. return smalltalk.withContext(function($ctx1) {
  302. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.Object)})},
  303. messageSends: []}),
  304. smalltalk.Object);
  305. smalltalk.addMethod(
  306. smalltalk.method({
  307. selector: "inspect",
  308. fn: function (){
  309. var self=this;
  310. function $InspectorHandler(){return smalltalk.InspectorHandler||(typeof InspectorHandler=="undefined"?nil:InspectorHandler)}
  311. return smalltalk.withContext(function($ctx1) {
  312. _st($InspectorHandler())._inspect_(self);
  313. return self}, function($ctx1) {$ctx1.fill(self,"inspect",{},smalltalk.Object)})},
  314. messageSends: ["inspect:"]}),
  315. smalltalk.Object);
  316. smalltalk.addMethod(
  317. smalltalk.method({
  318. selector: "inspectOn:",
  319. fn: function (anInspector){
  320. var self=this;
  321. var variables;
  322. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  323. return smalltalk.withContext(function($ctx1) {
  324. var $1,$2;
  325. variables=_st($Dictionary())._new();
  326. _st(variables)._at_put_("#self",self);
  327. _st(_st(self._class())._allInstanceVariableNames())._do_((function(each){
  328. return smalltalk.withContext(function($ctx2) {
  329. return _st(variables)._at_put_(each,self._instVarAt_(each));
  330. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  331. $1=anInspector;
  332. _st($1)._setLabel_(self._printString());
  333. $2=_st($1)._setVariables_(variables);
  334. return self}, function($ctx1) {$ctx1.fill(self,"inspectOn:",{anInspector:anInspector,variables:variables},smalltalk.Object)})},
  335. messageSends: ["new", "at:put:", "do:", "instVarAt:", "allInstanceVariableNames", "class", "setLabel:", "printString", "setVariables:"]}),
  336. smalltalk.Object);
  337. smalltalk.addMethod(
  338. smalltalk.method({
  339. selector: "instVarAt:",
  340. fn: function (aString){
  341. var self=this;
  342. return smalltalk.withContext(function($ctx1) {
  343. return self['@'+aString] ;
  344. return self}, function($ctx1) {$ctx1.fill(self,"instVarAt:",{aString:aString},smalltalk.Object)})},
  345. messageSends: []}),
  346. smalltalk.Object);
  347. smalltalk.addMethod(
  348. smalltalk.method({
  349. selector: "instVarAt:put:",
  350. fn: function (aString,anObject){
  351. var self=this;
  352. return smalltalk.withContext(function($ctx1) {
  353. self['@' + aString] = anObject ;
  354. return self}, function($ctx1) {$ctx1.fill(self,"instVarAt:put:",{aString:aString,anObject:anObject},smalltalk.Object)})},
  355. messageSends: []}),
  356. smalltalk.Object);
  357. smalltalk.addMethod(
  358. smalltalk.method({
  359. selector: "isBehavior",
  360. fn: function (){
  361. var self=this;
  362. return smalltalk.withContext(function($ctx1) {
  363. return false;
  364. }, function($ctx1) {$ctx1.fill(self,"isBehavior",{},smalltalk.Object)})},
  365. messageSends: []}),
  366. smalltalk.Object);
  367. smalltalk.addMethod(
  368. smalltalk.method({
  369. selector: "isBoolean",
  370. fn: function (){
  371. var self=this;
  372. return smalltalk.withContext(function($ctx1) {
  373. return false;
  374. }, function($ctx1) {$ctx1.fill(self,"isBoolean",{},smalltalk.Object)})},
  375. messageSends: []}),
  376. smalltalk.Object);
  377. smalltalk.addMethod(
  378. smalltalk.method({
  379. selector: "isClass",
  380. fn: function (){
  381. var self=this;
  382. return smalltalk.withContext(function($ctx1) {
  383. return false;
  384. }, function($ctx1) {$ctx1.fill(self,"isClass",{},smalltalk.Object)})},
  385. messageSends: []}),
  386. smalltalk.Object);
  387. smalltalk.addMethod(
  388. smalltalk.method({
  389. selector: "isCompiledMethod",
  390. fn: function (){
  391. var self=this;
  392. return smalltalk.withContext(function($ctx1) {
  393. return false;
  394. }, function($ctx1) {$ctx1.fill(self,"isCompiledMethod",{},smalltalk.Object)})},
  395. messageSends: []}),
  396. smalltalk.Object);
  397. smalltalk.addMethod(
  398. smalltalk.method({
  399. selector: "isImmutable",
  400. fn: function (){
  401. var self=this;
  402. return smalltalk.withContext(function($ctx1) {
  403. return false;
  404. }, function($ctx1) {$ctx1.fill(self,"isImmutable",{},smalltalk.Object)})},
  405. messageSends: []}),
  406. smalltalk.Object);
  407. smalltalk.addMethod(
  408. smalltalk.method({
  409. selector: "isKindOf:",
  410. fn: function (aClass){
  411. var self=this;
  412. return smalltalk.withContext(function($ctx1) {
  413. var $2,$1;
  414. $2=self._isMemberOf_(aClass);
  415. if(smalltalk.assert($2)){
  416. $1=true;
  417. } else {
  418. $1=_st(self._class())._inheritsFrom_(aClass);
  419. };
  420. return $1;
  421. }, function($ctx1) {$ctx1.fill(self,"isKindOf:",{aClass:aClass},smalltalk.Object)})},
  422. messageSends: ["ifTrue:ifFalse:", "inheritsFrom:", "class", "isMemberOf:"]}),
  423. smalltalk.Object);
  424. smalltalk.addMethod(
  425. smalltalk.method({
  426. selector: "isMemberOf:",
  427. fn: function (aClass){
  428. var self=this;
  429. return smalltalk.withContext(function($ctx1) {
  430. var $1;
  431. $1=_st(self._class()).__eq(aClass);
  432. return $1;
  433. }, function($ctx1) {$ctx1.fill(self,"isMemberOf:",{aClass:aClass},smalltalk.Object)})},
  434. messageSends: ["=", "class"]}),
  435. smalltalk.Object);
  436. smalltalk.addMethod(
  437. smalltalk.method({
  438. selector: "isMetaclass",
  439. fn: function (){
  440. var self=this;
  441. return smalltalk.withContext(function($ctx1) {
  442. return false;
  443. }, function($ctx1) {$ctx1.fill(self,"isMetaclass",{},smalltalk.Object)})},
  444. messageSends: []}),
  445. smalltalk.Object);
  446. smalltalk.addMethod(
  447. smalltalk.method({
  448. selector: "isNil",
  449. fn: function (){
  450. var self=this;
  451. return smalltalk.withContext(function($ctx1) {
  452. return false;
  453. }, function($ctx1) {$ctx1.fill(self,"isNil",{},smalltalk.Object)})},
  454. messageSends: []}),
  455. smalltalk.Object);
  456. smalltalk.addMethod(
  457. smalltalk.method({
  458. selector: "isNumber",
  459. fn: function (){
  460. var self=this;
  461. return smalltalk.withContext(function($ctx1) {
  462. return false;
  463. }, function($ctx1) {$ctx1.fill(self,"isNumber",{},smalltalk.Object)})},
  464. messageSends: []}),
  465. smalltalk.Object);
  466. smalltalk.addMethod(
  467. smalltalk.method({
  468. selector: "isPackage",
  469. fn: function (){
  470. var self=this;
  471. return smalltalk.withContext(function($ctx1) {
  472. return false;
  473. }, function($ctx1) {$ctx1.fill(self,"isPackage",{},smalltalk.Object)})},
  474. messageSends: []}),
  475. smalltalk.Object);
  476. smalltalk.addMethod(
  477. smalltalk.method({
  478. selector: "isParseFailure",
  479. fn: function (){
  480. var self=this;
  481. return smalltalk.withContext(function($ctx1) {
  482. return false;
  483. }, function($ctx1) {$ctx1.fill(self,"isParseFailure",{},smalltalk.Object)})},
  484. messageSends: []}),
  485. smalltalk.Object);
  486. smalltalk.addMethod(
  487. smalltalk.method({
  488. selector: "isString",
  489. fn: function (){
  490. var self=this;
  491. return smalltalk.withContext(function($ctx1) {
  492. return false;
  493. }, function($ctx1) {$ctx1.fill(self,"isString",{},smalltalk.Object)})},
  494. messageSends: []}),
  495. smalltalk.Object);
  496. smalltalk.addMethod(
  497. smalltalk.method({
  498. selector: "isSymbol",
  499. fn: function (){
  500. var self=this;
  501. return smalltalk.withContext(function($ctx1) {
  502. return false;
  503. }, function($ctx1) {$ctx1.fill(self,"isSymbol",{},smalltalk.Object)})},
  504. messageSends: []}),
  505. smalltalk.Object);
  506. smalltalk.addMethod(
  507. smalltalk.method({
  508. selector: "notNil",
  509. fn: function (){
  510. var self=this;
  511. return smalltalk.withContext(function($ctx1) {
  512. var $1;
  513. $1=_st(self._isNil())._not();
  514. return $1;
  515. }, function($ctx1) {$ctx1.fill(self,"notNil",{},smalltalk.Object)})},
  516. messageSends: ["not", "isNil"]}),
  517. smalltalk.Object);
  518. smalltalk.addMethod(
  519. smalltalk.method({
  520. selector: "perform:",
  521. fn: function (aString){
  522. var self=this;
  523. return smalltalk.withContext(function($ctx1) {
  524. var $1;
  525. $1=self._perform_withArguments_(aString,[]);
  526. return $1;
  527. }, function($ctx1) {$ctx1.fill(self,"perform:",{aString:aString},smalltalk.Object)})},
  528. messageSends: ["perform:withArguments:"]}),
  529. smalltalk.Object);
  530. smalltalk.addMethod(
  531. smalltalk.method({
  532. selector: "perform:withArguments:",
  533. fn: function (aString,aCollection){
  534. var self=this;
  535. return smalltalk.withContext(function($ctx1) {
  536. return smalltalk.send(self, aString._asSelector(), aCollection);
  537. return self}, function($ctx1) {$ctx1.fill(self,"perform:withArguments:",{aString:aString,aCollection:aCollection},smalltalk.Object)})},
  538. messageSends: []}),
  539. smalltalk.Object);
  540. smalltalk.addMethod(
  541. smalltalk.method({
  542. selector: "postCopy",
  543. fn: function (){
  544. var self=this;
  545. return smalltalk.withContext(function($ctx1) {
  546. return self}, function($ctx1) {$ctx1.fill(self,"postCopy",{},smalltalk.Object)})},
  547. messageSends: []}),
  548. smalltalk.Object);
  549. smalltalk.addMethod(
  550. smalltalk.method({
  551. selector: "printOn:",
  552. fn: function (aStream){
  553. var self=this;
  554. return smalltalk.withContext(function($ctx1) {
  555. var $1,$3,$2;
  556. $1=aStream;
  557. $3=_st(_st(_st(self._class())._name())._first())._isVowel();
  558. if(smalltalk.assert($3)){
  559. $2="an ";
  560. } else {
  561. $2="a ";
  562. };
  563. _st($1)._nextPutAll_($2);
  564. _st(aStream)._nextPutAll_(_st(self._class())._name());
  565. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.Object)})},
  566. messageSends: ["nextPutAll:", "ifTrue:ifFalse:", "isVowel", "first", "name", "class"]}),
  567. smalltalk.Object);
  568. smalltalk.addMethod(
  569. smalltalk.method({
  570. selector: "printString",
  571. fn: function (){
  572. var self=this;
  573. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  574. return smalltalk.withContext(function($ctx1) {
  575. var $1;
  576. $1=_st($String())._streamContents_((function(stream){
  577. return smalltalk.withContext(function($ctx2) {
  578. return self._printOn_(stream);
  579. }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1)})}));
  580. return $1;
  581. }, function($ctx1) {$ctx1.fill(self,"printString",{},smalltalk.Object)})},
  582. messageSends: ["streamContents:", "printOn:"]}),
  583. smalltalk.Object);
  584. smalltalk.addMethod(
  585. smalltalk.method({
  586. selector: "putOn:",
  587. fn: function (aStream){
  588. var self=this;
  589. return smalltalk.withContext(function($ctx1) {
  590. _st(aStream)._nextPut_(self);
  591. return self}, function($ctx1) {$ctx1.fill(self,"putOn:",{aStream:aStream},smalltalk.Object)})},
  592. messageSends: ["nextPut:"]}),
  593. smalltalk.Object);
  594. smalltalk.addMethod(
  595. smalltalk.method({
  596. selector: "respondsTo:",
  597. fn: function (aSelector){
  598. var self=this;
  599. return smalltalk.withContext(function($ctx1) {
  600. var $1;
  601. $1=_st(self._class())._canUnderstand_(aSelector);
  602. return $1;
  603. }, function($ctx1) {$ctx1.fill(self,"respondsTo:",{aSelector:aSelector},smalltalk.Object)})},
  604. messageSends: ["canUnderstand:", "class"]}),
  605. smalltalk.Object);
  606. smalltalk.addMethod(
  607. smalltalk.method({
  608. selector: "shallowCopy",
  609. fn: function (){
  610. var self=this;
  611. return smalltalk.withContext(function($ctx1) {
  612. var copy = self.klass._new();
  613. for(var i in self) {
  614. if(/^@.+/.test(i)) {
  615. copy[i] = self[i];
  616. }
  617. }
  618. return copy;
  619. ;
  620. return self}, function($ctx1) {$ctx1.fill(self,"shallowCopy",{},smalltalk.Object)})},
  621. messageSends: []}),
  622. smalltalk.Object);
  623. smalltalk.addMethod(
  624. smalltalk.method({
  625. selector: "shouldNotImplement",
  626. fn: function (){
  627. var self=this;
  628. return smalltalk.withContext(function($ctx1) {
  629. self._error_("This method should not be implemented in ".__comma(_st(self._class())._name()));
  630. return self}, function($ctx1) {$ctx1.fill(self,"shouldNotImplement",{},smalltalk.Object)})},
  631. messageSends: ["error:", ",", "name", "class"]}),
  632. smalltalk.Object);
  633. smalltalk.addMethod(
  634. smalltalk.method({
  635. selector: "size",
  636. fn: function (){
  637. var self=this;
  638. return smalltalk.withContext(function($ctx1) {
  639. self._error_("Object not indexable");
  640. return self}, function($ctx1) {$ctx1.fill(self,"size",{},smalltalk.Object)})},
  641. messageSends: ["error:"]}),
  642. smalltalk.Object);
  643. smalltalk.addMethod(
  644. smalltalk.method({
  645. selector: "subclassResponsibility",
  646. fn: function (){
  647. var self=this;
  648. return smalltalk.withContext(function($ctx1) {
  649. self._error_("This method is a responsibility of a subclass");
  650. return self}, function($ctx1) {$ctx1.fill(self,"subclassResponsibility",{},smalltalk.Object)})},
  651. messageSends: ["error:"]}),
  652. smalltalk.Object);
  653. smalltalk.addMethod(
  654. smalltalk.method({
  655. selector: "test",
  656. fn: function (){
  657. var self=this;
  658. var a;
  659. return smalltalk.withContext(function($ctx1) {
  660. a=(1);
  661. self._halt();
  662. return self}, function($ctx1) {$ctx1.fill(self,"test",{a:a},smalltalk.Object)})},
  663. messageSends: ["halt"]}),
  664. smalltalk.Object);
  665. smalltalk.addMethod(
  666. smalltalk.method({
  667. selector: "throw:",
  668. fn: function (anObject){
  669. var self=this;
  670. return smalltalk.withContext(function($ctx1) {
  671. throw anObject ;
  672. return self}, function($ctx1) {$ctx1.fill(self,"throw:",{anObject:anObject},smalltalk.Object)})},
  673. messageSends: []}),
  674. smalltalk.Object);
  675. smalltalk.addMethod(
  676. smalltalk.method({
  677. selector: "try:catch:",
  678. fn: function (aBlock,anotherBlock){
  679. var self=this;
  680. return smalltalk.withContext(function($ctx1) {
  681. try{return aBlock._value()} catch(e) {return anotherBlock._value_(e)};
  682. return self}, function($ctx1) {$ctx1.fill(self,"try:catch:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.Object)})},
  683. messageSends: []}),
  684. smalltalk.Object);
  685. smalltalk.addMethod(
  686. smalltalk.method({
  687. selector: "value",
  688. fn: function (){
  689. var self=this;
  690. return smalltalk.withContext(function($ctx1) {
  691. return self.valueOf();
  692. return self}, function($ctx1) {$ctx1.fill(self,"value",{},smalltalk.Object)})},
  693. messageSends: []}),
  694. smalltalk.Object);
  695. smalltalk.addMethod(
  696. smalltalk.method({
  697. selector: "yourself",
  698. fn: function (){
  699. var self=this;
  700. return smalltalk.withContext(function($ctx1) {
  701. var $1;
  702. $1=self;
  703. return $1;
  704. }, function($ctx1) {$ctx1.fill(self,"yourself",{},smalltalk.Object)})},
  705. messageSends: []}),
  706. smalltalk.Object);
  707. smalltalk.addMethod(
  708. smalltalk.method({
  709. selector: "~=",
  710. fn: function (anObject){
  711. var self=this;
  712. return smalltalk.withContext(function($ctx1) {
  713. var $1;
  714. $1=_st(self.__eq(anObject)).__eq(false);
  715. return $1;
  716. }, function($ctx1) {$ctx1.fill(self,"~=",{anObject:anObject},smalltalk.Object)})},
  717. messageSends: ["="]}),
  718. smalltalk.Object);
  719. smalltalk.addMethod(
  720. smalltalk.method({
  721. selector: "~~",
  722. fn: function (anObject){
  723. var self=this;
  724. return smalltalk.withContext(function($ctx1) {
  725. var $1;
  726. $1=_st(self.__eq_eq(anObject)).__eq(false);
  727. return $1;
  728. }, function($ctx1) {$ctx1.fill(self,"~~",{anObject:anObject},smalltalk.Object)})},
  729. messageSends: ["=", "=="]}),
  730. smalltalk.Object);
  731. smalltalk.addMethod(
  732. smalltalk.method({
  733. selector: "heliosClass",
  734. fn: function (){
  735. var self=this;
  736. return smalltalk.withContext(function($ctx1) {
  737. return "class";
  738. }, function($ctx1) {$ctx1.fill(self,"heliosClass",{},smalltalk.Object.klass)})},
  739. messageSends: []}),
  740. smalltalk.Object.klass);
  741. smalltalk.addMethod(
  742. smalltalk.method({
  743. selector: "initialize",
  744. fn: function (){
  745. var self=this;
  746. return smalltalk.withContext(function($ctx1) {
  747. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.Object.klass)})},
  748. messageSends: []}),
  749. smalltalk.Object.klass);
  750. smalltalk.addClass('Boolean', smalltalk.Object, [], 'Kernel-Objects');
  751. smalltalk.addMethod(
  752. smalltalk.method({
  753. selector: "&",
  754. fn: function (aBoolean){
  755. var self=this;
  756. return smalltalk.withContext(function($ctx1) {
  757. if(self == true) {
  758. return aBoolean;
  759. } else {
  760. return false;
  761. }
  762. ;
  763. return self}, function($ctx1) {$ctx1.fill(self,"&",{aBoolean:aBoolean},smalltalk.Boolean)})},
  764. messageSends: []}),
  765. smalltalk.Boolean);
  766. smalltalk.addMethod(
  767. smalltalk.method({
  768. selector: "=",
  769. fn: function (aBoolean){
  770. var self=this;
  771. return smalltalk.withContext(function($ctx1) {
  772. if(! aBoolean._isBoolean || ! aBoolean._isBoolean()) {
  773. return false;
  774. }
  775. return Boolean(self == true) == aBoolean
  776. ;
  777. return self}, function($ctx1) {$ctx1.fill(self,"=",{aBoolean:aBoolean},smalltalk.Boolean)})},
  778. messageSends: []}),
  779. smalltalk.Boolean);
  780. smalltalk.addMethod(
  781. smalltalk.method({
  782. selector: "==",
  783. fn: function (aBoolean){
  784. var self=this;
  785. return smalltalk.withContext(function($ctx1) {
  786. var $1;
  787. $1=self.__eq(aBoolean);
  788. return $1;
  789. }, function($ctx1) {$ctx1.fill(self,"==",{aBoolean:aBoolean},smalltalk.Boolean)})},
  790. messageSends: ["="]}),
  791. smalltalk.Boolean);
  792. smalltalk.addMethod(
  793. smalltalk.method({
  794. selector: "and:",
  795. fn: function (aBlock){
  796. var self=this;
  797. return smalltalk.withContext(function($ctx1) {
  798. var $2,$1;
  799. $2=self.__eq(true);
  800. $1=_st($2)._ifTrue_ifFalse_(aBlock,(function(){
  801. return smalltalk.withContext(function($ctx2) {
  802. return false;
  803. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  804. return $1;
  805. }, function($ctx1) {$ctx1.fill(self,"and:",{aBlock:aBlock},smalltalk.Boolean)})},
  806. messageSends: ["ifTrue:ifFalse:", "="]}),
  807. smalltalk.Boolean);
  808. smalltalk.addMethod(
  809. smalltalk.method({
  810. selector: "asBit",
  811. fn: function (){
  812. var self=this;
  813. return smalltalk.withContext(function($ctx1) {
  814. var $2,$1;
  815. $2=self;
  816. if(smalltalk.assert($2)){
  817. $1=(1);
  818. } else {
  819. $1=(0);
  820. };
  821. return $1;
  822. }, function($ctx1) {$ctx1.fill(self,"asBit",{},smalltalk.Boolean)})},
  823. messageSends: ["ifTrue:ifFalse:"]}),
  824. smalltalk.Boolean);
  825. smalltalk.addMethod(
  826. smalltalk.method({
  827. selector: "asJSON",
  828. fn: function (){
  829. var self=this;
  830. return smalltalk.withContext(function($ctx1) {
  831. var $1;
  832. $1=self;
  833. return $1;
  834. }, function($ctx1) {$ctx1.fill(self,"asJSON",{},smalltalk.Boolean)})},
  835. messageSends: []}),
  836. smalltalk.Boolean);
  837. smalltalk.addMethod(
  838. smalltalk.method({
  839. selector: "asString",
  840. fn: function (){
  841. var self=this;
  842. return smalltalk.withContext(function($ctx1) {
  843. return self.toString() ;
  844. return self}, function($ctx1) {$ctx1.fill(self,"asString",{},smalltalk.Boolean)})},
  845. messageSends: []}),
  846. smalltalk.Boolean);
  847. smalltalk.addMethod(
  848. smalltalk.method({
  849. selector: "deepCopy",
  850. fn: function (){
  851. var self=this;
  852. return smalltalk.withContext(function($ctx1) {
  853. var $1;
  854. $1=self;
  855. return $1;
  856. }, function($ctx1) {$ctx1.fill(self,"deepCopy",{},smalltalk.Boolean)})},
  857. messageSends: []}),
  858. smalltalk.Boolean);
  859. smalltalk.addMethod(
  860. smalltalk.method({
  861. selector: "ifFalse:",
  862. fn: function (aBlock){
  863. var self=this;
  864. return smalltalk.withContext(function($ctx1) {
  865. var $2,$1;
  866. $2=self;
  867. $1=_st($2)._ifTrue_ifFalse_((function(){
  868. return smalltalk.withContext(function($ctx2) {
  869. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),aBlock);
  870. return $1;
  871. }, function($ctx1) {$ctx1.fill(self,"ifFalse:",{aBlock:aBlock},smalltalk.Boolean)})},
  872. messageSends: ["ifTrue:ifFalse:"]}),
  873. smalltalk.Boolean);
  874. smalltalk.addMethod(
  875. smalltalk.method({
  876. selector: "ifFalse:ifTrue:",
  877. fn: function (aBlock,anotherBlock){
  878. var self=this;
  879. return smalltalk.withContext(function($ctx1) {
  880. var $2,$1;
  881. $2=self;
  882. $1=_st($2)._ifTrue_ifFalse_(anotherBlock,aBlock);
  883. return $1;
  884. }, function($ctx1) {$ctx1.fill(self,"ifFalse:ifTrue:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.Boolean)})},
  885. messageSends: ["ifTrue:ifFalse:"]}),
  886. smalltalk.Boolean);
  887. smalltalk.addMethod(
  888. smalltalk.method({
  889. selector: "ifTrue:",
  890. fn: function (aBlock){
  891. var self=this;
  892. return smalltalk.withContext(function($ctx1) {
  893. var $2,$1;
  894. $2=self;
  895. $1=_st($2)._ifTrue_ifFalse_(aBlock,(function(){
  896. return smalltalk.withContext(function($ctx2) {
  897. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  898. return $1;
  899. }, function($ctx1) {$ctx1.fill(self,"ifTrue:",{aBlock:aBlock},smalltalk.Boolean)})},
  900. messageSends: ["ifTrue:ifFalse:"]}),
  901. smalltalk.Boolean);
  902. smalltalk.addMethod(
  903. smalltalk.method({
  904. selector: "ifTrue:ifFalse:",
  905. fn: function (aBlock,anotherBlock){
  906. var self=this;
  907. return smalltalk.withContext(function($ctx1) {
  908. if(self == true) {
  909. return aBlock._value();
  910. } else {
  911. return anotherBlock._value();
  912. }
  913. ;
  914. return self}, function($ctx1) {$ctx1.fill(self,"ifTrue:ifFalse:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.Boolean)})},
  915. messageSends: []}),
  916. smalltalk.Boolean);
  917. smalltalk.addMethod(
  918. smalltalk.method({
  919. selector: "isBoolean",
  920. fn: function (){
  921. var self=this;
  922. return smalltalk.withContext(function($ctx1) {
  923. return true;
  924. }, function($ctx1) {$ctx1.fill(self,"isBoolean",{},smalltalk.Boolean)})},
  925. messageSends: []}),
  926. smalltalk.Boolean);
  927. smalltalk.addMethod(
  928. smalltalk.method({
  929. selector: "isImmutable",
  930. fn: function (){
  931. var self=this;
  932. return smalltalk.withContext(function($ctx1) {
  933. return true;
  934. }, function($ctx1) {$ctx1.fill(self,"isImmutable",{},smalltalk.Boolean)})},
  935. messageSends: []}),
  936. smalltalk.Boolean);
  937. smalltalk.addMethod(
  938. smalltalk.method({
  939. selector: "not",
  940. fn: function (){
  941. var self=this;
  942. return smalltalk.withContext(function($ctx1) {
  943. var $1;
  944. $1=self.__eq(false);
  945. return $1;
  946. }, function($ctx1) {$ctx1.fill(self,"not",{},smalltalk.Boolean)})},
  947. messageSends: ["="]}),
  948. smalltalk.Boolean);
  949. smalltalk.addMethod(
  950. smalltalk.method({
  951. selector: "or:",
  952. fn: function (aBlock){
  953. var self=this;
  954. return smalltalk.withContext(function($ctx1) {
  955. var $2,$1;
  956. $2=self.__eq(true);
  957. $1=_st($2)._ifTrue_ifFalse_((function(){
  958. return smalltalk.withContext(function($ctx2) {
  959. return true;
  960. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),aBlock);
  961. return $1;
  962. }, function($ctx1) {$ctx1.fill(self,"or:",{aBlock:aBlock},smalltalk.Boolean)})},
  963. messageSends: ["ifTrue:ifFalse:", "="]}),
  964. smalltalk.Boolean);
  965. smalltalk.addMethod(
  966. smalltalk.method({
  967. selector: "printOn:",
  968. fn: function (aStream){
  969. var self=this;
  970. return smalltalk.withContext(function($ctx1) {
  971. _st(aStream)._nextPutAll_(self._asString());
  972. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.Boolean)})},
  973. messageSends: ["nextPutAll:", "asString"]}),
  974. smalltalk.Boolean);
  975. smalltalk.addMethod(
  976. smalltalk.method({
  977. selector: "shallowCopy",
  978. fn: function (){
  979. var self=this;
  980. return smalltalk.withContext(function($ctx1) {
  981. var $1;
  982. $1=self;
  983. return $1;
  984. }, function($ctx1) {$ctx1.fill(self,"shallowCopy",{},smalltalk.Boolean)})},
  985. messageSends: []}),
  986. smalltalk.Boolean);
  987. smalltalk.addMethod(
  988. smalltalk.method({
  989. selector: "|",
  990. fn: function (aBoolean){
  991. var self=this;
  992. return smalltalk.withContext(function($ctx1) {
  993. if(self == true) {
  994. return true;
  995. } else {
  996. return aBoolean;
  997. }
  998. ;
  999. return self}, function($ctx1) {$ctx1.fill(self,"|",{aBoolean:aBoolean},smalltalk.Boolean)})},
  1000. messageSends: []}),
  1001. smalltalk.Boolean);
  1002. smalltalk.addClass('Date', smalltalk.Object, [], 'Kernel-Objects');
  1003. smalltalk.addMethod(
  1004. smalltalk.method({
  1005. selector: "+",
  1006. fn: function (aDate){
  1007. var self=this;
  1008. return smalltalk.withContext(function($ctx1) {
  1009. return self + aDate;
  1010. return self}, function($ctx1) {$ctx1.fill(self,"+",{aDate:aDate},smalltalk.Date)})},
  1011. messageSends: []}),
  1012. smalltalk.Date);
  1013. smalltalk.addMethod(
  1014. smalltalk.method({
  1015. selector: "-",
  1016. fn: function (aDate){
  1017. var self=this;
  1018. return smalltalk.withContext(function($ctx1) {
  1019. return self - aDate;
  1020. return self}, function($ctx1) {$ctx1.fill(self,"-",{aDate:aDate},smalltalk.Date)})},
  1021. messageSends: []}),
  1022. smalltalk.Date);
  1023. smalltalk.addMethod(
  1024. smalltalk.method({
  1025. selector: "<",
  1026. fn: function (aDate){
  1027. var self=this;
  1028. return smalltalk.withContext(function($ctx1) {
  1029. return self < aDate;
  1030. return self}, function($ctx1) {$ctx1.fill(self,"<",{aDate:aDate},smalltalk.Date)})},
  1031. messageSends: []}),
  1032. smalltalk.Date);
  1033. smalltalk.addMethod(
  1034. smalltalk.method({
  1035. selector: "<=",
  1036. fn: function (aDate){
  1037. var self=this;
  1038. return smalltalk.withContext(function($ctx1) {
  1039. return self <= aDate;
  1040. return self}, function($ctx1) {$ctx1.fill(self,"<=",{aDate:aDate},smalltalk.Date)})},
  1041. messageSends: []}),
  1042. smalltalk.Date);
  1043. smalltalk.addMethod(
  1044. smalltalk.method({
  1045. selector: ">",
  1046. fn: function (aDate){
  1047. var self=this;
  1048. return smalltalk.withContext(function($ctx1) {
  1049. return self > aDate;
  1050. return self}, function($ctx1) {$ctx1.fill(self,">",{aDate:aDate},smalltalk.Date)})},
  1051. messageSends: []}),
  1052. smalltalk.Date);
  1053. smalltalk.addMethod(
  1054. smalltalk.method({
  1055. selector: ">=",
  1056. fn: function (aDate){
  1057. var self=this;
  1058. return smalltalk.withContext(function($ctx1) {
  1059. return self >= aDate;
  1060. return self}, function($ctx1) {$ctx1.fill(self,">=",{aDate:aDate},smalltalk.Date)})},
  1061. messageSends: []}),
  1062. smalltalk.Date);
  1063. smalltalk.addMethod(
  1064. smalltalk.method({
  1065. selector: "asDateString",
  1066. fn: function (){
  1067. var self=this;
  1068. return smalltalk.withContext(function($ctx1) {
  1069. return self.toDateString();
  1070. return self}, function($ctx1) {$ctx1.fill(self,"asDateString",{},smalltalk.Date)})},
  1071. messageSends: []}),
  1072. smalltalk.Date);
  1073. smalltalk.addMethod(
  1074. smalltalk.method({
  1075. selector: "asLocaleString",
  1076. fn: function (){
  1077. var self=this;
  1078. return smalltalk.withContext(function($ctx1) {
  1079. return self.toLocaleString();
  1080. return self}, function($ctx1) {$ctx1.fill(self,"asLocaleString",{},smalltalk.Date)})},
  1081. messageSends: []}),
  1082. smalltalk.Date);
  1083. smalltalk.addMethod(
  1084. smalltalk.method({
  1085. selector: "asMilliseconds",
  1086. fn: function (){
  1087. var self=this;
  1088. return smalltalk.withContext(function($ctx1) {
  1089. var $1;
  1090. $1=self._time();
  1091. return $1;
  1092. }, function($ctx1) {$ctx1.fill(self,"asMilliseconds",{},smalltalk.Date)})},
  1093. messageSends: ["time"]}),
  1094. smalltalk.Date);
  1095. smalltalk.addMethod(
  1096. smalltalk.method({
  1097. selector: "asNumber",
  1098. fn: function (){
  1099. var self=this;
  1100. return smalltalk.withContext(function($ctx1) {
  1101. var $1;
  1102. $1=self._asMilliseconds();
  1103. return $1;
  1104. }, function($ctx1) {$ctx1.fill(self,"asNumber",{},smalltalk.Date)})},
  1105. messageSends: ["asMilliseconds"]}),
  1106. smalltalk.Date);
  1107. smalltalk.addMethod(
  1108. smalltalk.method({
  1109. selector: "asString",
  1110. fn: function (){
  1111. var self=this;
  1112. return smalltalk.withContext(function($ctx1) {
  1113. return self.toString();
  1114. return self}, function($ctx1) {$ctx1.fill(self,"asString",{},smalltalk.Date)})},
  1115. messageSends: []}),
  1116. smalltalk.Date);
  1117. smalltalk.addMethod(
  1118. smalltalk.method({
  1119. selector: "asTimeString",
  1120. fn: function (){
  1121. var self=this;
  1122. return smalltalk.withContext(function($ctx1) {
  1123. return self.toTimeString();
  1124. return self}, function($ctx1) {$ctx1.fill(self,"asTimeString",{},smalltalk.Date)})},
  1125. messageSends: []}),
  1126. smalltalk.Date);
  1127. smalltalk.addMethod(
  1128. smalltalk.method({
  1129. selector: "day",
  1130. fn: function (){
  1131. var self=this;
  1132. return smalltalk.withContext(function($ctx1) {
  1133. var $1;
  1134. $1=self._dayOfWeek();
  1135. return $1;
  1136. }, function($ctx1) {$ctx1.fill(self,"day",{},smalltalk.Date)})},
  1137. messageSends: ["dayOfWeek"]}),
  1138. smalltalk.Date);
  1139. smalltalk.addMethod(
  1140. smalltalk.method({
  1141. selector: "day:",
  1142. fn: function (aNumber){
  1143. var self=this;
  1144. return smalltalk.withContext(function($ctx1) {
  1145. self._dayOfWeek_(aNumber);
  1146. return self}, function($ctx1) {$ctx1.fill(self,"day:",{aNumber:aNumber},smalltalk.Date)})},
  1147. messageSends: ["dayOfWeek:"]}),
  1148. smalltalk.Date);
  1149. smalltalk.addMethod(
  1150. smalltalk.method({
  1151. selector: "dayOfMonth",
  1152. fn: function (){
  1153. var self=this;
  1154. return smalltalk.withContext(function($ctx1) {
  1155. return self.getDate();
  1156. return self}, function($ctx1) {$ctx1.fill(self,"dayOfMonth",{},smalltalk.Date)})},
  1157. messageSends: []}),
  1158. smalltalk.Date);
  1159. smalltalk.addMethod(
  1160. smalltalk.method({
  1161. selector: "dayOfMonth:",
  1162. fn: function (aNumber){
  1163. var self=this;
  1164. return smalltalk.withContext(function($ctx1) {
  1165. self.setDate(aNumber);
  1166. return self}, function($ctx1) {$ctx1.fill(self,"dayOfMonth:",{aNumber:aNumber},smalltalk.Date)})},
  1167. messageSends: []}),
  1168. smalltalk.Date);
  1169. smalltalk.addMethod(
  1170. smalltalk.method({
  1171. selector: "dayOfWeek",
  1172. fn: function (){
  1173. var self=this;
  1174. return smalltalk.withContext(function($ctx1) {
  1175. return self.getDay() + 1;
  1176. return self}, function($ctx1) {$ctx1.fill(self,"dayOfWeek",{},smalltalk.Date)})},
  1177. messageSends: []}),
  1178. smalltalk.Date);
  1179. smalltalk.addMethod(
  1180. smalltalk.method({
  1181. selector: "dayOfWeek:",
  1182. fn: function (aNumber){
  1183. var self=this;
  1184. return smalltalk.withContext(function($ctx1) {
  1185. return self.setDay(aNumber - 1);
  1186. return self}, function($ctx1) {$ctx1.fill(self,"dayOfWeek:",{aNumber:aNumber},smalltalk.Date)})},
  1187. messageSends: []}),
  1188. smalltalk.Date);
  1189. smalltalk.addMethod(
  1190. smalltalk.method({
  1191. selector: "hours",
  1192. fn: function (){
  1193. var self=this;
  1194. return smalltalk.withContext(function($ctx1) {
  1195. return self.getHours();
  1196. return self}, function($ctx1) {$ctx1.fill(self,"hours",{},smalltalk.Date)})},
  1197. messageSends: []}),
  1198. smalltalk.Date);
  1199. smalltalk.addMethod(
  1200. smalltalk.method({
  1201. selector: "hours:",
  1202. fn: function (aNumber){
  1203. var self=this;
  1204. return smalltalk.withContext(function($ctx1) {
  1205. self.setHours(aNumber);
  1206. return self}, function($ctx1) {$ctx1.fill(self,"hours:",{aNumber:aNumber},smalltalk.Date)})},
  1207. messageSends: []}),
  1208. smalltalk.Date);
  1209. smalltalk.addMethod(
  1210. smalltalk.method({
  1211. selector: "milliseconds",
  1212. fn: function (){
  1213. var self=this;
  1214. return smalltalk.withContext(function($ctx1) {
  1215. return self.getMilliseconds();
  1216. return self}, function($ctx1) {$ctx1.fill(self,"milliseconds",{},smalltalk.Date)})},
  1217. messageSends: []}),
  1218. smalltalk.Date);
  1219. smalltalk.addMethod(
  1220. smalltalk.method({
  1221. selector: "milliseconds:",
  1222. fn: function (aNumber){
  1223. var self=this;
  1224. return smalltalk.withContext(function($ctx1) {
  1225. self.setMilliseconds(aNumber);
  1226. return self}, function($ctx1) {$ctx1.fill(self,"milliseconds:",{aNumber:aNumber},smalltalk.Date)})},
  1227. messageSends: []}),
  1228. smalltalk.Date);
  1229. smalltalk.addMethod(
  1230. smalltalk.method({
  1231. selector: "minutes",
  1232. fn: function (){
  1233. var self=this;
  1234. return smalltalk.withContext(function($ctx1) {
  1235. return self.getMinutes();
  1236. return self}, function($ctx1) {$ctx1.fill(self,"minutes",{},smalltalk.Date)})},
  1237. messageSends: []}),
  1238. smalltalk.Date);
  1239. smalltalk.addMethod(
  1240. smalltalk.method({
  1241. selector: "minutes:",
  1242. fn: function (aNumber){
  1243. var self=this;
  1244. return smalltalk.withContext(function($ctx1) {
  1245. self.setMinutes(aNumber);
  1246. return self}, function($ctx1) {$ctx1.fill(self,"minutes:",{aNumber:aNumber},smalltalk.Date)})},
  1247. messageSends: []}),
  1248. smalltalk.Date);
  1249. smalltalk.addMethod(
  1250. smalltalk.method({
  1251. selector: "month",
  1252. fn: function (){
  1253. var self=this;
  1254. return smalltalk.withContext(function($ctx1) {
  1255. return self.getMonth() + 1;
  1256. return self}, function($ctx1) {$ctx1.fill(self,"month",{},smalltalk.Date)})},
  1257. messageSends: []}),
  1258. smalltalk.Date);
  1259. smalltalk.addMethod(
  1260. smalltalk.method({
  1261. selector: "month:",
  1262. fn: function (aNumber){
  1263. var self=this;
  1264. return smalltalk.withContext(function($ctx1) {
  1265. self.setMonth(aNumber - 1);
  1266. return self}, function($ctx1) {$ctx1.fill(self,"month:",{aNumber:aNumber},smalltalk.Date)})},
  1267. messageSends: []}),
  1268. smalltalk.Date);
  1269. smalltalk.addMethod(
  1270. smalltalk.method({
  1271. selector: "printOn:",
  1272. fn: function (aStream){
  1273. var self=this;
  1274. return smalltalk.withContext(function($ctx1) {
  1275. _st(aStream)._nextPutAll_(self._asString());
  1276. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.Date)})},
  1277. messageSends: ["nextPutAll:", "asString"]}),
  1278. smalltalk.Date);
  1279. smalltalk.addMethod(
  1280. smalltalk.method({
  1281. selector: "seconds",
  1282. fn: function (){
  1283. var self=this;
  1284. return smalltalk.withContext(function($ctx1) {
  1285. return self.getSeconds();
  1286. return self}, function($ctx1) {$ctx1.fill(self,"seconds",{},smalltalk.Date)})},
  1287. messageSends: []}),
  1288. smalltalk.Date);
  1289. smalltalk.addMethod(
  1290. smalltalk.method({
  1291. selector: "seconds:",
  1292. fn: function (aNumber){
  1293. var self=this;
  1294. return smalltalk.withContext(function($ctx1) {
  1295. self.setSeconds(aNumber);
  1296. return self}, function($ctx1) {$ctx1.fill(self,"seconds:",{aNumber:aNumber},smalltalk.Date)})},
  1297. messageSends: []}),
  1298. smalltalk.Date);
  1299. smalltalk.addMethod(
  1300. smalltalk.method({
  1301. selector: "time",
  1302. fn: function (){
  1303. var self=this;
  1304. return smalltalk.withContext(function($ctx1) {
  1305. return self.getTime();
  1306. return self}, function($ctx1) {$ctx1.fill(self,"time",{},smalltalk.Date)})},
  1307. messageSends: []}),
  1308. smalltalk.Date);
  1309. smalltalk.addMethod(
  1310. smalltalk.method({
  1311. selector: "time:",
  1312. fn: function (aNumber){
  1313. var self=this;
  1314. return smalltalk.withContext(function($ctx1) {
  1315. self.setTime(aNumber);
  1316. return self}, function($ctx1) {$ctx1.fill(self,"time:",{aNumber:aNumber},smalltalk.Date)})},
  1317. messageSends: []}),
  1318. smalltalk.Date);
  1319. smalltalk.addMethod(
  1320. smalltalk.method({
  1321. selector: "year",
  1322. fn: function (){
  1323. var self=this;
  1324. return smalltalk.withContext(function($ctx1) {
  1325. return self.getFullYear();
  1326. return self}, function($ctx1) {$ctx1.fill(self,"year",{},smalltalk.Date)})},
  1327. messageSends: []}),
  1328. smalltalk.Date);
  1329. smalltalk.addMethod(
  1330. smalltalk.method({
  1331. selector: "year:",
  1332. fn: function (aNumber){
  1333. var self=this;
  1334. return smalltalk.withContext(function($ctx1) {
  1335. self.setFullYear(aNumber);
  1336. return self}, function($ctx1) {$ctx1.fill(self,"year:",{aNumber:aNumber},smalltalk.Date)})},
  1337. messageSends: []}),
  1338. smalltalk.Date);
  1339. smalltalk.addMethod(
  1340. smalltalk.method({
  1341. selector: "fromMilliseconds:",
  1342. fn: function (aNumber){
  1343. var self=this;
  1344. return smalltalk.withContext(function($ctx1) {
  1345. var $1;
  1346. $1=self._new_(aNumber);
  1347. return $1;
  1348. }, function($ctx1) {$ctx1.fill(self,"fromMilliseconds:",{aNumber:aNumber},smalltalk.Date.klass)})},
  1349. messageSends: ["new:"]}),
  1350. smalltalk.Date.klass);
  1351. smalltalk.addMethod(
  1352. smalltalk.method({
  1353. selector: "fromSeconds:",
  1354. fn: function (aNumber){
  1355. var self=this;
  1356. return smalltalk.withContext(function($ctx1) {
  1357. var $1;
  1358. $1=self._fromMilliseconds_(_st(aNumber).__star((1000)));
  1359. return $1;
  1360. }, function($ctx1) {$ctx1.fill(self,"fromSeconds:",{aNumber:aNumber},smalltalk.Date.klass)})},
  1361. messageSends: ["fromMilliseconds:", "*"]}),
  1362. smalltalk.Date.klass);
  1363. smalltalk.addMethod(
  1364. smalltalk.method({
  1365. selector: "fromString:",
  1366. fn: function (aString){
  1367. var self=this;
  1368. return smalltalk.withContext(function($ctx1) {
  1369. var $1;
  1370. $1=self._new_(aString);
  1371. return $1;
  1372. }, function($ctx1) {$ctx1.fill(self,"fromString:",{aString:aString},smalltalk.Date.klass)})},
  1373. messageSends: ["new:"]}),
  1374. smalltalk.Date.klass);
  1375. smalltalk.addMethod(
  1376. smalltalk.method({
  1377. selector: "heliosClass",
  1378. fn: function (){
  1379. var self=this;
  1380. return smalltalk.withContext(function($ctx1) {
  1381. return "magnitude";
  1382. }, function($ctx1) {$ctx1.fill(self,"heliosClass",{},smalltalk.Date.klass)})},
  1383. messageSends: []}),
  1384. smalltalk.Date.klass);
  1385. smalltalk.addMethod(
  1386. smalltalk.method({
  1387. selector: "millisecondsToRun:",
  1388. fn: function (aBlock){
  1389. var self=this;
  1390. var t;
  1391. function $Date(){return smalltalk.Date||(typeof Date=="undefined"?nil:Date)}
  1392. return smalltalk.withContext(function($ctx1) {
  1393. var $1;
  1394. t=_st($Date())._now();
  1395. _st(aBlock)._value();
  1396. $1=_st(_st($Date())._now()).__minus(t);
  1397. return $1;
  1398. }, function($ctx1) {$ctx1.fill(self,"millisecondsToRun:",{aBlock:aBlock,t:t},smalltalk.Date.klass)})},
  1399. messageSends: ["now", "value", "-"]}),
  1400. smalltalk.Date.klass);
  1401. smalltalk.addMethod(
  1402. smalltalk.method({
  1403. selector: "new:",
  1404. fn: function (anObject){
  1405. var self=this;
  1406. return smalltalk.withContext(function($ctx1) {
  1407. return new Date(anObject);
  1408. return self}, function($ctx1) {$ctx1.fill(self,"new:",{anObject:anObject},smalltalk.Date.klass)})},
  1409. messageSends: []}),
  1410. smalltalk.Date.klass);
  1411. smalltalk.addMethod(
  1412. smalltalk.method({
  1413. selector: "now",
  1414. fn: function (){
  1415. var self=this;
  1416. return smalltalk.withContext(function($ctx1) {
  1417. var $1;
  1418. $1=self._today();
  1419. return $1;
  1420. }, function($ctx1) {$ctx1.fill(self,"now",{},smalltalk.Date.klass)})},
  1421. messageSends: ["today"]}),
  1422. smalltalk.Date.klass);
  1423. smalltalk.addMethod(
  1424. smalltalk.method({
  1425. selector: "today",
  1426. fn: function (){
  1427. var self=this;
  1428. return smalltalk.withContext(function($ctx1) {
  1429. var $1;
  1430. $1=self._new();
  1431. return $1;
  1432. }, function($ctx1) {$ctx1.fill(self,"today",{},smalltalk.Date.klass)})},
  1433. messageSends: ["new"]}),
  1434. smalltalk.Date.klass);
  1435. smalltalk.addClass('Environment', smalltalk.Object, [], 'Kernel-Objects');
  1436. smalltalk.addMethod(
  1437. smalltalk.method({
  1438. selector: "addInstVarNamed:to:",
  1439. fn: function (aString,aClass){
  1440. var self=this;
  1441. return smalltalk.withContext(function($ctx1) {
  1442. var $1,$2;
  1443. $1=_st(_st(aClass)._instanceVariableNames())._copy();
  1444. _st($1)._add_(aString);
  1445. $2=_st($1)._yourself();
  1446. _st(self._classBuilder())._addSubclassOf_named_instanceVariableNames_package_(_st(aClass)._superclass(),_st(aClass)._name(),$2,_st(_st(aClass)._package())._name());
  1447. return self}, function($ctx1) {$ctx1.fill(self,"addInstVarNamed:to:",{aString:aString,aClass:aClass},smalltalk.Environment)})},
  1448. messageSends: ["addSubclassOf:named:instanceVariableNames:package:", "superclass", "name", "add:", "copy", "instanceVariableNames", "yourself", "package", "classBuilder"]}),
  1449. smalltalk.Environment);
  1450. smalltalk.addMethod(
  1451. smalltalk.method({
  1452. selector: "allSelectors",
  1453. fn: function (){
  1454. var self=this;
  1455. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1456. return smalltalk.withContext(function($ctx1) {
  1457. var $1;
  1458. $1=_st(_st(_st($Smalltalk())._current())._at_("allSelectors"))._value();
  1459. return $1;
  1460. }, function($ctx1) {$ctx1.fill(self,"allSelectors",{},smalltalk.Environment)})},
  1461. messageSends: ["value", "at:", "current"]}),
  1462. smalltalk.Environment);
  1463. smalltalk.addMethod(
  1464. smalltalk.method({
  1465. selector: "availableClassNames",
  1466. fn: function (){
  1467. var self=this;
  1468. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1469. return smalltalk.withContext(function($ctx1) {
  1470. var $1;
  1471. $1=_st(_st(_st($Smalltalk())._current())._classes())._collect_((function(each){
  1472. return smalltalk.withContext(function($ctx2) {
  1473. return _st(each)._name();
  1474. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1475. return $1;
  1476. }, function($ctx1) {$ctx1.fill(self,"availableClassNames",{},smalltalk.Environment)})},
  1477. messageSends: ["collect:", "name", "classes", "current"]}),
  1478. smalltalk.Environment);
  1479. smalltalk.addMethod(
  1480. smalltalk.method({
  1481. selector: "availablePackageNames",
  1482. fn: function (){
  1483. var self=this;
  1484. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1485. return smalltalk.withContext(function($ctx1) {
  1486. var $1;
  1487. $1=_st(_st(_st($Smalltalk())._current())._packages())._collect_((function(each){
  1488. return smalltalk.withContext(function($ctx2) {
  1489. return _st(each)._name();
  1490. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1491. return $1;
  1492. }, function($ctx1) {$ctx1.fill(self,"availablePackageNames",{},smalltalk.Environment)})},
  1493. messageSends: ["collect:", "name", "packages", "current"]}),
  1494. smalltalk.Environment);
  1495. smalltalk.addMethod(
  1496. smalltalk.method({
  1497. selector: "availableProtocolsFor:",
  1498. fn: function (aClass){
  1499. var self=this;
  1500. var protocols;
  1501. return smalltalk.withContext(function($ctx1) {
  1502. var $1,$2;
  1503. protocols=_st(aClass)._protocols();
  1504. $1=_st(aClass)._superclass();
  1505. if(($receiver = $1) == nil || $receiver == undefined){
  1506. $1;
  1507. } else {
  1508. _st(protocols)._addAll_(self._availableProtocolsFor_(_st(aClass)._superclass()));
  1509. };
  1510. $2=_st(_st(protocols)._asSet())._asArray();
  1511. return $2;
  1512. }, function($ctx1) {$ctx1.fill(self,"availableProtocolsFor:",{aClass:aClass,protocols:protocols},smalltalk.Environment)})},
  1513. messageSends: ["protocols", "ifNotNil:", "addAll:", "availableProtocolsFor:", "superclass", "asArray", "asSet"]}),
  1514. smalltalk.Environment);
  1515. smalltalk.addMethod(
  1516. smalltalk.method({
  1517. selector: "classBuilder",
  1518. fn: function (){
  1519. var self=this;
  1520. function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
  1521. return smalltalk.withContext(function($ctx1) {
  1522. var $1;
  1523. $1=_st($ClassBuilder())._new();
  1524. return $1;
  1525. }, function($ctx1) {$ctx1.fill(self,"classBuilder",{},smalltalk.Environment)})},
  1526. messageSends: ["new"]}),
  1527. smalltalk.Environment);
  1528. smalltalk.addMethod(
  1529. smalltalk.method({
  1530. selector: "classNamed:",
  1531. fn: function (aString){
  1532. var self=this;
  1533. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1534. return smalltalk.withContext(function($ctx1) {
  1535. var $2,$1;
  1536. $2=_st(_st($Smalltalk())._current())._at_(_st(aString)._asSymbol());
  1537. if(($receiver = $2) == nil || $receiver == undefined){
  1538. $1=self._error_("Invalid class name");
  1539. } else {
  1540. $1=$2;
  1541. };
  1542. return $1;
  1543. }, function($ctx1) {$ctx1.fill(self,"classNamed:",{aString:aString},smalltalk.Environment)})},
  1544. messageSends: ["ifNil:", "error:", "at:", "asSymbol", "current"]}),
  1545. smalltalk.Environment);
  1546. smalltalk.addMethod(
  1547. smalltalk.method({
  1548. selector: "classes",
  1549. fn: function (){
  1550. var self=this;
  1551. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1552. return smalltalk.withContext(function($ctx1) {
  1553. var $1;
  1554. $1=_st(_st($Smalltalk())._current())._classes();
  1555. return $1;
  1556. }, function($ctx1) {$ctx1.fill(self,"classes",{},smalltalk.Environment)})},
  1557. messageSends: ["classes", "current"]}),
  1558. smalltalk.Environment);
  1559. smalltalk.addMethod(
  1560. smalltalk.method({
  1561. selector: "commitPackage:",
  1562. fn: function (aPackage){
  1563. var self=this;
  1564. return smalltalk.withContext(function($ctx1) {
  1565. _st(aPackage)._commit();
  1566. return self}, function($ctx1) {$ctx1.fill(self,"commitPackage:",{aPackage:aPackage},smalltalk.Environment)})},
  1567. messageSends: ["commit"]}),
  1568. smalltalk.Environment);
  1569. smalltalk.addMethod(
  1570. smalltalk.method({
  1571. selector: "compileClassComment:for:",
  1572. fn: function (aString,aClass){
  1573. var self=this;
  1574. return smalltalk.withContext(function($ctx1) {
  1575. _st(aClass)._comment_(aString);
  1576. return self}, function($ctx1) {$ctx1.fill(self,"compileClassComment:for:",{aString:aString,aClass:aClass},smalltalk.Environment)})},
  1577. messageSends: ["comment:"]}),
  1578. smalltalk.Environment);
  1579. smalltalk.addMethod(
  1580. smalltalk.method({
  1581. selector: "compileClassDefinition:",
  1582. fn: function (aString){
  1583. var self=this;
  1584. function $DoIt(){return smalltalk.DoIt||(typeof DoIt=="undefined"?nil:DoIt)}
  1585. return smalltalk.withContext(function($ctx1) {
  1586. self._eval_on_(aString,_st($DoIt())._new());
  1587. return self}, function($ctx1) {$ctx1.fill(self,"compileClassDefinition:",{aString:aString},smalltalk.Environment)})},
  1588. messageSends: ["eval:on:", "new"]}),
  1589. smalltalk.Environment);
  1590. smalltalk.addMethod(
  1591. smalltalk.method({
  1592. selector: "compileMethod:for:protocol:",
  1593. fn: function (sourceCode,class_,protocol){
  1594. var self=this;
  1595. return smalltalk.withContext(function($ctx1) {
  1596. var $1;
  1597. $1=_st(class_)._compile_category_(sourceCode,protocol);
  1598. return $1;
  1599. }, function($ctx1) {$ctx1.fill(self,"compileMethod:for:protocol:",{sourceCode:sourceCode,class_:class_,protocol:protocol},smalltalk.Environment)})},
  1600. messageSends: ["compile:category:"]}),
  1601. smalltalk.Environment);
  1602. smalltalk.addMethod(
  1603. smalltalk.method({
  1604. selector: "copyClass:to:",
  1605. fn: function (aClass,aClassName){
  1606. var self=this;
  1607. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1608. function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
  1609. return smalltalk.withContext(function($ctx1) {
  1610. var $1;
  1611. $1=_st(_st($Smalltalk())._current())._at_(aClassName);
  1612. if(($receiver = $1) == nil || $receiver == undefined){
  1613. $1;
  1614. } else {
  1615. self._error_(_st("A class named ".__comma(aClassName)).__comma(" already exists"));
  1616. };
  1617. _st(_st($ClassBuilder())._new())._copyClass_named_(aClass,aClassName);
  1618. return self}, function($ctx1) {$ctx1.fill(self,"copyClass:to:",{aClass:aClass,aClassName:aClassName},smalltalk.Environment)})},
  1619. messageSends: ["ifNotNil:", "error:", ",", "at:", "current", "copyClass:named:", "new"]}),
  1620. smalltalk.Environment);
  1621. smalltalk.addMethod(
  1622. smalltalk.method({
  1623. selector: "eval:on:",
  1624. fn: function (aString,aReceiver){
  1625. var self=this;
  1626. var compiler;
  1627. function $Compiler(){return smalltalk.Compiler||(typeof Compiler=="undefined"?nil:Compiler)}
  1628. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  1629. return smalltalk.withContext(function($ctx1) {
  1630. var $1,$2;
  1631. var $early={};
  1632. try {
  1633. compiler=_st($Compiler())._new();
  1634. _st((function(){
  1635. return smalltalk.withContext(function($ctx2) {
  1636. return _st(compiler)._parseExpression_(aString);
  1637. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_($Error(),(function(ex){
  1638. return smalltalk.withContext(function($ctx2) {
  1639. $1=_st(window)._alert_(_st(ex)._messageText());
  1640. throw $early=[$1];
  1641. }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));
  1642. $2=_st(compiler)._evaluateExpression_on_(aString,aReceiver);
  1643. return $2;
  1644. }
  1645. catch(e) {if(e===$early)return e[0]; throw e}
  1646. }, function($ctx1) {$ctx1.fill(self,"eval:on:",{aString:aString,aReceiver:aReceiver,compiler:compiler},smalltalk.Environment)})},
  1647. messageSends: ["new", "on:do:", "alert:", "messageText", "parseExpression:", "evaluateExpression:on:"]}),
  1648. smalltalk.Environment);
  1649. smalltalk.addMethod(
  1650. smalltalk.method({
  1651. selector: "evaluate:on:do:",
  1652. fn: function (aBlock,anErrorClass,exceptionBlock){
  1653. var self=this;
  1654. return smalltalk.withContext(function($ctx1) {
  1655. var $1;
  1656. self._try_catch_(aBlock,(function(exception){
  1657. return smalltalk.withContext(function($ctx2) {
  1658. $1=_st(exception)._isKindOf_(self._classNamed_(_st(anErrorClass)._name()));
  1659. if(smalltalk.assert($1)){
  1660. return _st(exceptionBlock)._value_(exception);
  1661. } else {
  1662. return _st(exception)._signal();
  1663. };
  1664. }, function($ctx2) {$ctx2.fillBlock({exception:exception},$ctx1)})}));
  1665. return self}, function($ctx1) {$ctx1.fill(self,"evaluate:on:do:",{aBlock:aBlock,anErrorClass:anErrorClass,exceptionBlock:exceptionBlock},smalltalk.Environment)})},
  1666. messageSends: ["try:catch:", "ifTrue:ifFalse:", "value:", "signal", "isKindOf:", "classNamed:", "name"]}),
  1667. smalltalk.Environment);
  1668. smalltalk.addMethod(
  1669. smalltalk.method({
  1670. selector: "inspect:",
  1671. fn: function (anObject){
  1672. var self=this;
  1673. function $InspectorHandler(){return smalltalk.InspectorHandler||(typeof InspectorHandler=="undefined"?nil:InspectorHandler)}
  1674. return smalltalk.withContext(function($ctx1) {
  1675. _st(_st($InspectorHandler())._inspector())._inspect_(anObject);
  1676. return self}, function($ctx1) {$ctx1.fill(self,"inspect:",{anObject:anObject},smalltalk.Environment)})},
  1677. messageSends: ["inspect:", "inspector"]}),
  1678. smalltalk.Environment);
  1679. smalltalk.addMethod(
  1680. smalltalk.method({
  1681. selector: "moveClass:toPackage:",
  1682. fn: function (aClass,aPackageName){
  1683. var self=this;
  1684. var package_;
  1685. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  1686. return smalltalk.withContext(function($ctx1) {
  1687. var $1,$2,$3;
  1688. package_=_st($Package())._named_(aPackageName);
  1689. $1=package_;
  1690. if(($receiver = $1) == nil || $receiver == undefined){
  1691. self._error_("Invalid package name");
  1692. } else {
  1693. $1;
  1694. };
  1695. $2=_st(package_).__eq_eq(_st(aClass)._package());
  1696. if(smalltalk.assert($2)){
  1697. $3=self;
  1698. return $3;
  1699. };
  1700. _st(aClass)._package_(package_);
  1701. return self}, function($ctx1) {$ctx1.fill(self,"moveClass:toPackage:",{aClass:aClass,aPackageName:aPackageName,package_:package_},smalltalk.Environment)})},
  1702. messageSends: ["named:", "ifNil:", "error:", "ifTrue:", "==", "package", "package:"]}),
  1703. smalltalk.Environment);
  1704. smalltalk.addMethod(
  1705. smalltalk.method({
  1706. selector: "moveMethod:toClass:",
  1707. fn: function (aMethod,aClassName){
  1708. var self=this;
  1709. var destinationClass;
  1710. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1711. return smalltalk.withContext(function($ctx1) {
  1712. var $1,$2,$3;
  1713. destinationClass=_st(_st($Smalltalk())._current())._at_(_st(aClassName)._asSymbol());
  1714. $1=destinationClass;
  1715. if(($receiver = $1) == nil || $receiver == undefined){
  1716. self._error_("Invalid class name");
  1717. } else {
  1718. $1;
  1719. };
  1720. $2=_st(destinationClass).__eq_eq(_st(aMethod)._methodClass());
  1721. if(smalltalk.assert($2)){
  1722. $3=self;
  1723. return $3;
  1724. };
  1725. _st(destinationClass)._compile_category_(_st(aMethod)._source(),_st(aMethod)._protocol());
  1726. _st(_st(aMethod)._methodClass())._removeCompiledMethod_(aMethod);
  1727. return self}, function($ctx1) {$ctx1.fill(self,"moveMethod:toClass:",{aMethod:aMethod,aClassName:aClassName,destinationClass:destinationClass},smalltalk.Environment)})},
  1728. messageSends: ["at:", "asSymbol", "current", "ifNil:", "error:", "ifTrue:", "==", "methodClass", "compile:category:", "source", "protocol", "removeCompiledMethod:"]}),
  1729. smalltalk.Environment);
  1730. smalltalk.addMethod(
  1731. smalltalk.method({
  1732. selector: "moveMethod:toProtocol:",
  1733. fn: function (aMethod,aProtocol){
  1734. var self=this;
  1735. return smalltalk.withContext(function($ctx1) {
  1736. _st(aMethod)._category_(aProtocol);
  1737. return self}, function($ctx1) {$ctx1.fill(self,"moveMethod:toProtocol:",{aMethod:aMethod,aProtocol:aProtocol},smalltalk.Environment)})},
  1738. messageSends: ["category:"]}),
  1739. smalltalk.Environment);
  1740. smalltalk.addMethod(
  1741. smalltalk.method({
  1742. selector: "packages",
  1743. fn: function (){
  1744. var self=this;
  1745. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1746. return smalltalk.withContext(function($ctx1) {
  1747. var $1;
  1748. $1=_st(_st($Smalltalk())._current())._packages();
  1749. return $1;
  1750. }, function($ctx1) {$ctx1.fill(self,"packages",{},smalltalk.Environment)})},
  1751. messageSends: ["packages", "current"]}),
  1752. smalltalk.Environment);
  1753. smalltalk.addMethod(
  1754. smalltalk.method({
  1755. selector: "registerErrorHandler:",
  1756. fn: function (anErrorHandler){
  1757. var self=this;
  1758. function $ErrorHandler(){return smalltalk.ErrorHandler||(typeof ErrorHandler=="undefined"?nil:ErrorHandler)}
  1759. return smalltalk.withContext(function($ctx1) {
  1760. _st($ErrorHandler())._setCurrent_(anErrorHandler);
  1761. return self}, function($ctx1) {$ctx1.fill(self,"registerErrorHandler:",{anErrorHandler:anErrorHandler},smalltalk.Environment)})},
  1762. messageSends: ["setCurrent:"]}),
  1763. smalltalk.Environment);
  1764. smalltalk.addMethod(
  1765. smalltalk.method({
  1766. selector: "registerInspector:",
  1767. fn: function (anInspector){
  1768. var self=this;
  1769. function $InspectorHandler(){return smalltalk.InspectorHandler||(typeof InspectorHandler=="undefined"?nil:InspectorHandler)}
  1770. return smalltalk.withContext(function($ctx1) {
  1771. _st($InspectorHandler())._register_(anInspector);
  1772. return self}, function($ctx1) {$ctx1.fill(self,"registerInspector:",{anInspector:anInspector},smalltalk.Environment)})},
  1773. messageSends: ["register:"]}),
  1774. smalltalk.Environment);
  1775. smalltalk.addMethod(
  1776. smalltalk.method({
  1777. selector: "registerProgressHandler:",
  1778. fn: function (aProgressHandler){
  1779. var self=this;
  1780. function $ProgressHandler(){return smalltalk.ProgressHandler||(typeof ProgressHandler=="undefined"?nil:ProgressHandler)}
  1781. return smalltalk.withContext(function($ctx1) {
  1782. _st($ProgressHandler())._setCurrent_(aProgressHandler);
  1783. return self}, function($ctx1) {$ctx1.fill(self,"registerProgressHandler:",{aProgressHandler:aProgressHandler},smalltalk.Environment)})},
  1784. messageSends: ["setCurrent:"]}),
  1785. smalltalk.Environment);
  1786. smalltalk.addMethod(
  1787. smalltalk.method({
  1788. selector: "removeClass:",
  1789. fn: function (aClass){
  1790. var self=this;
  1791. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1792. return smalltalk.withContext(function($ctx1) {
  1793. _st(_st($Smalltalk())._current())._removeClass_(aClass);
  1794. return self}, function($ctx1) {$ctx1.fill(self,"removeClass:",{aClass:aClass},smalltalk.Environment)})},
  1795. messageSends: ["removeClass:", "current"]}),
  1796. smalltalk.Environment);
  1797. smalltalk.addMethod(
  1798. smalltalk.method({
  1799. selector: "removeMethod:",
  1800. fn: function (aMethod){
  1801. var self=this;
  1802. return smalltalk.withContext(function($ctx1) {
  1803. _st(_st(aMethod)._methodClass())._removeCompiledMethod_(aMethod);
  1804. return self}, function($ctx1) {$ctx1.fill(self,"removeMethod:",{aMethod:aMethod},smalltalk.Environment)})},
  1805. messageSends: ["removeCompiledMethod:", "methodClass"]}),
  1806. smalltalk.Environment);
  1807. smalltalk.addMethod(
  1808. smalltalk.method({
  1809. selector: "removeProtocol:from:",
  1810. fn: function (aString,aClass){
  1811. var self=this;
  1812. return smalltalk.withContext(function($ctx1) {
  1813. _st(_st(_st(aClass)._methods())._select_((function(each){
  1814. return smalltalk.withContext(function($ctx2) {
  1815. return _st(_st(each)._protocol()).__eq(aString);
  1816. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._do_((function(each){
  1817. return smalltalk.withContext(function($ctx2) {
  1818. return _st(aClass)._removeCompiledMethod_(each);
  1819. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1820. return self}, function($ctx1) {$ctx1.fill(self,"removeProtocol:from:",{aString:aString,aClass:aClass},smalltalk.Environment)})},
  1821. messageSends: ["do:", "removeCompiledMethod:", "select:", "=", "protocol", "methods"]}),
  1822. smalltalk.Environment);
  1823. smalltalk.addMethod(
  1824. smalltalk.method({
  1825. selector: "renameClass:to:",
  1826. fn: function (aClass,aClassName){
  1827. var self=this;
  1828. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1829. function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
  1830. return smalltalk.withContext(function($ctx1) {
  1831. var $1;
  1832. $1=_st(_st($Smalltalk())._current())._at_(aClassName);
  1833. if(($receiver = $1) == nil || $receiver == undefined){
  1834. $1;
  1835. } else {
  1836. self._error_(_st("A class named ".__comma(aClassName)).__comma(" already exists"));
  1837. };
  1838. _st(_st($ClassBuilder())._new())._renameClass_to_(aClass,aClassName);
  1839. return self}, function($ctx1) {$ctx1.fill(self,"renameClass:to:",{aClass:aClass,aClassName:aClassName},smalltalk.Environment)})},
  1840. messageSends: ["ifNotNil:", "error:", ",", "at:", "current", "renameClass:to:", "new"]}),
  1841. smalltalk.Environment);
  1842. smalltalk.addMethod(
  1843. smalltalk.method({
  1844. selector: "renameProtocol:to:in:",
  1845. fn: function (aString,anotherString,aClass){
  1846. var self=this;
  1847. return smalltalk.withContext(function($ctx1) {
  1848. _st(_st(_st(aClass)._methods())._select_((function(each){
  1849. return smalltalk.withContext(function($ctx2) {
  1850. return _st(_st(each)._protocol()).__eq(aString);
  1851. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._do_((function(each){
  1852. return smalltalk.withContext(function($ctx2) {
  1853. return _st(each)._protocol_(anotherString);
  1854. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1855. return self}, function($ctx1) {$ctx1.fill(self,"renameProtocol:to:in:",{aString:aString,anotherString:anotherString,aClass:aClass},smalltalk.Environment)})},
  1856. messageSends: ["do:", "protocol:", "select:", "=", "protocol", "methods"]}),
  1857. smalltalk.Environment);
  1858. smalltalk.addMethod(
  1859. smalltalk.method({
  1860. selector: "setClassCommentOf:to:",
  1861. fn: function (aClass,aString){
  1862. var self=this;
  1863. return smalltalk.withContext(function($ctx1) {
  1864. _st(aClass)._comment_(aString);
  1865. return self}, function($ctx1) {$ctx1.fill(self,"setClassCommentOf:to:",{aClass:aClass,aString:aString},smalltalk.Environment)})},
  1866. messageSends: ["comment:"]}),
  1867. smalltalk.Environment);
  1868. smalltalk.addMethod(
  1869. smalltalk.method({
  1870. selector: "systemAnnouncer",
  1871. fn: function (){
  1872. var self=this;
  1873. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1874. return smalltalk.withContext(function($ctx1) {
  1875. var $1;
  1876. $1=_st(_st(_st($Smalltalk())._current())._at_("SystemAnnouncer"))._current();
  1877. return $1;
  1878. }, function($ctx1) {$ctx1.fill(self,"systemAnnouncer",{},smalltalk.Environment)})},
  1879. messageSends: ["current", "at:"]}),
  1880. smalltalk.Environment);
  1881. smalltalk.addClass('InspectorHandler', smalltalk.Object, [], 'Kernel-Objects');
  1882. smalltalk.InspectorHandler.klass.iVarNames = ['inspector'];
  1883. smalltalk.addMethod(
  1884. smalltalk.method({
  1885. selector: "inspect:",
  1886. fn: function (anObject){
  1887. var self=this;
  1888. return smalltalk.withContext(function($ctx1) {
  1889. var $1;
  1890. $1=_st(self._inspector())._inspect_(anObject);
  1891. return $1;
  1892. }, function($ctx1) {$ctx1.fill(self,"inspect:",{anObject:anObject},smalltalk.InspectorHandler.klass)})},
  1893. messageSends: ["inspect:", "inspector"]}),
  1894. smalltalk.InspectorHandler.klass);
  1895. smalltalk.addMethod(
  1896. smalltalk.method({
  1897. selector: "inspector",
  1898. fn: function (){
  1899. var self=this;
  1900. function $Transcript(){return smalltalk.Transcript||(typeof Transcript=="undefined"?nil:Transcript)}
  1901. return smalltalk.withContext(function($ctx1) {
  1902. var $2,$1;
  1903. $2=self["@inspector"];
  1904. if(($receiver = $2) == nil || $receiver == undefined){
  1905. self["@inspector"]=$Transcript();
  1906. $1=self["@inspector"];
  1907. } else {
  1908. $1=$2;
  1909. };
  1910. return $1;
  1911. }, function($ctx1) {$ctx1.fill(self,"inspector",{},smalltalk.InspectorHandler.klass)})},
  1912. messageSends: ["ifNil:"]}),
  1913. smalltalk.InspectorHandler.klass);
  1914. smalltalk.addMethod(
  1915. smalltalk.method({
  1916. selector: "register:",
  1917. fn: function (anInspector){
  1918. var self=this;
  1919. return smalltalk.withContext(function($ctx1) {
  1920. self["@inspector"]=anInspector;
  1921. return self}, function($ctx1) {$ctx1.fill(self,"register:",{anInspector:anInspector},smalltalk.InspectorHandler.klass)})},
  1922. messageSends: []}),
  1923. smalltalk.InspectorHandler.klass);
  1924. smalltalk.addClass('JSObjectProxy', smalltalk.Object, ['jsObject'], 'Kernel-Objects');
  1925. smalltalk.addMethod(
  1926. smalltalk.method({
  1927. selector: "addObjectVariablesTo:",
  1928. fn: function (aDictionary){
  1929. var self=this;
  1930. return smalltalk.withContext(function($ctx1) {
  1931. for(var i in self['@jsObject']) {
  1932. aDictionary._at_put_(i, self['@jsObject'][i]);
  1933. }
  1934. ;
  1935. return self}, function($ctx1) {$ctx1.fill(self,"addObjectVariablesTo:",{aDictionary:aDictionary},smalltalk.JSObjectProxy)})},
  1936. messageSends: []}),
  1937. smalltalk.JSObjectProxy);
  1938. smalltalk.addMethod(
  1939. smalltalk.method({
  1940. selector: "at:",
  1941. fn: function (aString){
  1942. var self=this;
  1943. return smalltalk.withContext(function($ctx1) {
  1944. return self['@jsObject'][aString];
  1945. return self}, function($ctx1) {$ctx1.fill(self,"at:",{aString:aString},smalltalk.JSObjectProxy)})},
  1946. messageSends: []}),
  1947. smalltalk.JSObjectProxy);
  1948. smalltalk.addMethod(
  1949. smalltalk.method({
  1950. selector: "at:ifAbsent:",
  1951. fn: function (aString,aBlock){
  1952. var self=this;
  1953. return smalltalk.withContext(function($ctx1) {
  1954. var obj = self['@jsObject'];
  1955. return aString in obj ? obj[aString] : aBlock._value();
  1956. ;
  1957. return self}, function($ctx1) {$ctx1.fill(self,"at:ifAbsent:",{aString:aString,aBlock:aBlock},smalltalk.JSObjectProxy)})},
  1958. messageSends: []}),
  1959. smalltalk.JSObjectProxy);
  1960. smalltalk.addMethod(
  1961. smalltalk.method({
  1962. selector: "at:ifPresent:",
  1963. fn: function (aString,aBlock){
  1964. var self=this;
  1965. return smalltalk.withContext(function($ctx1) {
  1966. var obj = self['@jsObject'];
  1967. return aString in obj ? aBlock._value_(obj[aString]) : nil;
  1968. ;
  1969. return self}, function($ctx1) {$ctx1.fill(self,"at:ifPresent:",{aString:aString,aBlock:aBlock},smalltalk.JSObjectProxy)})},
  1970. messageSends: []}),
  1971. smalltalk.JSObjectProxy);
  1972. smalltalk.addMethod(
  1973. smalltalk.method({
  1974. selector: "at:ifPresent:ifAbsent:",
  1975. fn: function (aString,aBlock,anotherBlock){
  1976. var self=this;
  1977. return smalltalk.withContext(function($ctx1) {
  1978. var obj = self['@jsObject'];
  1979. return aString in obj ? aBlock._value_(obj[aString]) : anotherBlock._value();
  1980. ;
  1981. return self}, function($ctx1) {$ctx1.fill(self,"at:ifPresent:ifAbsent:",{aString:aString,aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.JSObjectProxy)})},
  1982. messageSends: []}),
  1983. smalltalk.JSObjectProxy);
  1984. smalltalk.addMethod(
  1985. smalltalk.method({
  1986. selector: "at:put:",
  1987. fn: function (aString,anObject){
  1988. var self=this;
  1989. return smalltalk.withContext(function($ctx1) {
  1990. self['@jsObject'][aString] = anObject;
  1991. return self}, function($ctx1) {$ctx1.fill(self,"at:put:",{aString:aString,anObject:anObject},smalltalk.JSObjectProxy)})},
  1992. messageSends: []}),
  1993. smalltalk.JSObjectProxy);
  1994. smalltalk.addMethod(
  1995. smalltalk.method({
  1996. selector: "doesNotUnderstand:",
  1997. fn: function (aMessage){
  1998. var self=this;
  1999. return smalltalk.withContext(function($ctx1) {
  2000. var $2,$1;
  2001. $2=self._lookupProperty_(_st(_st(aMessage)._selector())._asJavaScriptSelector());
  2002. if(($receiver = $2) == nil || $receiver == undefined){
  2003. $1=smalltalk.Object.fn.prototype._doesNotUnderstand_.apply(_st(self), [aMessage]);
  2004. } else {
  2005. var jsSelector;
  2006. jsSelector=$receiver;
  2007. $1=self._forwardMessage_withArguments_(jsSelector,_st(aMessage)._arguments());
  2008. };
  2009. return $1;
  2010. }, function($ctx1) {$ctx1.fill(self,"doesNotUnderstand:",{aMessage:aMessage},smalltalk.JSObjectProxy)})},
  2011. messageSends: ["ifNil:ifNotNil:", "doesNotUnderstand:", "forwardMessage:withArguments:", "arguments", "lookupProperty:", "asJavaScriptSelector", "selector"]}),
  2012. smalltalk.JSObjectProxy);
  2013. smalltalk.addMethod(
  2014. smalltalk.method({
  2015. selector: "forwardMessage:withArguments:",
  2016. fn: function (aString,anArray){
  2017. var self=this;
  2018. return smalltalk.withContext(function($ctx1) {
  2019. return smalltalk.send(self._jsObject(), aString, anArray);
  2020. ;
  2021. return self}, function($ctx1) {$ctx1.fill(self,"forwardMessage:withArguments:",{aString:aString,anArray:anArray},smalltalk.JSObjectProxy)})},
  2022. messageSends: []}),
  2023. smalltalk.JSObjectProxy);
  2024. smalltalk.addMethod(
  2025. smalltalk.method({
  2026. selector: "inspectOn:",
  2027. fn: function (anInspector){
  2028. var self=this;
  2029. var variables;
  2030. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  2031. return smalltalk.withContext(function($ctx1) {
  2032. variables=_st($Dictionary())._new();
  2033. _st(variables)._at_put_("#self",self._jsObject());
  2034. _st(anInspector)._setLabel_(self._printString());
  2035. self._addObjectVariablesTo_(variables);
  2036. _st(anInspector)._setVariables_(variables);
  2037. return self}, function($ctx1) {$ctx1.fill(self,"inspectOn:",{anInspector:anInspector,variables:variables},smalltalk.JSObjectProxy)})},
  2038. messageSends: ["new", "at:put:", "jsObject", "setLabel:", "printString", "addObjectVariablesTo:", "setVariables:"]}),
  2039. smalltalk.JSObjectProxy);
  2040. smalltalk.addMethod(
  2041. smalltalk.method({
  2042. selector: "jsObject",
  2043. fn: function (){
  2044. var self=this;
  2045. return smalltalk.withContext(function($ctx1) {
  2046. var $1;
  2047. $1=self["@jsObject"];
  2048. return $1;
  2049. }, function($ctx1) {$ctx1.fill(self,"jsObject",{},smalltalk.JSObjectProxy)})},
  2050. messageSends: []}),
  2051. smalltalk.JSObjectProxy);
  2052. smalltalk.addMethod(
  2053. smalltalk.method({
  2054. selector: "jsObject:",
  2055. fn: function (aJSObject){
  2056. var self=this;
  2057. return smalltalk.withContext(function($ctx1) {
  2058. self["@jsObject"]=aJSObject;
  2059. return self}, function($ctx1) {$ctx1.fill(self,"jsObject:",{aJSObject:aJSObject},smalltalk.JSObjectProxy)})},
  2060. messageSends: []}),
  2061. smalltalk.JSObjectProxy);
  2062. smalltalk.addMethod(
  2063. smalltalk.method({
  2064. selector: "keysAndValuesDo:",
  2065. fn: function (aBlock){
  2066. var self=this;
  2067. return smalltalk.withContext(function($ctx1) {
  2068. var o = self['@jsObject'];
  2069. for(var i in o) {
  2070. aBlock._value_value_(i, o[i]);
  2071. }
  2072. ;
  2073. return self}, function($ctx1) {$ctx1.fill(self,"keysAndValuesDo:",{aBlock:aBlock},smalltalk.JSObjectProxy)})},
  2074. messageSends: []}),
  2075. smalltalk.JSObjectProxy);
  2076. smalltalk.addMethod(
  2077. smalltalk.method({
  2078. selector: "lookupProperty:",
  2079. fn: function (aString){
  2080. var self=this;
  2081. return smalltalk.withContext(function($ctx1) {
  2082. return aString in self._jsObject() ? aString : nil;
  2083. return self}, function($ctx1) {$ctx1.fill(self,"lookupProperty:",{aString:aString},smalltalk.JSObjectProxy)})},
  2084. messageSends: []}),
  2085. smalltalk.JSObjectProxy);
  2086. smalltalk.addMethod(
  2087. smalltalk.method({
  2088. selector: "printOn:",
  2089. fn: function (aStream){
  2090. var self=this;
  2091. return smalltalk.withContext(function($ctx1) {
  2092. _st(aStream)._nextPutAll_(_st(self._jsObject())._toString());
  2093. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.JSObjectProxy)})},
  2094. messageSends: ["nextPutAll:", "toString", "jsObject"]}),
  2095. smalltalk.JSObjectProxy);
  2096. smalltalk.addMethod(
  2097. smalltalk.method({
  2098. selector: "value",
  2099. fn: function (){
  2100. var self=this;
  2101. return smalltalk.withContext(function($ctx1) {
  2102. var $1;
  2103. $1=self._at_ifAbsent_("value",(function(){
  2104. return smalltalk.withContext(function($ctx2) {
  2105. return smalltalk.Object.fn.prototype._value.apply(_st(self), []);
  2106. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2107. return $1;
  2108. }, function($ctx1) {$ctx1.fill(self,"value",{},smalltalk.JSObjectProxy)})},
  2109. messageSends: ["at:ifAbsent:", "value"]}),
  2110. smalltalk.JSObjectProxy);
  2111. smalltalk.addMethod(
  2112. smalltalk.method({
  2113. selector: "on:",
  2114. fn: function (aJSObject){
  2115. var self=this;
  2116. return smalltalk.withContext(function($ctx1) {
  2117. var $2,$3,$1;
  2118. $2=self._new();
  2119. _st($2)._jsObject_(aJSObject);
  2120. $3=_st($2)._yourself();
  2121. $1=$3;
  2122. return $1;
  2123. }, function($ctx1) {$ctx1.fill(self,"on:",{aJSObject:aJSObject},smalltalk.JSObjectProxy.klass)})},
  2124. messageSends: ["jsObject:", "new", "yourself"]}),
  2125. smalltalk.JSObjectProxy.klass);
  2126. smalltalk.addClass('Number', smalltalk.Object, [], 'Kernel-Objects');
  2127. smalltalk.addMethod(
  2128. smalltalk.method({
  2129. selector: "&",
  2130. fn: function (aNumber){
  2131. var self=this;
  2132. return smalltalk.withContext(function($ctx1) {
  2133. return self & aNumber;
  2134. return self}, function($ctx1) {$ctx1.fill(self,"&",{aNumber:aNumber},smalltalk.Number)})},
  2135. messageSends: []}),
  2136. smalltalk.Number);
  2137. smalltalk.addMethod(
  2138. smalltalk.method({
  2139. selector: "*",
  2140. fn: function (aNumber){
  2141. var self=this;
  2142. return smalltalk.withContext(function($ctx1) {
  2143. return self * aNumber;
  2144. return self}, function($ctx1) {$ctx1.fill(self,"*",{aNumber:aNumber},smalltalk.Number)})},
  2145. messageSends: []}),
  2146. smalltalk.Number);
  2147. smalltalk.addMethod(
  2148. smalltalk.method({
  2149. selector: "+",
  2150. fn: function (aNumber){
  2151. var self=this;
  2152. return smalltalk.withContext(function($ctx1) {
  2153. return self + aNumber;
  2154. return self}, function($ctx1) {$ctx1.fill(self,"+",{aNumber:aNumber},smalltalk.Number)})},
  2155. messageSends: []}),
  2156. smalltalk.Number);
  2157. smalltalk.addMethod(
  2158. smalltalk.method({
  2159. selector: "-",
  2160. fn: function (aNumber){
  2161. var self=this;
  2162. return smalltalk.withContext(function($ctx1) {
  2163. return self - aNumber;
  2164. return self}, function($ctx1) {$ctx1.fill(self,"-",{aNumber:aNumber},smalltalk.Number)})},
  2165. messageSends: []}),
  2166. smalltalk.Number);
  2167. smalltalk.addMethod(
  2168. smalltalk.method({
  2169. selector: "/",
  2170. fn: function (aNumber){
  2171. var self=this;
  2172. return smalltalk.withContext(function($ctx1) {
  2173. return self / aNumber;
  2174. return self}, function($ctx1) {$ctx1.fill(self,"/",{aNumber:aNumber},smalltalk.Number)})},
  2175. messageSends: []}),
  2176. smalltalk.Number);
  2177. smalltalk.addMethod(
  2178. smalltalk.method({
  2179. selector: "<",
  2180. fn: function (aNumber){
  2181. var self=this;
  2182. return smalltalk.withContext(function($ctx1) {
  2183. return self < aNumber;
  2184. return self}, function($ctx1) {$ctx1.fill(self,"<",{aNumber:aNumber},smalltalk.Number)})},
  2185. messageSends: []}),
  2186. smalltalk.Number);
  2187. smalltalk.addMethod(
  2188. smalltalk.method({
  2189. selector: "<=",
  2190. fn: function (aNumber){
  2191. var self=this;
  2192. return smalltalk.withContext(function($ctx1) {
  2193. return self <= aNumber;
  2194. return self}, function($ctx1) {$ctx1.fill(self,"<=",{aNumber:aNumber},smalltalk.Number)})},
  2195. messageSends: []}),
  2196. smalltalk.Number);
  2197. smalltalk.addMethod(
  2198. smalltalk.method({
  2199. selector: "=",
  2200. fn: function (aNumber){
  2201. var self=this;
  2202. return smalltalk.withContext(function($ctx1) {
  2203. if(! aNumber._isNumber || ! aNumber._isNumber()) {
  2204. return false;
  2205. }
  2206. return Number(self) == aNumber
  2207. ;
  2208. return self}, function($ctx1) {$ctx1.fill(self,"=",{aNumber:aNumber},smalltalk.Number)})},
  2209. messageSends: []}),
  2210. smalltalk.Number);
  2211. smalltalk.addMethod(
  2212. smalltalk.method({
  2213. selector: ">",
  2214. fn: function (aNumber){
  2215. var self=this;
  2216. return smalltalk.withContext(function($ctx1) {
  2217. return self > aNumber;
  2218. return self}, function($ctx1) {$ctx1.fill(self,">",{aNumber:aNumber},smalltalk.Number)})},
  2219. messageSends: []}),
  2220. smalltalk.Number);
  2221. smalltalk.addMethod(
  2222. smalltalk.method({
  2223. selector: ">=",
  2224. fn: function (aNumber){
  2225. var self=this;
  2226. return smalltalk.withContext(function($ctx1) {
  2227. return self >= aNumber;
  2228. return self}, function($ctx1) {$ctx1.fill(self,">=",{aNumber:aNumber},smalltalk.Number)})},
  2229. messageSends: []}),
  2230. smalltalk.Number);
  2231. smalltalk.addMethod(
  2232. smalltalk.method({
  2233. selector: "@",
  2234. fn: function (aNumber){
  2235. var self=this;
  2236. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  2237. return smalltalk.withContext(function($ctx1) {
  2238. var $1;
  2239. $1=_st($Point())._x_y_(self,aNumber);
  2240. return $1;
  2241. }, function($ctx1) {$ctx1.fill(self,"@",{aNumber:aNumber},smalltalk.Number)})},
  2242. messageSends: ["x:y:"]}),
  2243. smalltalk.Number);
  2244. smalltalk.addMethod(
  2245. smalltalk.method({
  2246. selector: "\x5c\x5c",
  2247. fn: function (aNumber){
  2248. var self=this;
  2249. return smalltalk.withContext(function($ctx1) {
  2250. return self % aNumber;
  2251. return self}, function($ctx1) {$ctx1.fill(self,"\x5c\x5c",{aNumber:aNumber},smalltalk.Number)})},
  2252. messageSends: []}),
  2253. smalltalk.Number);
  2254. smalltalk.addMethod(
  2255. smalltalk.method({
  2256. selector: "abs",
  2257. fn: function (){
  2258. var self=this;
  2259. return smalltalk.withContext(function($ctx1) {
  2260. return Math.abs(self);;
  2261. return self}, function($ctx1) {$ctx1.fill(self,"abs",{},smalltalk.Number)})},
  2262. messageSends: []}),
  2263. smalltalk.Number);
  2264. smalltalk.addMethod(
  2265. smalltalk.method({
  2266. selector: "asJSON",
  2267. fn: function (){
  2268. var self=this;
  2269. return smalltalk.withContext(function($ctx1) {
  2270. var $1;
  2271. $1=self;
  2272. return $1;
  2273. }, function($ctx1) {$ctx1.fill(self,"asJSON",{},smalltalk.Number)})},
  2274. messageSends: []}),
  2275. smalltalk.Number);
  2276. smalltalk.addMethod(
  2277. smalltalk.method({
  2278. selector: "asJavascript",
  2279. fn: function (){
  2280. var self=this;
  2281. return smalltalk.withContext(function($ctx1) {
  2282. var $1;
  2283. $1=_st("(".__comma(self._printString())).__comma(")");
  2284. return $1;
  2285. }, function($ctx1) {$ctx1.fill(self,"asJavascript",{},smalltalk.Number)})},
  2286. messageSends: [",", "printString"]}),
  2287. smalltalk.Number);
  2288. smalltalk.addMethod(
  2289. smalltalk.method({
  2290. selector: "asPoint",
  2291. fn: function (){
  2292. var self=this;
  2293. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  2294. return smalltalk.withContext(function($ctx1) {
  2295. var $1;
  2296. $1=_st($Point())._x_y_(self,self);
  2297. return $1;
  2298. }, function($ctx1) {$ctx1.fill(self,"asPoint",{},smalltalk.Number)})},
  2299. messageSends: ["x:y:"]}),
  2300. smalltalk.Number);
  2301. smalltalk.addMethod(
  2302. smalltalk.method({
  2303. selector: "asString",
  2304. fn: function (){
  2305. var self=this;
  2306. return smalltalk.withContext(function($ctx1) {
  2307. return String(self) ;
  2308. return self}, function($ctx1) {$ctx1.fill(self,"asString",{},smalltalk.Number)})},
  2309. messageSends: []}),
  2310. smalltalk.Number);
  2311. smalltalk.addMethod(
  2312. smalltalk.method({
  2313. selector: "atRandom",
  2314. fn: function (){
  2315. var self=this;
  2316. function $Random(){return smalltalk.Random||(typeof Random=="undefined"?nil:Random)}
  2317. return smalltalk.withContext(function($ctx1) {
  2318. var $1;
  2319. $1=_st(_st(_st(_st(_st($Random())._new())._next()).__star(self))._truncated()).__plus((1));
  2320. return $1;
  2321. }, function($ctx1) {$ctx1.fill(self,"atRandom",{},smalltalk.Number)})},
  2322. messageSends: ["+", "truncated", "*", "next", "new"]}),
  2323. smalltalk.Number);
  2324. smalltalk.addMethod(
  2325. smalltalk.method({
  2326. selector: "copy",
  2327. fn: function (){
  2328. var self=this;
  2329. return smalltalk.withContext(function($ctx1) {
  2330. var $1;
  2331. $1=self;
  2332. return $1;
  2333. }, function($ctx1) {$ctx1.fill(self,"copy",{},smalltalk.Number)})},
  2334. messageSends: []}),
  2335. smalltalk.Number);
  2336. smalltalk.addMethod(
  2337. smalltalk.method({
  2338. selector: "deepCopy",
  2339. fn: function (){
  2340. var self=this;
  2341. return smalltalk.withContext(function($ctx1) {
  2342. var $1;
  2343. $1=self._copy();
  2344. return $1;
  2345. }, function($ctx1) {$ctx1.fill(self,"deepCopy",{},smalltalk.Number)})},
  2346. messageSends: ["copy"]}),
  2347. smalltalk.Number);
  2348. smalltalk.addMethod(
  2349. smalltalk.method({
  2350. selector: "even",
  2351. fn: function (){
  2352. var self=this;
  2353. return smalltalk.withContext(function($ctx1) {
  2354. var $1;
  2355. $1=(0).__eq(self.__backslash_backslash((2)));
  2356. return $1;
  2357. }, function($ctx1) {$ctx1.fill(self,"even",{},smalltalk.Number)})},
  2358. messageSends: ["=", "\x5c\x5c"]}),
  2359. smalltalk.Number);
  2360. smalltalk.addMethod(
  2361. smalltalk.method({
  2362. selector: "identityHash",
  2363. fn: function (){
  2364. var self=this;
  2365. return smalltalk.withContext(function($ctx1) {
  2366. var $1;
  2367. $1=_st(self._asString()).__comma("n");
  2368. return $1;
  2369. }, function($ctx1) {$ctx1.fill(self,"identityHash",{},smalltalk.Number)})},
  2370. messageSends: [",", "asString"]}),
  2371. smalltalk.Number);
  2372. smalltalk.addMethod(
  2373. smalltalk.method({
  2374. selector: "isImmutable",
  2375. fn: function (){
  2376. var self=this;
  2377. return smalltalk.withContext(function($ctx1) {
  2378. return true;
  2379. }, function($ctx1) {$ctx1.fill(self,"isImmutable",{},smalltalk.Number)})},
  2380. messageSends: []}),
  2381. smalltalk.Number);
  2382. smalltalk.addMethod(
  2383. smalltalk.method({
  2384. selector: "isNumber",
  2385. fn: function (){
  2386. var self=this;
  2387. return smalltalk.withContext(function($ctx1) {
  2388. return true;
  2389. }, function($ctx1) {$ctx1.fill(self,"isNumber",{},smalltalk.Number)})},
  2390. messageSends: []}),
  2391. smalltalk.Number);
  2392. smalltalk.addMethod(
  2393. smalltalk.method({
  2394. selector: "isZero",
  2395. fn: function (){
  2396. var self=this;
  2397. return smalltalk.withContext(function($ctx1) {
  2398. var $1;
  2399. $1=self.__eq((0));
  2400. return $1;
  2401. }, function($ctx1) {$ctx1.fill(self,"isZero",{},smalltalk.Number)})},
  2402. messageSends: ["="]}),
  2403. smalltalk.Number);
  2404. smalltalk.addMethod(
  2405. smalltalk.method({
  2406. selector: "max:",
  2407. fn: function (aNumber){
  2408. var self=this;
  2409. return smalltalk.withContext(function($ctx1) {
  2410. return Math.max(self, aNumber);;
  2411. return self}, function($ctx1) {$ctx1.fill(self,"max:",{aNumber:aNumber},smalltalk.Number)})},
  2412. messageSends: []}),
  2413. smalltalk.Number);
  2414. smalltalk.addMethod(
  2415. smalltalk.method({
  2416. selector: "min:",
  2417. fn: function (aNumber){
  2418. var self=this;
  2419. return smalltalk.withContext(function($ctx1) {
  2420. return Math.min(self, aNumber);;
  2421. return self}, function($ctx1) {$ctx1.fill(self,"min:",{aNumber:aNumber},smalltalk.Number)})},
  2422. messageSends: []}),
  2423. smalltalk.Number);
  2424. smalltalk.addMethod(
  2425. smalltalk.method({
  2426. selector: "negated",
  2427. fn: function (){
  2428. var self=this;
  2429. return smalltalk.withContext(function($ctx1) {
  2430. var $1;
  2431. $1=(0).__minus(self);
  2432. return $1;
  2433. }, function($ctx1) {$ctx1.fill(self,"negated",{},smalltalk.Number)})},
  2434. messageSends: ["-"]}),
  2435. smalltalk.Number);
  2436. smalltalk.addMethod(
  2437. smalltalk.method({
  2438. selector: "negative",
  2439. fn: function (){
  2440. var self=this;
  2441. return smalltalk.withContext(function($ctx1) {
  2442. var $1;
  2443. $1=self.__lt((0));
  2444. return $1;
  2445. }, function($ctx1) {$ctx1.fill(self,"negative",{},smalltalk.Number)})},
  2446. messageSends: ["<"]}),
  2447. smalltalk.Number);
  2448. smalltalk.addMethod(
  2449. smalltalk.method({
  2450. selector: "odd",
  2451. fn: function (){
  2452. var self=this;
  2453. return smalltalk.withContext(function($ctx1) {
  2454. var $1;
  2455. $1=_st(self._even())._not();
  2456. return $1;
  2457. }, function($ctx1) {$ctx1.fill(self,"odd",{},smalltalk.Number)})},
  2458. messageSends: ["not", "even"]}),
  2459. smalltalk.Number);
  2460. smalltalk.addMethod(
  2461. smalltalk.method({
  2462. selector: "positive",
  2463. fn: function (){
  2464. var self=this;
  2465. return smalltalk.withContext(function($ctx1) {
  2466. var $1;
  2467. $1=self.__gt_eq((0));
  2468. return $1;
  2469. }, function($ctx1) {$ctx1.fill(self,"positive",{},smalltalk.Number)})},
  2470. messageSends: [">="]}),
  2471. smalltalk.Number);
  2472. smalltalk.addMethod(
  2473. smalltalk.method({
  2474. selector: "printOn:",
  2475. fn: function (aStream){
  2476. var self=this;
  2477. return smalltalk.withContext(function($ctx1) {
  2478. _st(aStream)._nextPutAll_(self._asString());
  2479. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.Number)})},
  2480. messageSends: ["nextPutAll:", "asString"]}),
  2481. smalltalk.Number);
  2482. smalltalk.addMethod(
  2483. smalltalk.method({
  2484. selector: "printShowingDecimalPlaces:",
  2485. fn: function (placesDesired){
  2486. var self=this;
  2487. return smalltalk.withContext(function($ctx1) {
  2488. return self.toFixed(placesDesired);
  2489. return self}, function($ctx1) {$ctx1.fill(self,"printShowingDecimalPlaces:",{placesDesired:placesDesired},smalltalk.Number)})},
  2490. messageSends: []}),
  2491. smalltalk.Number);
  2492. smalltalk.addMethod(
  2493. smalltalk.method({
  2494. selector: "rounded",
  2495. fn: function (){
  2496. var self=this;
  2497. return smalltalk.withContext(function($ctx1) {
  2498. return Math.round(self);;
  2499. return self}, function($ctx1) {$ctx1.fill(self,"rounded",{},smalltalk.Number)})},
  2500. messageSends: []}),
  2501. smalltalk.Number);
  2502. smalltalk.addMethod(
  2503. smalltalk.method({
  2504. selector: "sqrt",
  2505. fn: function (){
  2506. var self=this;
  2507. return smalltalk.withContext(function($ctx1) {
  2508. return Math.sqrt(self);
  2509. return self}, function($ctx1) {$ctx1.fill(self,"sqrt",{},smalltalk.Number)})},
  2510. messageSends: []}),
  2511. smalltalk.Number);
  2512. smalltalk.addMethod(
  2513. smalltalk.method({
  2514. selector: "squared",
  2515. fn: function (){
  2516. var self=this;
  2517. return smalltalk.withContext(function($ctx1) {
  2518. var $1;
  2519. $1=self.__star(self);
  2520. return $1;
  2521. }, function($ctx1) {$ctx1.fill(self,"squared",{},smalltalk.Number)})},
  2522. messageSends: ["*"]}),
  2523. smalltalk.Number);
  2524. smalltalk.addMethod(
  2525. smalltalk.method({
  2526. selector: "timesRepeat:",
  2527. fn: function (aBlock){
  2528. var self=this;
  2529. var count;
  2530. return smalltalk.withContext(function($ctx1) {
  2531. count=(1);
  2532. _st((function(){
  2533. return smalltalk.withContext(function($ctx2) {
  2534. return _st(count).__gt(self);
  2535. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
  2536. return smalltalk.withContext(function($ctx2) {
  2537. _st(aBlock)._value();
  2538. count=_st(count).__plus((1));
  2539. return count;
  2540. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2541. return self}, function($ctx1) {$ctx1.fill(self,"timesRepeat:",{aBlock:aBlock,count:count},smalltalk.Number)})},
  2542. messageSends: ["whileFalse:", "value", "+", ">"]}),
  2543. smalltalk.Number);
  2544. smalltalk.addMethod(
  2545. smalltalk.method({
  2546. selector: "to:",
  2547. fn: function (aNumber){
  2548. var self=this;
  2549. var array,first,last,count;
  2550. function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
  2551. return smalltalk.withContext(function($ctx1) {
  2552. var $1;
  2553. first=self._truncated();
  2554. last=_st(_st(aNumber)._truncated()).__plus((1));
  2555. count=(1);
  2556. array=_st($Array())._new();
  2557. _st(_st(last).__minus(first))._timesRepeat_((function(){
  2558. return smalltalk.withContext(function($ctx2) {
  2559. _st(array)._at_put_(count,first);
  2560. count=_st(count).__plus((1));
  2561. count;
  2562. first=_st(first).__plus((1));
  2563. return first;
  2564. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2565. $1=array;
  2566. return $1;
  2567. }, function($ctx1) {$ctx1.fill(self,"to:",{aNumber:aNumber,array:array,first:first,last:last,count:count},smalltalk.Number)})},
  2568. messageSends: ["truncated", "+", "new", "timesRepeat:", "at:put:", "-"]}),
  2569. smalltalk.Number);
  2570. smalltalk.addMethod(
  2571. smalltalk.method({
  2572. selector: "to:by:",
  2573. fn: function (stop,step){
  2574. var self=this;
  2575. var array,value,pos;
  2576. function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
  2577. return smalltalk.withContext(function($ctx1) {
  2578. var $1,$2,$3;
  2579. value=self;
  2580. array=_st($Array())._new();
  2581. pos=(1);
  2582. $1=_st(step).__eq((0));
  2583. if(smalltalk.assert($1)){
  2584. self._error_("step must be non-zero");
  2585. };
  2586. $2=_st(step).__lt((0));
  2587. if(smalltalk.assert($2)){
  2588. _st((function(){
  2589. return smalltalk.withContext(function($ctx2) {
  2590. return _st(value).__gt_eq(stop);
  2591. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  2592. return smalltalk.withContext(function($ctx2) {
  2593. _st(array)._at_put_(pos,value);
  2594. pos=_st(pos).__plus((1));
  2595. pos;
  2596. value=_st(value).__plus(step);
  2597. return value;
  2598. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2599. } else {
  2600. _st((function(){
  2601. return smalltalk.withContext(function($ctx2) {
  2602. return _st(value).__lt_eq(stop);
  2603. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  2604. return smalltalk.withContext(function($ctx2) {
  2605. _st(array)._at_put_(pos,value);
  2606. pos=_st(pos).__plus((1));
  2607. pos;
  2608. value=_st(value).__plus(step);
  2609. return value;
  2610. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2611. };
  2612. $3=array;
  2613. return $3;
  2614. }, function($ctx1) {$ctx1.fill(self,"to:by:",{stop:stop,step:step,array:array,value:value,pos:pos},smalltalk.Number)})},
  2615. messageSends: ["new", "ifTrue:", "error:", "=", "ifTrue:ifFalse:", "whileTrue:", "at:put:", "+", ">=", "<=", "<"]}),
  2616. smalltalk.Number);
  2617. smalltalk.addMethod(
  2618. smalltalk.method({
  2619. selector: "to:by:do:",
  2620. fn: function (stop,step,aBlock){
  2621. var self=this;
  2622. var value;
  2623. return smalltalk.withContext(function($ctx1) {
  2624. var $1,$2;
  2625. value=self;
  2626. $1=_st(step).__eq((0));
  2627. if(smalltalk.assert($1)){
  2628. self._error_("step must be non-zero");
  2629. };
  2630. $2=_st(step).__lt((0));
  2631. if(smalltalk.assert($2)){
  2632. _st((function(){
  2633. return smalltalk.withContext(function($ctx2) {
  2634. return _st(value).__gt_eq(stop);
  2635. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  2636. return smalltalk.withContext(function($ctx2) {
  2637. _st(aBlock)._value_(value);
  2638. value=_st(value).__plus(step);
  2639. return value;
  2640. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2641. } else {
  2642. _st((function(){
  2643. return smalltalk.withContext(function($ctx2) {
  2644. return _st(value).__lt_eq(stop);
  2645. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  2646. return smalltalk.withContext(function($ctx2) {
  2647. _st(aBlock)._value_(value);
  2648. value=_st(value).__plus(step);
  2649. return value;
  2650. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2651. };
  2652. return self}, function($ctx1) {$ctx1.fill(self,"to:by:do:",{stop:stop,step:step,aBlock:aBlock,value:value},smalltalk.Number)})},
  2653. messageSends: ["ifTrue:", "error:", "=", "ifTrue:ifFalse:", "whileTrue:", "value:", "+", ">=", "<=", "<"]}),
  2654. smalltalk.Number);
  2655. smalltalk.addMethod(
  2656. smalltalk.method({
  2657. selector: "to:do:",
  2658. fn: function (stop,aBlock){
  2659. var self=this;
  2660. var nextValue;
  2661. return smalltalk.withContext(function($ctx1) {
  2662. nextValue=self;
  2663. _st((function(){
  2664. return smalltalk.withContext(function($ctx2) {
  2665. return _st(nextValue).__lt_eq(stop);
  2666. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  2667. return smalltalk.withContext(function($ctx2) {
  2668. _st(aBlock)._value_(nextValue);
  2669. nextValue=_st(nextValue).__plus((1));
  2670. return nextValue;
  2671. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2672. return self}, function($ctx1) {$ctx1.fill(self,"to:do:",{stop:stop,aBlock:aBlock,nextValue:nextValue},smalltalk.Number)})},
  2673. messageSends: ["whileTrue:", "value:", "+", "<="]}),
  2674. smalltalk.Number);
  2675. smalltalk.addMethod(
  2676. smalltalk.method({
  2677. selector: "truncated",
  2678. fn: function (){
  2679. var self=this;
  2680. return smalltalk.withContext(function($ctx1) {
  2681. if(self >= 0) {
  2682. return Math.floor(self);
  2683. } else {
  2684. return Math.floor(self * (-1)) * (-1);
  2685. };
  2686. ;
  2687. return self}, function($ctx1) {$ctx1.fill(self,"truncated",{},smalltalk.Number)})},
  2688. messageSends: []}),
  2689. smalltalk.Number);
  2690. smalltalk.addMethod(
  2691. smalltalk.method({
  2692. selector: "|",
  2693. fn: function (aNumber){
  2694. var self=this;
  2695. return smalltalk.withContext(function($ctx1) {
  2696. return self | aNumber;
  2697. return self}, function($ctx1) {$ctx1.fill(self,"|",{aNumber:aNumber},smalltalk.Number)})},
  2698. messageSends: []}),
  2699. smalltalk.Number);
  2700. smalltalk.addMethod(
  2701. smalltalk.method({
  2702. selector: "heliosClass",
  2703. fn: function (){
  2704. var self=this;
  2705. return smalltalk.withContext(function($ctx1) {
  2706. return "magnitude";
  2707. }, function($ctx1) {$ctx1.fill(self,"heliosClass",{},smalltalk.Number.klass)})},
  2708. messageSends: []}),
  2709. smalltalk.Number.klass);
  2710. smalltalk.addMethod(
  2711. smalltalk.method({
  2712. selector: "pi",
  2713. fn: function (){
  2714. var self=this;
  2715. return smalltalk.withContext(function($ctx1) {
  2716. return Math.PI;
  2717. return self}, function($ctx1) {$ctx1.fill(self,"pi",{},smalltalk.Number.klass)})},
  2718. messageSends: []}),
  2719. smalltalk.Number.klass);
  2720. smalltalk.addClass('Organizer', smalltalk.Object, [], 'Kernel-Objects');
  2721. smalltalk.addMethod(
  2722. smalltalk.method({
  2723. selector: "addElement:",
  2724. fn: function (anObject){
  2725. var self=this;
  2726. return smalltalk.withContext(function($ctx1) {
  2727. self.elements.addElement(anObject);
  2728. return self}, function($ctx1) {$ctx1.fill(self,"addElement:",{anObject:anObject},smalltalk.Organizer)})},
  2729. messageSends: []}),
  2730. smalltalk.Organizer);
  2731. smalltalk.addMethod(
  2732. smalltalk.method({
  2733. selector: "elements",
  2734. fn: function (){
  2735. var self=this;
  2736. return smalltalk.withContext(function($ctx1) {
  2737. var $1;
  2738. $1=_st(self._basicAt_("elements"))._copy();
  2739. return $1;
  2740. }, function($ctx1) {$ctx1.fill(self,"elements",{},smalltalk.Organizer)})},
  2741. messageSends: ["copy", "basicAt:"]}),
  2742. smalltalk.Organizer);
  2743. smalltalk.addMethod(
  2744. smalltalk.method({
  2745. selector: "removeElement:",
  2746. fn: function (anObject){
  2747. var self=this;
  2748. return smalltalk.withContext(function($ctx1) {
  2749. self.elements.removeElement(anObject);
  2750. return self}, function($ctx1) {$ctx1.fill(self,"removeElement:",{anObject:anObject},smalltalk.Organizer)})},
  2751. messageSends: []}),
  2752. smalltalk.Organizer);
  2753. smalltalk.addClass('ClassOrganizer', smalltalk.Organizer, [], 'Kernel-Objects');
  2754. smalltalk.addMethod(
  2755. smalltalk.method({
  2756. selector: "addElement:",
  2757. fn: function (aString){
  2758. var self=this;
  2759. function $ProtocolAdded(){return smalltalk.ProtocolAdded||(typeof ProtocolAdded=="undefined"?nil:ProtocolAdded)}
  2760. function $SystemAnnouncer(){return smalltalk.SystemAnnouncer||(typeof SystemAnnouncer=="undefined"?nil:SystemAnnouncer)}
  2761. return smalltalk.withContext(function($ctx1) {
  2762. var $1,$2;
  2763. smalltalk.Organizer.fn.prototype._addElement_.apply(_st(self), [aString]);
  2764. $1=_st($ProtocolAdded())._new();
  2765. _st($1)._protocol_(aString);
  2766. _st($1)._theClass_(self._theClass());
  2767. $2=_st($1)._yourself();
  2768. _st(_st($SystemAnnouncer())._current())._announce_($2);
  2769. return self}, function($ctx1) {$ctx1.fill(self,"addElement:",{aString:aString},smalltalk.ClassOrganizer)})},
  2770. messageSends: ["addElement:", "announce:", "protocol:", "new", "theClass:", "theClass", "yourself", "current"]}),
  2771. smalltalk.ClassOrganizer);
  2772. smalltalk.addMethod(
  2773. smalltalk.method({
  2774. selector: "removeElement:",
  2775. fn: function (aString){
  2776. var self=this;
  2777. function $ProtocolRemoved(){return smalltalk.ProtocolRemoved||(typeof ProtocolRemoved=="undefined"?nil:ProtocolRemoved)}
  2778. function $SystemAnnouncer(){return smalltalk.SystemAnnouncer||(typeof SystemAnnouncer=="undefined"?nil:SystemAnnouncer)}
  2779. return smalltalk.withContext(function($ctx1) {
  2780. var $1,$2;
  2781. smalltalk.Organizer.fn.prototype._removeElement_.apply(_st(self), [aString]);
  2782. $1=_st($ProtocolRemoved())._new();
  2783. _st($1)._protocol_(aString);
  2784. _st($1)._theClass_(self._theClass());
  2785. $2=_st($1)._yourself();
  2786. _st(_st($SystemAnnouncer())._current())._announce_($2);
  2787. return self}, function($ctx1) {$ctx1.fill(self,"removeElement:",{aString:aString},smalltalk.ClassOrganizer)})},
  2788. messageSends: ["removeElement:", "announce:", "protocol:", "new", "theClass:", "theClass", "yourself", "current"]}),
  2789. smalltalk.ClassOrganizer);
  2790. smalltalk.addMethod(
  2791. smalltalk.method({
  2792. selector: "theClass",
  2793. fn: function (){
  2794. var self=this;
  2795. return smalltalk.withContext(function($ctx1) {
  2796. return self.theClass ;
  2797. return self}, function($ctx1) {$ctx1.fill(self,"theClass",{},smalltalk.ClassOrganizer)})},
  2798. messageSends: []}),
  2799. smalltalk.ClassOrganizer);
  2800. smalltalk.addClass('PackageOrganizer', smalltalk.Organizer, [], 'Kernel-Objects');
  2801. smalltalk.addClass('Package', smalltalk.Object, ['commitPathJs', 'commitPathSt'], 'Kernel-Objects');
  2802. smalltalk.addMethod(
  2803. smalltalk.method({
  2804. selector: "classes",
  2805. fn: function (){
  2806. var self=this;
  2807. return smalltalk.withContext(function($ctx1) {
  2808. var $1;
  2809. $1=_st(self._organization())._elements();
  2810. return $1;
  2811. }, function($ctx1) {$ctx1.fill(self,"classes",{},smalltalk.Package)})},
  2812. messageSends: ["elements", "organization"]}),
  2813. smalltalk.Package);
  2814. smalltalk.addMethod(
  2815. smalltalk.method({
  2816. selector: "commitPathJs",
  2817. fn: function (){
  2818. var self=this;
  2819. return smalltalk.withContext(function($ctx1) {
  2820. var $2,$1;
  2821. $2=self["@commitPathJs"];
  2822. if(($receiver = $2) == nil || $receiver == undefined){
  2823. $1=_st(self._class())._defaultCommitPathJs();
  2824. } else {
  2825. $1=$2;
  2826. };
  2827. return $1;
  2828. }, function($ctx1) {$ctx1.fill(self,"commitPathJs",{},smalltalk.Package)})},
  2829. messageSends: ["ifNil:", "defaultCommitPathJs", "class"]}),
  2830. smalltalk.Package);
  2831. smalltalk.addMethod(
  2832. smalltalk.method({
  2833. selector: "commitPathJs:",
  2834. fn: function (aString){
  2835. var self=this;
  2836. return smalltalk.withContext(function($ctx1) {
  2837. self["@commitPathJs"]=aString;
  2838. return self}, function($ctx1) {$ctx1.fill(self,"commitPathJs:",{aString:aString},smalltalk.Package)})},
  2839. messageSends: []}),
  2840. smalltalk.Package);
  2841. smalltalk.addMethod(
  2842. smalltalk.method({
  2843. selector: "commitPathSt",
  2844. fn: function (){
  2845. var self=this;
  2846. return smalltalk.withContext(function($ctx1) {
  2847. var $2,$1;
  2848. $2=self["@commitPathSt"];
  2849. if(($receiver = $2) == nil || $receiver == undefined){
  2850. $1=_st(self._class())._defaultCommitPathSt();
  2851. } else {
  2852. $1=$2;
  2853. };
  2854. return $1;
  2855. }, function($ctx1) {$ctx1.fill(self,"commitPathSt",{},smalltalk.Package)})},
  2856. messageSends: ["ifNil:", "defaultCommitPathSt", "class"]}),
  2857. smalltalk.Package);
  2858. smalltalk.addMethod(
  2859. smalltalk.method({
  2860. selector: "commitPathSt:",
  2861. fn: function (aString){
  2862. var self=this;
  2863. return smalltalk.withContext(function($ctx1) {
  2864. self["@commitPathSt"]=aString;
  2865. return self}, function($ctx1) {$ctx1.fill(self,"commitPathSt:",{aString:aString},smalltalk.Package)})},
  2866. messageSends: []}),
  2867. smalltalk.Package);
  2868. smalltalk.addMethod(
  2869. smalltalk.method({
  2870. selector: "isPackage",
  2871. fn: function (){
  2872. var self=this;
  2873. return smalltalk.withContext(function($ctx1) {
  2874. return true;
  2875. }, function($ctx1) {$ctx1.fill(self,"isPackage",{},smalltalk.Package)})},
  2876. messageSends: []}),
  2877. smalltalk.Package);
  2878. smalltalk.addMethod(
  2879. smalltalk.method({
  2880. selector: "name",
  2881. fn: function (){
  2882. var self=this;
  2883. return smalltalk.withContext(function($ctx1) {
  2884. return self.pkgName;
  2885. return self}, function($ctx1) {$ctx1.fill(self,"name",{},smalltalk.Package)})},
  2886. messageSends: []}),
  2887. smalltalk.Package);
  2888. smalltalk.addMethod(
  2889. smalltalk.method({
  2890. selector: "name:",
  2891. fn: function (aString){
  2892. var self=this;
  2893. return smalltalk.withContext(function($ctx1) {
  2894. self.pkgName = aString;
  2895. return self}, function($ctx1) {$ctx1.fill(self,"name:",{aString:aString},smalltalk.Package)})},
  2896. messageSends: []}),
  2897. smalltalk.Package);
  2898. smalltalk.addMethod(
  2899. smalltalk.method({
  2900. selector: "organization",
  2901. fn: function (){
  2902. var self=this;
  2903. return smalltalk.withContext(function($ctx1) {
  2904. var $1;
  2905. $1=self._basicAt_("organization");
  2906. return $1;
  2907. }, function($ctx1) {$ctx1.fill(self,"organization",{},smalltalk.Package)})},
  2908. messageSends: ["basicAt:"]}),
  2909. smalltalk.Package);
  2910. smalltalk.addMethod(
  2911. smalltalk.method({
  2912. selector: "printOn:",
  2913. fn: function (aStream){
  2914. var self=this;
  2915. return smalltalk.withContext(function($ctx1) {
  2916. var $1,$2;
  2917. smalltalk.Object.fn.prototype._printOn_.apply(_st(self), [aStream]);
  2918. $1=aStream;
  2919. _st($1)._nextPutAll_(" (");
  2920. _st($1)._nextPutAll_(self._name());
  2921. $2=_st($1)._nextPutAll_(")");
  2922. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.Package)})},
  2923. messageSends: ["printOn:", "nextPutAll:", "name"]}),
  2924. smalltalk.Package);
  2925. smalltalk.addMethod(
  2926. smalltalk.method({
  2927. selector: "setupClasses",
  2928. fn: function (){
  2929. var self=this;
  2930. function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
  2931. return smalltalk.withContext(function($ctx1) {
  2932. var $1,$2;
  2933. $1=self._classes();
  2934. _st($1)._do_((function(each){
  2935. return smalltalk.withContext(function($ctx2) {
  2936. return _st(_st($ClassBuilder())._new())._setupClass_(each);
  2937. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2938. $2=_st($1)._do_((function(each){
  2939. return smalltalk.withContext(function($ctx2) {
  2940. return _st(each)._initialize();
  2941. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2942. return self}, function($ctx1) {$ctx1.fill(self,"setupClasses",{},smalltalk.Package)})},
  2943. messageSends: ["do:", "setupClass:", "new", "classes", "initialize"]}),
  2944. smalltalk.Package);
  2945. smalltalk.addMethod(
  2946. smalltalk.method({
  2947. selector: "sortedClasses",
  2948. fn: function (){
  2949. var self=this;
  2950. return smalltalk.withContext(function($ctx1) {
  2951. var $1;
  2952. $1=_st(self._class())._sortedClasses_(self._classes());
  2953. return $1;
  2954. }, function($ctx1) {$ctx1.fill(self,"sortedClasses",{},smalltalk.Package)})},
  2955. messageSends: ["sortedClasses:", "classes", "class"]}),
  2956. smalltalk.Package);
  2957. smalltalk.Package.klass.iVarNames = ['defaultCommitPathJs','defaultCommitPathSt'];
  2958. smalltalk.addMethod(
  2959. smalltalk.method({
  2960. selector: "commitPathsFromLoader",
  2961. fn: function (){
  2962. var self=this;
  2963. return smalltalk.withContext(function($ctx1) {
  2964. var commitPath = typeof amber !== 'undefined' && amber.commitPath;
  2965. if (!commitPath) return;
  2966. if (commitPath.js) self._defaultCommitPathJs_(commitPath.js);
  2967. if (commitPath.st) self._defaultCommitPathSt_(commitPath.st);
  2968. ;
  2969. return self}, function($ctx1) {$ctx1.fill(self,"commitPathsFromLoader",{},smalltalk.Package.klass)})},
  2970. messageSends: []}),
  2971. smalltalk.Package.klass);
  2972. smalltalk.addMethod(
  2973. smalltalk.method({
  2974. selector: "defaultCommitPathJs",
  2975. fn: function (){
  2976. var self=this;
  2977. return smalltalk.withContext(function($ctx1) {
  2978. var $2,$1;
  2979. $2=self["@defaultCommitPathJs"];
  2980. if(($receiver = $2) == nil || $receiver == undefined){
  2981. self["@defaultCommitPathJs"]="js";
  2982. $1=self["@defaultCommitPathJs"];
  2983. } else {
  2984. $1=$2;
  2985. };
  2986. return $1;
  2987. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs",{},smalltalk.Package.klass)})},
  2988. messageSends: ["ifNil:"]}),
  2989. smalltalk.Package.klass);
  2990. smalltalk.addMethod(
  2991. smalltalk.method({
  2992. selector: "defaultCommitPathJs:",
  2993. fn: function (aString){
  2994. var self=this;
  2995. return smalltalk.withContext(function($ctx1) {
  2996. self["@defaultCommitPathJs"]=aString;
  2997. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs:",{aString:aString},smalltalk.Package.klass)})},
  2998. messageSends: []}),
  2999. smalltalk.Package.klass);
  3000. smalltalk.addMethod(
  3001. smalltalk.method({
  3002. selector: "defaultCommitPathSt",
  3003. fn: function (){
  3004. var self=this;
  3005. return smalltalk.withContext(function($ctx1) {
  3006. var $2,$1;
  3007. $2=self["@defaultCommitPathSt"];
  3008. if(($receiver = $2) == nil || $receiver == undefined){
  3009. self["@defaultCommitPathSt"]="st";
  3010. $1=self["@defaultCommitPathSt"];
  3011. } else {
  3012. $1=$2;
  3013. };
  3014. return $1;
  3015. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt",{},smalltalk.Package.klass)})},
  3016. messageSends: ["ifNil:"]}),
  3017. smalltalk.Package.klass);
  3018. smalltalk.addMethod(
  3019. smalltalk.method({
  3020. selector: "defaultCommitPathSt:",
  3021. fn: function (aString){
  3022. var self=this;
  3023. return smalltalk.withContext(function($ctx1) {
  3024. self["@defaultCommitPathSt"]=aString;
  3025. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt:",{aString:aString},smalltalk.Package.klass)})},
  3026. messageSends: []}),
  3027. smalltalk.Package.klass);
  3028. smalltalk.addMethod(
  3029. smalltalk.method({
  3030. selector: "initialize",
  3031. fn: function (){
  3032. var self=this;
  3033. return smalltalk.withContext(function($ctx1) {
  3034. smalltalk.Object.klass.fn.prototype._initialize.apply(_st(self), []);
  3035. self._commitPathsFromLoader();
  3036. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.Package.klass)})},
  3037. messageSends: ["initialize", "commitPathsFromLoader"]}),
  3038. smalltalk.Package.klass);
  3039. smalltalk.addMethod(
  3040. smalltalk.method({
  3041. selector: "load:",
  3042. fn: function (aPackageName){
  3043. var self=this;
  3044. return smalltalk.withContext(function($ctx1) {
  3045. self._load_prefix_(aPackageName,_st(self._defaultCommitPathJs()).__comma("/"));
  3046. return self}, function($ctx1) {$ctx1.fill(self,"load:",{aPackageName:aPackageName},smalltalk.Package.klass)})},
  3047. messageSends: ["load:prefix:", ",", "defaultCommitPathJs"]}),
  3048. smalltalk.Package.klass);
  3049. smalltalk.addMethod(
  3050. smalltalk.method({
  3051. selector: "load:prefix:",
  3052. fn: function (aPackageName,aPrefix){
  3053. var self=this;
  3054. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  3055. return smalltalk.withContext(function($ctx1) {
  3056. _st(jQuery)._getScript_onSuccess_(_st(_st(aPrefix).__comma(aPackageName)).__comma(".js"),(function(){
  3057. return smalltalk.withContext(function($ctx2) {
  3058. return _st(_st($Package())._named_(aPackageName))._setupClasses();
  3059. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3060. return self}, function($ctx1) {$ctx1.fill(self,"load:prefix:",{aPackageName:aPackageName,aPrefix:aPrefix},smalltalk.Package.klass)})},
  3061. messageSends: ["getScript:onSuccess:", ",", "setupClasses", "named:"]}),
  3062. smalltalk.Package.klass);
  3063. smalltalk.addMethod(
  3064. smalltalk.method({
  3065. selector: "named:",
  3066. fn: function (aPackageName){
  3067. var self=this;
  3068. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  3069. return smalltalk.withContext(function($ctx1) {
  3070. var $1;
  3071. $1=_st(_st($Smalltalk())._current())._packageAt_(aPackageName);
  3072. return $1;
  3073. }, function($ctx1) {$ctx1.fill(self,"named:",{aPackageName:aPackageName},smalltalk.Package.klass)})},
  3074. messageSends: ["packageAt:", "current"]}),
  3075. smalltalk.Package.klass);
  3076. smalltalk.addMethod(
  3077. smalltalk.method({
  3078. selector: "named:ifAbsent:",
  3079. fn: function (aPackageName,aBlock){
  3080. var self=this;
  3081. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  3082. return smalltalk.withContext(function($ctx1) {
  3083. var $1;
  3084. $1=_st(_st($Smalltalk())._current())._packageAt_ifAbsent_(aPackageName,aBlock);
  3085. return $1;
  3086. }, function($ctx1) {$ctx1.fill(self,"named:ifAbsent:",{aPackageName:aPackageName,aBlock:aBlock},smalltalk.Package.klass)})},
  3087. messageSends: ["packageAt:ifAbsent:", "current"]}),
  3088. smalltalk.Package.klass);
  3089. smalltalk.addMethod(
  3090. smalltalk.method({
  3091. selector: "resetCommitPaths",
  3092. fn: function (){
  3093. var self=this;
  3094. return smalltalk.withContext(function($ctx1) {
  3095. self["@defaultCommitPathJs"]=nil;
  3096. self["@defaultCommitPathSt"]=nil;
  3097. return self}, function($ctx1) {$ctx1.fill(self,"resetCommitPaths",{},smalltalk.Package.klass)})},
  3098. messageSends: []}),
  3099. smalltalk.Package.klass);
  3100. smalltalk.addMethod(
  3101. smalltalk.method({
  3102. selector: "sortedClasses:",
  3103. fn: function (classes){
  3104. var self=this;
  3105. var children,others,nodes,expandedClasses;
  3106. function $ClassSorterNode(){return smalltalk.ClassSorterNode||(typeof ClassSorterNode=="undefined"?nil:ClassSorterNode)}
  3107. function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
  3108. return smalltalk.withContext(function($ctx1) {
  3109. var $1,$2;
  3110. children=[];
  3111. others=[];
  3112. _st(classes)._do_((function(each){
  3113. return smalltalk.withContext(function($ctx2) {
  3114. $1=_st(classes)._includes_(_st(each)._superclass());
  3115. if(smalltalk.assert($1)){
  3116. return _st(others)._add_(each);
  3117. } else {
  3118. return _st(children)._add_(each);
  3119. };
  3120. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  3121. nodes=_st(children)._collect_((function(each){
  3122. return smalltalk.withContext(function($ctx2) {
  3123. return _st($ClassSorterNode())._on_classes_level_(each,others,(0));
  3124. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  3125. nodes=_st(nodes)._sorted_((function(a,b){
  3126. return smalltalk.withContext(function($ctx2) {
  3127. return _st(_st(_st(a)._theClass())._name()).__lt_eq(_st(_st(b)._theClass())._name());
  3128. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));
  3129. expandedClasses=_st($Array())._new();
  3130. _st(nodes)._do_((function(aNode){
  3131. return smalltalk.withContext(function($ctx2) {
  3132. return _st(aNode)._traverseClassesWith_(expandedClasses);
  3133. }, function($ctx2) {$ctx2.fillBlock({aNode:aNode},$ctx1)})}));
  3134. $2=expandedClasses;
  3135. return $2;
  3136. }, function($ctx1) {$ctx1.fill(self,"sortedClasses:",{classes:classes,children:children,others:others,nodes:nodes,expandedClasses:expandedClasses},smalltalk.Package.klass)})},
  3137. messageSends: ["do:", "ifFalse:ifTrue:", "add:", "includes:", "superclass", "collect:", "on:classes:level:", "sorted:", "<=", "name", "theClass", "new", "traverseClassesWith:"]}),
  3138. smalltalk.Package.klass);
  3139. smalltalk.addClass('Point', smalltalk.Object, ['x', 'y'], 'Kernel-Objects');
  3140. smalltalk.addMethod(
  3141. smalltalk.method({
  3142. selector: "*",
  3143. fn: function (aPoint){
  3144. var self=this;
  3145. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  3146. return smalltalk.withContext(function($ctx1) {
  3147. var $1;
  3148. $1=_st($Point())._x_y_(_st(self._x()).__star(_st(_st(aPoint)._asPoint())._x()),_st(self._y()).__star(_st(_st(aPoint)._asPoint())._y()));
  3149. return $1;
  3150. }, function($ctx1) {$ctx1.fill(self,"*",{aPoint:aPoint},smalltalk.Point)})},
  3151. messageSends: ["x:y:", "*", "x", "asPoint", "y"]}),
  3152. smalltalk.Point);
  3153. smalltalk.addMethod(
  3154. smalltalk.method({
  3155. selector: "+",
  3156. fn: function (aPoint){
  3157. var self=this;
  3158. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  3159. return smalltalk.withContext(function($ctx1) {
  3160. var $1;
  3161. $1=_st($Point())._x_y_(_st(self._x()).__plus(_st(_st(aPoint)._asPoint())._x()),_st(self._y()).__plus(_st(_st(aPoint)._asPoint())._y()));
  3162. return $1;
  3163. }, function($ctx1) {$ctx1.fill(self,"+",{aPoint:aPoint},smalltalk.Point)})},
  3164. messageSends: ["x:y:", "+", "x", "asPoint", "y"]}),
  3165. smalltalk.Point);
  3166. smalltalk.addMethod(
  3167. smalltalk.method({
  3168. selector: "-",
  3169. fn: function (aPoint){
  3170. var self=this;
  3171. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  3172. return smalltalk.withContext(function($ctx1) {
  3173. var $1;
  3174. $1=_st($Point())._x_y_(_st(self._x()).__minus(_st(_st(aPoint)._asPoint())._x()),_st(self._y()).__minus(_st(_st(aPoint)._asPoint())._y()));
  3175. return $1;
  3176. }, function($ctx1) {$ctx1.fill(self,"-",{aPoint:aPoint},smalltalk.Point)})},
  3177. messageSends: ["x:y:", "-", "x", "asPoint", "y"]}),
  3178. smalltalk.Point);
  3179. smalltalk.addMethod(
  3180. smalltalk.method({
  3181. selector: "/",
  3182. fn: function (aPoint){
  3183. var self=this;
  3184. function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
  3185. return smalltalk.withContext(function($ctx1) {
  3186. var $1;
  3187. $1=_st($Point())._x_y_(_st(self._x()).__slash(_st(_st(aPoint)._asPoint())._x()),_st(self._y()).__slash(_st(_st(aPoint)._asPoint())._y()));
  3188. return $1;
  3189. }, function($ctx1) {$ctx1.fill(self,"/",{aPoint:aPoint},smalltalk.Point)})},
  3190. messageSends: ["x:y:", "/", "x", "asPoint", "y"]}),
  3191. smalltalk.Point);
  3192. smalltalk.addMethod(
  3193. smalltalk.method({
  3194. selector: "=",
  3195. fn: function (aPoint){
  3196. var self=this;
  3197. return smalltalk.withContext(function($ctx1) {
  3198. var $1;
  3199. $1=_st(_st(_st(aPoint)._class()).__eq(self._class()))._and_((function(){
  3200. return smalltalk.withContext(function($ctx2) {
  3201. return _st(_st(_st(aPoint)._x()).__eq(self._x())).__and(_st(_st(aPoint)._y()).__eq(self._y()));
  3202. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3203. return $1;
  3204. }, function($ctx1) {$ctx1.fill(self,"=",{aPoint:aPoint},smalltalk.Point)})},
  3205. messageSends: ["and:", "&", "=", "y", "x", "class"]}),
  3206. smalltalk.Point);
  3207. smalltalk.addMethod(
  3208. smalltalk.method({
  3209. selector: "asPoint",
  3210. fn: function (){
  3211. var self=this;
  3212. return smalltalk.withContext(function($ctx1) {
  3213. var $1;
  3214. $1=self;
  3215. return $1;
  3216. }, function($ctx1) {$ctx1.fill(self,"asPoint",{},smalltalk.Point)})},
  3217. messageSends: []}),
  3218. smalltalk.Point);
  3219. smalltalk.addMethod(
  3220. smalltalk.method({
  3221. selector: "printOn:",
  3222. fn: function (aStream){
  3223. var self=this;
  3224. return smalltalk.withContext(function($ctx1) {
  3225. var $1;
  3226. _st(self["@x"])._printOn_(aStream);
  3227. _st(aStream)._nextPutAll_("@");
  3228. $1=_st(_st(self["@y"])._notNil())._and_((function(){
  3229. return smalltalk.withContext(function($ctx2) {
  3230. return _st(self["@y"])._negative();
  3231. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3232. if(smalltalk.assert($1)){
  3233. _st(aStream)._space();
  3234. };
  3235. _st(self["@y"])._printOn_(aStream);
  3236. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.Point)})},
  3237. messageSends: ["printOn:", "nextPutAll:", "ifTrue:", "space", "and:", "negative", "notNil"]}),
  3238. smalltalk.Point);
  3239. smalltalk.addMethod(
  3240. smalltalk.method({
  3241. selector: "translateBy:",
  3242. fn: function (delta){
  3243. var self=this;
  3244. return smalltalk.withContext(function($ctx1) {
  3245. var $1;
  3246. $1=_st(_st(_st(delta)._x()).__plus(self["@x"])).__at(_st(_st(delta)._y()).__plus(self["@y"]));
  3247. return $1;
  3248. }, function($ctx1) {$ctx1.fill(self,"translateBy:",{delta:delta},smalltalk.Point)})},
  3249. messageSends: ["@", "+", "y", "x"]}),
  3250. smalltalk.Point);
  3251. smalltalk.addMethod(
  3252. smalltalk.method({
  3253. selector: "x",
  3254. fn: function (){
  3255. var self=this;
  3256. return smalltalk.withContext(function($ctx1) {
  3257. var $1;
  3258. $1=self["@x"];
  3259. return $1;
  3260. }, function($ctx1) {$ctx1.fill(self,"x",{},smalltalk.Point)})},
  3261. messageSends: []}),
  3262. smalltalk.Point);
  3263. smalltalk.addMethod(
  3264. smalltalk.method({
  3265. selector: "x:",
  3266. fn: function (aNumber){
  3267. var self=this;
  3268. return smalltalk.withContext(function($ctx1) {
  3269. self["@x"]=aNumber;
  3270. return self}, function($ctx1) {$ctx1.fill(self,"x:",{aNumber:aNumber},smalltalk.Point)})},
  3271. messageSends: []}),
  3272. smalltalk.Point);
  3273. smalltalk.addMethod(
  3274. smalltalk.method({
  3275. selector: "y",
  3276. fn: function (){
  3277. var self=this;
  3278. return smalltalk.withContext(function($ctx1) {
  3279. var $1;
  3280. $1=self["@y"];
  3281. return $1;
  3282. }, function($ctx1) {$ctx1.fill(self,"y",{},smalltalk.Point)})},
  3283. messageSends: []}),
  3284. smalltalk.Point);
  3285. smalltalk.addMethod(
  3286. smalltalk.method({
  3287. selector: "y:",
  3288. fn: function (aNumber){
  3289. var self=this;
  3290. return smalltalk.withContext(function($ctx1) {
  3291. self["@y"]=aNumber;
  3292. return self}, function($ctx1) {$ctx1.fill(self,"y:",{aNumber:aNumber},smalltalk.Point)})},
  3293. messageSends: []}),
  3294. smalltalk.Point);
  3295. smalltalk.addMethod(
  3296. smalltalk.method({
  3297. selector: "heliosClass",
  3298. fn: function (){
  3299. var self=this;
  3300. return smalltalk.withContext(function($ctx1) {
  3301. return "magnitude";
  3302. }, function($ctx1) {$ctx1.fill(self,"heliosClass",{},smalltalk.Point.klass)})},
  3303. messageSends: []}),
  3304. smalltalk.Point.klass);
  3305. smalltalk.addMethod(
  3306. smalltalk.method({
  3307. selector: "x:y:",
  3308. fn: function (aNumber,anotherNumber){
  3309. var self=this;
  3310. return smalltalk.withContext(function($ctx1) {
  3311. var $2,$3,$1;
  3312. $2=self._new();
  3313. _st($2)._x_(aNumber);
  3314. _st($2)._y_(anotherNumber);
  3315. $3=_st($2)._yourself();
  3316. $1=$3;
  3317. return $1;
  3318. }, function($ctx1) {$ctx1.fill(self,"x:y:",{aNumber:aNumber,anotherNumber:anotherNumber},smalltalk.Point.klass)})},
  3319. messageSends: ["x:", "new", "y:", "yourself"]}),
  3320. smalltalk.Point.klass);
  3321. smalltalk.addClass('ProgressHandler', smalltalk.Object, [], 'Kernel-Objects');
  3322. smalltalk.addMethod(
  3323. smalltalk.method({
  3324. selector: "do:on:displaying:",
  3325. fn: function (aBlock,aCollection,aString){
  3326. var self=this;
  3327. return smalltalk.withContext(function($ctx1) {
  3328. _st(aCollection)._do_(aBlock);
  3329. return self}, function($ctx1) {$ctx1.fill(self,"do:on:displaying:",{aBlock:aBlock,aCollection:aCollection,aString:aString},smalltalk.ProgressHandler)})},
  3330. messageSends: ["do:"]}),
  3331. smalltalk.ProgressHandler);
  3332. smalltalk.ProgressHandler.klass.iVarNames = ['current'];
  3333. smalltalk.addMethod(
  3334. smalltalk.method({
  3335. selector: "current",
  3336. fn: function (){
  3337. var self=this;
  3338. return smalltalk.withContext(function($ctx1) {
  3339. var $2,$1;
  3340. $2=self["@current"];
  3341. if(($receiver = $2) == nil || $receiver == undefined){
  3342. self["@current"]=self._new();
  3343. $1=self["@current"];
  3344. } else {
  3345. $1=$2;
  3346. };
  3347. return $1;
  3348. }, function($ctx1) {$ctx1.fill(self,"current",{},smalltalk.ProgressHandler.klass)})},
  3349. messageSends: ["ifNil:", "new"]}),
  3350. smalltalk.ProgressHandler.klass);
  3351. smalltalk.addMethod(
  3352. smalltalk.method({
  3353. selector: "initialize",
  3354. fn: function (){
  3355. var self=this;
  3356. return smalltalk.withContext(function($ctx1) {
  3357. self._register();
  3358. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.ProgressHandler.klass)})},
  3359. messageSends: ["register"]}),
  3360. smalltalk.ProgressHandler.klass);
  3361. smalltalk.addMethod(
  3362. smalltalk.method({
  3363. selector: "register",
  3364. fn: function (){
  3365. var self=this;
  3366. function $ProgressHandler(){return smalltalk.ProgressHandler||(typeof ProgressHandler=="undefined"?nil:ProgressHandler)}
  3367. return smalltalk.withContext(function($ctx1) {
  3368. _st($ProgressHandler())._setCurrent_(self._new());
  3369. return self}, function($ctx1) {$ctx1.fill(self,"register",{},smalltalk.ProgressHandler.klass)})},
  3370. messageSends: ["setCurrent:", "new"]}),
  3371. smalltalk.ProgressHandler.klass);
  3372. smalltalk.addMethod(
  3373. smalltalk.method({
  3374. selector: "setCurrent:",
  3375. fn: function (anHandler){
  3376. var self=this;
  3377. return smalltalk.withContext(function($ctx1) {
  3378. self["@current"]=anHandler;
  3379. return self}, function($ctx1) {$ctx1.fill(self,"setCurrent:",{anHandler:anHandler},smalltalk.ProgressHandler.klass)})},
  3380. messageSends: []}),
  3381. smalltalk.ProgressHandler.klass);
  3382. smalltalk.addClass('Random', smalltalk.Object, [], 'Kernel-Objects');
  3383. smalltalk.addMethod(
  3384. smalltalk.method({
  3385. selector: "next",
  3386. fn: function (){
  3387. var self=this;
  3388. return smalltalk.withContext(function($ctx1) {
  3389. return Math.random();
  3390. return self}, function($ctx1) {$ctx1.fill(self,"next",{},smalltalk.Random)})},
  3391. messageSends: []}),
  3392. smalltalk.Random);
  3393. smalltalk.addMethod(
  3394. smalltalk.method({
  3395. selector: "next:",
  3396. fn: function (anInteger){
  3397. var self=this;
  3398. return smalltalk.withContext(function($ctx1) {
  3399. var $1;
  3400. $1=_st((1)._to_(anInteger))._collect_((function(each){
  3401. return smalltalk.withContext(function($ctx2) {
  3402. return self._next();
  3403. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  3404. return $1;
  3405. }, function($ctx1) {$ctx1.fill(self,"next:",{anInteger:anInteger},smalltalk.Random)})},
  3406. messageSends: ["collect:", "next", "to:"]}),
  3407. smalltalk.Random);
  3408. smalltalk.addClass('Smalltalk', smalltalk.Object, [], 'Kernel-Objects');
  3409. smalltalk.addMethod(
  3410. smalltalk.method({
  3411. selector: "asSmalltalkException:",
  3412. fn: function (anObject){
  3413. var self=this;
  3414. function $JavaScriptException(){return smalltalk.JavaScriptException||(typeof JavaScriptException=="undefined"?nil:JavaScriptException)}
  3415. function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
  3416. return smalltalk.withContext(function($ctx1) {
  3417. var $2,$1;
  3418. $2=_st(self._isSmalltalkObject_(anObject))._and_((function(){
  3419. return smalltalk.withContext(function($ctx2) {
  3420. return _st(anObject)._isKindOf_($Error());
  3421. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3422. if(smalltalk.assert($2)){
  3423. $1=anObject;
  3424. } else {
  3425. $1=_st($JavaScriptException())._on_(anObject);
  3426. };
  3427. return $1;
  3428. }, function($ctx1) {$ctx1.fill(self,"asSmalltalkException:",{anObject:anObject},smalltalk.Smalltalk)})},
  3429. messageSends: ["ifTrue:ifFalse:", "on:", "and:", "isKindOf:", "isSmalltalkObject:"]}),
  3430. smalltalk.Smalltalk);
  3431. smalltalk.addMethod(
  3432. smalltalk.method({
  3433. selector: "at:",
  3434. fn: function (aString){
  3435. var self=this;
  3436. return smalltalk.withContext(function($ctx1) {
  3437. return self[aString];
  3438. return self}, function($ctx1) {$ctx1.fill(self,"at:",{aString:aString},smalltalk.Smalltalk)})},
  3439. messageSends: []}),
  3440. smalltalk.Smalltalk);
  3441. smalltalk.addMethod(
  3442. smalltalk.method({
  3443. selector: "basicParse:",
  3444. fn: function (aString){
  3445. var self=this;
  3446. return smalltalk.withContext(function($ctx1) {
  3447. return smalltalk.parser.parse(aString);
  3448. return self}, function($ctx1) {$ctx1.fill(self,"basicParse:",{aString:aString},smalltalk.Smalltalk)})},
  3449. messageSends: []}),
  3450. smalltalk.Smalltalk);
  3451. smalltalk.addMethod(
  3452. smalltalk.method({
  3453. selector: "classes",
  3454. fn: function (){
  3455. var self=this;
  3456. return smalltalk.withContext(function($ctx1) {
  3457. return self.classes();
  3458. return self}, function($ctx1) {$ctx1.fill(self,"classes",{},smalltalk.Smalltalk)})},
  3459. messageSends: []}),
  3460. smalltalk.Smalltalk);
  3461. smalltalk.addMethod(
  3462. smalltalk.method({
  3463. selector: "createPackage:",
  3464. fn: function (packageName){
  3465. var self=this;
  3466. return smalltalk.withContext(function($ctx1) {
  3467. return smalltalk.addPackage(packageName);
  3468. return self}, function($ctx1) {$ctx1.fill(self,"createPackage:",{packageName:packageName},smalltalk.Smalltalk)})},
  3469. messageSends: []}),
  3470. smalltalk.Smalltalk);
  3471. smalltalk.addMethod(
  3472. smalltalk.method({
  3473. selector: "createPackage:properties:",
  3474. fn: function (packageName,aDict){
  3475. var self=this;
  3476. return smalltalk.withContext(function($ctx1) {
  3477. var $1,$2;
  3478. self._deprecatedAPI();
  3479. $1=_st(aDict)._isEmpty();
  3480. if(! smalltalk.assert($1)){
  3481. self._error_("createPackage:properties: called with nonempty properties");
  3482. };
  3483. $2=self._createPackage_(packageName);
  3484. return $2;
  3485. }, function($ctx1) {$ctx1.fill(self,"createPackage:properties:",{packageName:packageName,aDict:aDict},smalltalk.Smalltalk)})},
  3486. messageSends: ["deprecatedAPI", "ifFalse:", "error:", "isEmpty", "createPackage:"]}),
  3487. smalltalk.Smalltalk);
  3488. smalltalk.addMethod(
  3489. smalltalk.method({
  3490. selector: "deleteClass:",
  3491. fn: function (aClass){
  3492. var self=this;
  3493. return smalltalk.withContext(function($ctx1) {
  3494. self.removeClass(aClass);
  3495. return self}, function($ctx1) {$ctx1.fill(self,"deleteClass:",{aClass:aClass},smalltalk.Smalltalk)})},
  3496. messageSends: []}),
  3497. smalltalk.Smalltalk);
  3498. smalltalk.addMethod(
  3499. smalltalk.method({
  3500. selector: "deletePackage:",
  3501. fn: function (packageName){
  3502. var self=this;
  3503. return smalltalk.withContext(function($ctx1) {
  3504. delete smalltalk.packages[packageName];
  3505. return self}, function($ctx1) {$ctx1.fill(self,"deletePackage:",{packageName:packageName},smalltalk.Smalltalk)})},
  3506. messageSends: []}),
  3507. smalltalk.Smalltalk);
  3508. smalltalk.addMethod(
  3509. smalltalk.method({
  3510. selector: "isSmalltalkObject:",
  3511. fn: function (anObject){
  3512. var self=this;
  3513. return smalltalk.withContext(function($ctx1) {
  3514. return typeof anObject.klass !== 'undefined';
  3515. return self}, function($ctx1) {$ctx1.fill(self,"isSmalltalkObject:",{anObject:anObject},smalltalk.Smalltalk)})},
  3516. messageSends: []}),
  3517. smalltalk.Smalltalk);
  3518. smalltalk.addMethod(
  3519. smalltalk.method({
  3520. selector: "packageAt:",
  3521. fn: function (packageName){
  3522. var self=this;
  3523. return smalltalk.withContext(function($ctx1) {
  3524. return self.packages[packageName];
  3525. return self}, function($ctx1) {$ctx1.fill(self,"packageAt:",{packageName:packageName},smalltalk.Smalltalk)})},
  3526. messageSends: []}),
  3527. smalltalk.Smalltalk);
  3528. smalltalk.addMethod(
  3529. smalltalk.method({
  3530. selector: "packageAt:ifAbsent:",
  3531. fn: function (packageName,aBlock){
  3532. var self=this;
  3533. return smalltalk.withContext(function($ctx1) {
  3534. var $2,$1;
  3535. $2=self._packageAt_(packageName);
  3536. $1=_st($2)._ifNil_(aBlock);
  3537. return $1;
  3538. }, function($ctx1) {$ctx1.fill(self,"packageAt:ifAbsent:",{packageName:packageName,aBlock:aBlock},smalltalk.Smalltalk)})},
  3539. messageSends: ["ifNil:", "packageAt:"]}),
  3540. smalltalk.Smalltalk);
  3541. smalltalk.addMethod(
  3542. smalltalk.method({
  3543. selector: "packages",
  3544. fn: function (){
  3545. var self=this;
  3546. return smalltalk.withContext(function($ctx1) {
  3547. return self.packages.all();
  3548. return self}, function($ctx1) {$ctx1.fill(self,"packages",{},smalltalk.Smalltalk)})},
  3549. messageSends: []}),
  3550. smalltalk.Smalltalk);
  3551. smalltalk.addMethod(
  3552. smalltalk.method({
  3553. selector: "parse:",
  3554. fn: function (aString){
  3555. var self=this;
  3556. var result;
  3557. return smalltalk.withContext(function($ctx1) {
  3558. var $2,$3,$1;
  3559. self._try_catch_((function(){
  3560. return smalltalk.withContext(function($ctx2) {
  3561. result=self._basicParse_(aString);
  3562. return result;
  3563. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),(function(ex){
  3564. return smalltalk.withContext(function($ctx2) {
  3565. return _st(self._parseError_parsing_(ex,aString))._signal();
  3566. }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));
  3567. $2=result;
  3568. _st($2)._source_(aString);
  3569. $3=_st($2)._yourself();
  3570. $1=$3;
  3571. return $1;
  3572. }, function($ctx1) {$ctx1.fill(self,"parse:",{aString:aString,result:result},smalltalk.Smalltalk)})},
  3573. messageSends: ["try:catch:", "basicParse:", "signal", "parseError:parsing:", "source:", "yourself"]}),
  3574. smalltalk.Smalltalk);
  3575. smalltalk.addMethod(
  3576. smalltalk.method({
  3577. selector: "parseError:parsing:",
  3578. fn: function (anException,aString){
  3579. var self=this;
  3580. function $ParseError(){return smalltalk.ParseError||(typeof ParseError=="undefined"?nil:ParseError)}
  3581. return smalltalk.withContext(function($ctx1) {
  3582. var $1;
  3583. $1=_st(_st($ParseError())._new())._messageText_(_st(_st(_st(_st("Parse error on line ".__comma(_st(anException)._basicAt_("line"))).__comma(" column ")).__comma(_st(anException)._basicAt_("column"))).__comma(" : Unexpected character ")).__comma(_st(anException)._basicAt_("found")));
  3584. return $1;
  3585. }, function($ctx1) {$ctx1.fill(self,"parseError:parsing:",{anException:anException,aString:aString},smalltalk.Smalltalk)})},
  3586. messageSends: ["messageText:", ",", "basicAt:", "new"]}),
  3587. smalltalk.Smalltalk);
  3588. smalltalk.addMethod(
  3589. smalltalk.method({
  3590. selector: "pseudoVariableNames",
  3591. fn: function (){
  3592. var self=this;
  3593. return smalltalk.withContext(function($ctx1) {
  3594. var $1;
  3595. $1=["self", "super", "nil", "true", "false", "thisContext"];
  3596. return $1;
  3597. }, function($ctx1) {$ctx1.fill(self,"pseudoVariableNames",{},smalltalk.Smalltalk)})},
  3598. messageSends: []}),
  3599. smalltalk.Smalltalk);
  3600. smalltalk.addMethod(
  3601. smalltalk.method({
  3602. selector: "readJSObject:",
  3603. fn: function (anObject){
  3604. var self=this;
  3605. return smalltalk.withContext(function($ctx1) {
  3606. return self.readJSObject(anObject);
  3607. return self}, function($ctx1) {$ctx1.fill(self,"readJSObject:",{anObject:anObject},smalltalk.Smalltalk)})},
  3608. messageSends: []}),
  3609. smalltalk.Smalltalk);
  3610. smalltalk.addMethod(
  3611. smalltalk.method({
  3612. selector: "removeClass:",
  3613. fn: function (aClass){
  3614. var self=this;
  3615. function $ClassRemoved(){return smalltalk.ClassRemoved||(typeof ClassRemoved=="undefined"?nil:ClassRemoved)}
  3616. function $SystemAnnouncer(){return smalltalk.SystemAnnouncer||(typeof SystemAnnouncer=="undefined"?nil:SystemAnnouncer)}
  3617. return smalltalk.withContext(function($ctx1) {
  3618. var $1,$2,$3;
  3619. $1=_st(aClass)._isMetaclass();
  3620. if(smalltalk.assert($1)){
  3621. self._error_(_st(_st(aClass)._asString()).__comma(" is a Metaclass and cannot be removed!"));
  3622. };
  3623. self._deleteClass_(aClass);
  3624. $2=_st($ClassRemoved())._new();
  3625. _st($2)._theClass_(aClass);
  3626. $3=_st($2)._yourself();
  3627. _st(_st($SystemAnnouncer())._current())._announce_($3);
  3628. return self}, function($ctx1) {$ctx1.fill(self,"removeClass:",{aClass:aClass},smalltalk.Smalltalk)})},
  3629. messageSends: ["ifTrue:", "error:", ",", "asString", "isMetaclass", "deleteClass:", "announce:", "theClass:", "new", "yourself", "current"]}),
  3630. smalltalk.Smalltalk);
  3631. smalltalk.addMethod(
  3632. smalltalk.method({
  3633. selector: "removePackage:",
  3634. fn: function (packageName){
  3635. var self=this;
  3636. var pkg;
  3637. return smalltalk.withContext(function($ctx1) {
  3638. pkg=self._packageAt_ifAbsent_(packageName,(function(){
  3639. return smalltalk.withContext(function($ctx2) {
  3640. return self._error_("Missing package: ".__comma(packageName));
  3641. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3642. _st(_st(pkg)._classes())._do_((function(each){
  3643. return smalltalk.withContext(function($ctx2) {
  3644. return self._removeClass_(each);
  3645. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  3646. self._deletePackage_(packageName);
  3647. return self}, function($ctx1) {$ctx1.fill(self,"removePackage:",{packageName:packageName,pkg:pkg},smalltalk.Smalltalk)})},
  3648. messageSends: ["packageAt:ifAbsent:", "error:", ",", "do:", "removeClass:", "classes", "deletePackage:"]}),
  3649. smalltalk.Smalltalk);
  3650. smalltalk.addMethod(
  3651. smalltalk.method({
  3652. selector: "renamePackage:to:",
  3653. fn: function (packageName,newName){
  3654. var self=this;
  3655. var pkg;
  3656. return smalltalk.withContext(function($ctx1) {
  3657. var $1;
  3658. pkg=self._packageAt_ifAbsent_(packageName,(function(){
  3659. return smalltalk.withContext(function($ctx2) {
  3660. return self._error_("Missing package: ".__comma(packageName));
  3661. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3662. $1=self._packageAt_(newName);
  3663. if(($receiver = $1) == nil || $receiver == undefined){
  3664. $1;
  3665. } else {
  3666. self._error_("Already exists a package called: ".__comma(newName));
  3667. };
  3668. _st(self._basicAt_("packages"))._at_put_(newName,pkg);
  3669. _st(pkg)._name_(newName);
  3670. self._deletePackage_(packageName);
  3671. return self}, function($ctx1) {$ctx1.fill(self,"renamePackage:to:",{packageName:packageName,newName:newName,pkg:pkg},smalltalk.Smalltalk)})},
  3672. messageSends: ["packageAt:ifAbsent:", "error:", ",", "ifNotNil:", "packageAt:", "at:put:", "basicAt:", "name:", "deletePackage:"]}),
  3673. smalltalk.Smalltalk);
  3674. smalltalk.addMethod(
  3675. smalltalk.method({
  3676. selector: "reservedWords",
  3677. fn: function (){
  3678. var self=this;
  3679. return smalltalk.withContext(function($ctx1) {
  3680. return self.reservedWords;
  3681. return self}, function($ctx1) {$ctx1.fill(self,"reservedWords",{},smalltalk.Smalltalk)})},
  3682. messageSends: []}),
  3683. smalltalk.Smalltalk);
  3684. smalltalk.addMethod(
  3685. smalltalk.method({
  3686. selector: "version",
  3687. fn: function (){
  3688. var self=this;
  3689. return smalltalk.withContext(function($ctx1) {
  3690. return "0.10";
  3691. }, function($ctx1) {$ctx1.fill(self,"version",{},smalltalk.Smalltalk)})},
  3692. messageSends: []}),
  3693. smalltalk.Smalltalk);
  3694. smalltalk.Smalltalk.klass.iVarNames = ['current'];
  3695. smalltalk.addMethod(
  3696. smalltalk.method({
  3697. selector: "current",
  3698. fn: function (){
  3699. var self=this;
  3700. return smalltalk.withContext(function($ctx1) {
  3701. return smalltalk;
  3702. return self}, function($ctx1) {$ctx1.fill(self,"current",{},smalltalk.Smalltalk.klass)})},
  3703. messageSends: []}),
  3704. smalltalk.Smalltalk.klass);
  3705. smalltalk.addClass('Timeout', smalltalk.Object, ['rawTimeout'], 'Kernel-Objects');
  3706. smalltalk.addMethod(
  3707. smalltalk.method({
  3708. selector: "clearInterval",
  3709. fn: function (){
  3710. var self=this;
  3711. return smalltalk.withContext(function($ctx1) {
  3712. var interval = self["@rawTimeout"];
  3713. clearInterval(interval);
  3714. ;
  3715. return self}, function($ctx1) {$ctx1.fill(self,"clearInterval",{},smalltalk.Timeout)})},
  3716. messageSends: []}),
  3717. smalltalk.Timeout);
  3718. smalltalk.addMethod(
  3719. smalltalk.method({
  3720. selector: "clearTimeout",
  3721. fn: function (){
  3722. var self=this;
  3723. return smalltalk.withContext(function($ctx1) {
  3724. var timeout = self["@rawTimeout"];
  3725. clearTimeout(timeout);
  3726. ;
  3727. return self}, function($ctx1) {$ctx1.fill(self,"clearTimeout",{},smalltalk.Timeout)})},
  3728. messageSends: []}),
  3729. smalltalk.Timeout);
  3730. smalltalk.addMethod(
  3731. smalltalk.method({
  3732. selector: "rawTimeout:",
  3733. fn: function (anObject){
  3734. var self=this;
  3735. return smalltalk.withContext(function($ctx1) {
  3736. self["@rawTimeout"]=anObject;
  3737. return self}, function($ctx1) {$ctx1.fill(self,"rawTimeout:",{anObject:anObject},smalltalk.Timeout)})},
  3738. messageSends: []}),
  3739. smalltalk.Timeout);
  3740. smalltalk.addMethod(
  3741. smalltalk.method({
  3742. selector: "on:",
  3743. fn: function (anObject){
  3744. var self=this;
  3745. return smalltalk.withContext(function($ctx1) {
  3746. var $2,$3,$1;
  3747. $2=self._new();
  3748. _st($2)._rawTimeout_(anObject);
  3749. $3=_st($2)._yourself();
  3750. $1=$3;
  3751. return $1;
  3752. }, function($ctx1) {$ctx1.fill(self,"on:",{anObject:anObject},smalltalk.Timeout.klass)})},
  3753. messageSends: ["rawTimeout:", "new", "yourself"]}),
  3754. smalltalk.Timeout.klass);
  3755. smalltalk.addClass('UndefinedObject', smalltalk.Object, [], 'Kernel-Objects');
  3756. smalltalk.addMethod(
  3757. smalltalk.method({
  3758. selector: "asJSON",
  3759. fn: function (){
  3760. var self=this;
  3761. return smalltalk.withContext(function($ctx1) {
  3762. var $1;
  3763. $1=null;
  3764. return $1;
  3765. }, function($ctx1) {$ctx1.fill(self,"asJSON",{},smalltalk.UndefinedObject)})},
  3766. messageSends: []}),
  3767. smalltalk.UndefinedObject);
  3768. smalltalk.addMethod(
  3769. smalltalk.method({
  3770. selector: "deepCopy",
  3771. fn: function (){
  3772. var self=this;
  3773. return smalltalk.withContext(function($ctx1) {
  3774. var $1;
  3775. $1=self;
  3776. return $1;
  3777. }, function($ctx1) {$ctx1.fill(self,"deepCopy",{},smalltalk.UndefinedObject)})},
  3778. messageSends: []}),
  3779. smalltalk.UndefinedObject);
  3780. smalltalk.addMethod(
  3781. smalltalk.method({
  3782. selector: "ifNil:",
  3783. fn: function (aBlock){
  3784. var self=this;
  3785. return smalltalk.withContext(function($ctx1) {
  3786. var $2,$1;
  3787. $2=self;
  3788. $1=_st($2)._ifNil_ifNotNil_(aBlock,(function(){
  3789. return smalltalk.withContext(function($ctx2) {
  3790. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3791. return $1;
  3792. }, function($ctx1) {$ctx1.fill(self,"ifNil:",{aBlock:aBlock},smalltalk.UndefinedObject)})},
  3793. messageSends: ["ifNil:ifNotNil:"]}),
  3794. smalltalk.UndefinedObject);
  3795. smalltalk.addMethod(
  3796. smalltalk.method({
  3797. selector: "ifNil:ifNotNil:",
  3798. fn: function (aBlock,anotherBlock){
  3799. var self=this;
  3800. return smalltalk.withContext(function($ctx1) {
  3801. var $1;
  3802. $1=_st(aBlock)._value();
  3803. return $1;
  3804. }, function($ctx1) {$ctx1.fill(self,"ifNil:ifNotNil:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.UndefinedObject)})},
  3805. messageSends: ["value"]}),
  3806. smalltalk.UndefinedObject);
  3807. smalltalk.addMethod(
  3808. smalltalk.method({
  3809. selector: "ifNotNil:",
  3810. fn: function (aBlock){
  3811. var self=this;
  3812. return smalltalk.withContext(function($ctx1) {
  3813. var $1;
  3814. $1=self;
  3815. return $1;
  3816. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:",{aBlock:aBlock},smalltalk.UndefinedObject)})},
  3817. messageSends: []}),
  3818. smalltalk.UndefinedObject);
  3819. smalltalk.addMethod(
  3820. smalltalk.method({
  3821. selector: "ifNotNil:ifNil:",
  3822. fn: function (aBlock,anotherBlock){
  3823. var self=this;
  3824. return smalltalk.withContext(function($ctx1) {
  3825. var $1;
  3826. $1=_st(anotherBlock)._value();
  3827. return $1;
  3828. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:ifNil:",{aBlock:aBlock,anotherBlock:anotherBlock},smalltalk.UndefinedObject)})},
  3829. messageSends: ["value"]}),
  3830. smalltalk.UndefinedObject);
  3831. smalltalk.addMethod(
  3832. smalltalk.method({
  3833. selector: "isImmutable",
  3834. fn: function (){
  3835. var self=this;
  3836. return smalltalk.withContext(function($ctx1) {
  3837. return true;
  3838. }, function($ctx1) {$ctx1.fill(self,"isImmutable",{},smalltalk.UndefinedObject)})},
  3839. messageSends: []}),
  3840. smalltalk.UndefinedObject);
  3841. smalltalk.addMethod(
  3842. smalltalk.method({
  3843. selector: "isNil",
  3844. fn: function (){
  3845. var self=this;
  3846. return smalltalk.withContext(function($ctx1) {
  3847. return true;
  3848. }, function($ctx1) {$ctx1.fill(self,"isNil",{},smalltalk.UndefinedObject)})},
  3849. messageSends: []}),
  3850. smalltalk.UndefinedObject);
  3851. smalltalk.addMethod(
  3852. smalltalk.method({
  3853. selector: "notNil",
  3854. fn: function (){
  3855. var self=this;
  3856. return smalltalk.withContext(function($ctx1) {
  3857. return false;
  3858. }, function($ctx1) {$ctx1.fill(self,"notNil",{},smalltalk.UndefinedObject)})},
  3859. messageSends: []}),
  3860. smalltalk.UndefinedObject);
  3861. smalltalk.addMethod(
  3862. smalltalk.method({
  3863. selector: "printOn:",
  3864. fn: function (aStream){
  3865. var self=this;
  3866. return smalltalk.withContext(function($ctx1) {
  3867. _st(aStream)._nextPutAll_("nil");
  3868. return self}, function($ctx1) {$ctx1.fill(self,"printOn:",{aStream:aStream},smalltalk.UndefinedObject)})},
  3869. messageSends: ["nextPutAll:"]}),
  3870. smalltalk.UndefinedObject);
  3871. smalltalk.addMethod(
  3872. smalltalk.method({
  3873. selector: "shallowCopy",
  3874. fn: function (){
  3875. var self=this;
  3876. return smalltalk.withContext(function($ctx1) {
  3877. var $1;
  3878. $1=self;
  3879. return $1;
  3880. }, function($ctx1) {$ctx1.fill(self,"shallowCopy",{},smalltalk.UndefinedObject)})},
  3881. messageSends: []}),
  3882. smalltalk.UndefinedObject);
  3883. smalltalk.addMethod(
  3884. smalltalk.method({
  3885. selector: "subclass:instanceVariableNames:",
  3886. fn: function (aString,anotherString){
  3887. var self=this;
  3888. return smalltalk.withContext(function($ctx1) {
  3889. var $1;
  3890. $1=self._subclass_instanceVariableNames_package_(aString,anotherString,nil);
  3891. return $1;
  3892. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:",{aString:aString,anotherString:anotherString},smalltalk.UndefinedObject)})},
  3893. messageSends: ["subclass:instanceVariableNames:package:"]}),
  3894. smalltalk.UndefinedObject);
  3895. smalltalk.addMethod(
  3896. smalltalk.method({
  3897. selector: "subclass:instanceVariableNames:category:",
  3898. fn: function (aString,aString2,aString3){
  3899. var self=this;
  3900. return smalltalk.withContext(function($ctx1) {
  3901. var $1;
  3902. self._deprecatedAPI();
  3903. $1=self._subclass_instanceVariableNames_package_(aString,aString2,aString3);
  3904. return $1;
  3905. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:category:",{aString:aString,aString2:aString2,aString3:aString3},smalltalk.UndefinedObject)})},
  3906. messageSends: ["deprecatedAPI", "subclass:instanceVariableNames:package:"]}),
  3907. smalltalk.UndefinedObject);
  3908. smalltalk.addMethod(
  3909. smalltalk.method({
  3910. selector: "subclass:instanceVariableNames:package:",
  3911. fn: function (aString,aString2,aString3){
  3912. var self=this;
  3913. function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
  3914. return smalltalk.withContext(function($ctx1) {
  3915. var $1;
  3916. $1=_st(_st($ClassBuilder())._new())._superclass_subclass_instanceVariableNames_package_(self,_st(aString)._asString(),aString2,aString3);
  3917. return $1;
  3918. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:package:",{aString:aString,aString2:aString2,aString3:aString3},smalltalk.UndefinedObject)})},
  3919. messageSends: ["superclass:subclass:instanceVariableNames:package:", "asString", "new"]}),
  3920. smalltalk.UndefinedObject);
  3921. smalltalk.addMethod(
  3922. smalltalk.method({
  3923. selector: "new",
  3924. fn: function (){
  3925. var self=this;
  3926. return smalltalk.withContext(function($ctx1) {
  3927. self._error_("You cannot create new instances of UndefinedObject. Use nil");
  3928. return self}, function($ctx1) {$ctx1.fill(self,"new",{},smalltalk.UndefinedObject.klass)})},
  3929. messageSends: ["error:"]}),
  3930. smalltalk.UndefinedObject.klass);
  3931. smalltalk.addMethod(
  3932. smalltalk.method({
  3933. selector: "asJavaScriptSelector",
  3934. fn: function (){
  3935. var self=this;
  3936. return smalltalk.withContext(function($ctx1) {
  3937. var $1;
  3938. $1=self._replace_with_("^([a-zA-Z0-9]*).*$","$1");
  3939. return $1;
  3940. }, function($ctx1) {$ctx1.fill(self,"asJavaScriptSelector",{},smalltalk.String)})},
  3941. messageSends: ["replace:with:"]}),
  3942. smalltalk.String);