Kernel-Objects.deploy.js 107 KB

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