Kernel-Objects.deploy.js 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504
  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('Package', smalltalk.Object, ['commitPathJs', 'commitPathSt'], 'Kernel-Objects');
  2116. smalltalk.addMethod(
  2117. "_classes",
  2118. smalltalk.method({
  2119. selector: "classes",
  2120. fn: function (){
  2121. var self=this;
  2122. return smalltalk.withContext(function($ctx1) { var $1;
  2123. $1=_st(_st(self)._organization())._elements();
  2124. return $1;
  2125. }, function($ctx1) {$ctx1.fill(self,"classes",{}, smalltalk.Package)})},
  2126. messageSends: ["elements", "organization"]}),
  2127. smalltalk.Package);
  2128. smalltalk.addMethod(
  2129. "_commitPathJs",
  2130. smalltalk.method({
  2131. selector: "commitPathJs",
  2132. fn: function (){
  2133. var self=this;
  2134. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2135. $2=self["@commitPathJs"];
  2136. if(($receiver = $2) == nil || $receiver == undefined){
  2137. $1=_st(_st(self)._class())._defaultCommitPathJs();
  2138. } else {
  2139. $1=$2;
  2140. };
  2141. return $1;
  2142. }, function($ctx1) {$ctx1.fill(self,"commitPathJs",{}, smalltalk.Package)})},
  2143. messageSends: ["ifNil:", "defaultCommitPathJs", "class"]}),
  2144. smalltalk.Package);
  2145. smalltalk.addMethod(
  2146. "_commitPathJs_",
  2147. smalltalk.method({
  2148. selector: "commitPathJs:",
  2149. fn: function (aString){
  2150. var self=this;
  2151. return smalltalk.withContext(function($ctx1) { self["@commitPathJs"]=aString;
  2152. return self}, function($ctx1) {$ctx1.fill(self,"commitPathJs:",{aString:aString}, smalltalk.Package)})},
  2153. messageSends: []}),
  2154. smalltalk.Package);
  2155. smalltalk.addMethod(
  2156. "_commitPathSt",
  2157. smalltalk.method({
  2158. selector: "commitPathSt",
  2159. fn: function (){
  2160. var self=this;
  2161. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2162. $2=self["@commitPathSt"];
  2163. if(($receiver = $2) == nil || $receiver == undefined){
  2164. $1=_st(_st(self)._class())._defaultCommitPathSt();
  2165. } else {
  2166. $1=$2;
  2167. };
  2168. return $1;
  2169. }, function($ctx1) {$ctx1.fill(self,"commitPathSt",{}, smalltalk.Package)})},
  2170. messageSends: ["ifNil:", "defaultCommitPathSt", "class"]}),
  2171. smalltalk.Package);
  2172. smalltalk.addMethod(
  2173. "_commitPathSt_",
  2174. smalltalk.method({
  2175. selector: "commitPathSt:",
  2176. fn: function (aString){
  2177. var self=this;
  2178. return smalltalk.withContext(function($ctx1) { self["@commitPathSt"]=aString;
  2179. return self}, function($ctx1) {$ctx1.fill(self,"commitPathSt:",{aString:aString}, smalltalk.Package)})},
  2180. messageSends: []}),
  2181. smalltalk.Package);
  2182. smalltalk.addMethod(
  2183. "_dependencies",
  2184. smalltalk.method({
  2185. selector: "dependencies",
  2186. fn: function (){
  2187. var self=this;
  2188. return smalltalk.withContext(function($ctx1) { var $1;
  2189. $1=_st(self)._propertyAt_ifAbsent_("dependencies",(function(){
  2190. return smalltalk.withContext(function($ctx2) { return [];
  2191. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2192. return $1;
  2193. }, function($ctx1) {$ctx1.fill(self,"dependencies",{}, smalltalk.Package)})},
  2194. messageSends: ["propertyAt:ifAbsent:"]}),
  2195. smalltalk.Package);
  2196. smalltalk.addMethod(
  2197. "_dependencies_",
  2198. smalltalk.method({
  2199. selector: "dependencies:",
  2200. fn: function (anArray){
  2201. var self=this;
  2202. return smalltalk.withContext(function($ctx1) { var $1;
  2203. $1=_st(self)._propertyAt_put_("dependencies",anArray);
  2204. return $1;
  2205. }, function($ctx1) {$ctx1.fill(self,"dependencies:",{anArray:anArray}, smalltalk.Package)})},
  2206. messageSends: ["propertyAt:put:"]}),
  2207. smalltalk.Package);
  2208. smalltalk.addMethod(
  2209. "_jsProperties",
  2210. smalltalk.method({
  2211. selector: "jsProperties",
  2212. fn: function (){
  2213. var self=this;
  2214. return smalltalk.withContext(function($ctx1) { return self.properties;
  2215. return self}, function($ctx1) {$ctx1.fill(self,"jsProperties",{}, smalltalk.Package)})},
  2216. messageSends: []}),
  2217. smalltalk.Package);
  2218. smalltalk.addMethod(
  2219. "_jsProperties_",
  2220. smalltalk.method({
  2221. selector: "jsProperties:",
  2222. fn: function (aJSObject){
  2223. var self=this;
  2224. return smalltalk.withContext(function($ctx1) { return self.properties = aJSObject;
  2225. return self}, function($ctx1) {$ctx1.fill(self,"jsProperties:",{aJSObject:aJSObject}, smalltalk.Package)})},
  2226. messageSends: []}),
  2227. smalltalk.Package);
  2228. smalltalk.addMethod(
  2229. "_name",
  2230. smalltalk.method({
  2231. selector: "name",
  2232. fn: function (){
  2233. var self=this;
  2234. return smalltalk.withContext(function($ctx1) { return self.pkgName;
  2235. return self}, function($ctx1) {$ctx1.fill(self,"name",{}, smalltalk.Package)})},
  2236. messageSends: []}),
  2237. smalltalk.Package);
  2238. smalltalk.addMethod(
  2239. "_name_",
  2240. smalltalk.method({
  2241. selector: "name:",
  2242. fn: function (aString){
  2243. var self=this;
  2244. return smalltalk.withContext(function($ctx1) { self.pkgName = aString;
  2245. return self}, function($ctx1) {$ctx1.fill(self,"name:",{aString:aString}, smalltalk.Package)})},
  2246. messageSends: []}),
  2247. smalltalk.Package);
  2248. smalltalk.addMethod(
  2249. "_organization",
  2250. smalltalk.method({
  2251. selector: "organization",
  2252. fn: function (){
  2253. var self=this;
  2254. return smalltalk.withContext(function($ctx1) { var $1;
  2255. $1=_st(self)._basicAt_("organization");
  2256. return $1;
  2257. }, function($ctx1) {$ctx1.fill(self,"organization",{}, smalltalk.Package)})},
  2258. messageSends: ["basicAt:"]}),
  2259. smalltalk.Package);
  2260. smalltalk.addMethod(
  2261. "_printString",
  2262. smalltalk.method({
  2263. selector: "printString",
  2264. fn: function (){
  2265. var self=this;
  2266. return smalltalk.withContext(function($ctx1) { var $1;
  2267. $1=_st(self)._name();
  2268. return $1;
  2269. }, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.Package)})},
  2270. messageSends: ["name"]}),
  2271. smalltalk.Package);
  2272. smalltalk.addMethod(
  2273. "_properties",
  2274. smalltalk.method({
  2275. selector: "properties",
  2276. fn: function (){
  2277. var self=this;
  2278. return smalltalk.withContext(function($ctx1) { var $1;
  2279. $1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._readJSObject_(_st(self)._basicAt_("properties"));
  2280. return $1;
  2281. }, function($ctx1) {$ctx1.fill(self,"properties",{}, smalltalk.Package)})},
  2282. messageSends: ["readJSObject:", "basicAt:", "current"]}),
  2283. smalltalk.Package);
  2284. smalltalk.addMethod(
  2285. "_propertiesAsJSON",
  2286. smalltalk.method({
  2287. selector: "propertiesAsJSON",
  2288. fn: function (){
  2289. var self=this;
  2290. return smalltalk.withContext(function($ctx1) { return JSON.stringify(self.properties);
  2291. return self}, function($ctx1) {$ctx1.fill(self,"propertiesAsJSON",{}, smalltalk.Package)})},
  2292. messageSends: []}),
  2293. smalltalk.Package);
  2294. smalltalk.addMethod(
  2295. "_propertyAt_",
  2296. smalltalk.method({
  2297. selector: "propertyAt:",
  2298. fn: function (key){
  2299. var self=this;
  2300. return smalltalk.withContext(function($ctx1) { return self.properties[key];
  2301. return self}, function($ctx1) {$ctx1.fill(self,"propertyAt:",{key:key}, smalltalk.Package)})},
  2302. messageSends: []}),
  2303. smalltalk.Package);
  2304. smalltalk.addMethod(
  2305. "_propertyAt_ifAbsent_",
  2306. smalltalk.method({
  2307. selector: "propertyAt:ifAbsent:",
  2308. fn: function (key,block){
  2309. var self=this;
  2310. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2311. $2=_st(self)._propertyAt_(key);
  2312. if(($receiver = $2) == nil || $receiver == undefined){
  2313. $1=_st(block)._value();
  2314. } else {
  2315. $1=$2;
  2316. };
  2317. return $1;
  2318. }, function($ctx1) {$ctx1.fill(self,"propertyAt:ifAbsent:",{key:key,block:block}, smalltalk.Package)})},
  2319. messageSends: ["ifNil:", "value", "propertyAt:"]}),
  2320. smalltalk.Package);
  2321. smalltalk.addMethod(
  2322. "_propertyAt_put_",
  2323. smalltalk.method({
  2324. selector: "propertyAt:put:",
  2325. fn: function (key,value){
  2326. var self=this;
  2327. return smalltalk.withContext(function($ctx1) { return self.properties[key] = value;
  2328. return self}, function($ctx1) {$ctx1.fill(self,"propertyAt:put:",{key:key,value:value}, smalltalk.Package)})},
  2329. messageSends: []}),
  2330. smalltalk.Package);
  2331. smalltalk.addMethod(
  2332. "_setupClasses",
  2333. smalltalk.method({
  2334. selector: "setupClasses",
  2335. fn: function (){
  2336. var self=this;
  2337. return smalltalk.withContext(function($ctx1) { var $1,$2;
  2338. $1=_st(self)._classes();
  2339. _st($1)._do_((function(each){
  2340. return smalltalk.withContext(function($ctx2) { return _st(_st((smalltalk.ClassBuilder || ClassBuilder))._new())._setupClass_(each);
  2341. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2342. $2=_st($1)._do_((function(each){
  2343. return smalltalk.withContext(function($ctx2) { return _st(each)._initialize();
  2344. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2345. return self}, function($ctx1) {$ctx1.fill(self,"setupClasses",{}, smalltalk.Package)})},
  2346. messageSends: ["do:", "setupClass:", "new", "classes", "initialize"]}),
  2347. smalltalk.Package);
  2348. smalltalk.addMethod(
  2349. "_sortedClasses",
  2350. smalltalk.method({
  2351. selector: "sortedClasses",
  2352. fn: function (){
  2353. var self=this;
  2354. return smalltalk.withContext(function($ctx1) { var $1;
  2355. $1=_st(_st(self)._class())._sortedClasses_(_st(self)._classes());
  2356. return $1;
  2357. }, function($ctx1) {$ctx1.fill(self,"sortedClasses",{}, smalltalk.Package)})},
  2358. messageSends: ["sortedClasses:", "classes", "class"]}),
  2359. smalltalk.Package);
  2360. smalltalk.Package.klass.iVarNames = ['defaultCommitPathJs','defaultCommitPathSt'];
  2361. smalltalk.addMethod(
  2362. "_commitPathsFromLoader",
  2363. smalltalk.method({
  2364. selector: "commitPathsFromLoader",
  2365. fn: function (){
  2366. var self=this;
  2367. return smalltalk.withContext(function($ctx1) {
  2368. var cp = smalltalk['@@commitPath'];
  2369. if (!cp) return;
  2370. if (cp.js) self._defaultCommitPathJs_(cp.js);
  2371. if (cp.st) self._defaultCommitPathSt_(cp.st);
  2372. ;
  2373. return self}, function($ctx1) {$ctx1.fill(self,"commitPathsFromLoader",{}, smalltalk.Package.klass)})},
  2374. messageSends: []}),
  2375. smalltalk.Package.klass);
  2376. smalltalk.addMethod(
  2377. "_defaultCommitPathJs",
  2378. smalltalk.method({
  2379. selector: "defaultCommitPathJs",
  2380. fn: function (){
  2381. var self=this;
  2382. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2383. $2=self["@defaultCommitPathJs"];
  2384. if(($receiver = $2) == nil || $receiver == undefined){
  2385. self["@defaultCommitPathJs"]="js";
  2386. $1=self["@defaultCommitPathJs"];
  2387. } else {
  2388. $1=$2;
  2389. };
  2390. return $1;
  2391. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs",{}, smalltalk.Package.klass)})},
  2392. messageSends: ["ifNil:"]}),
  2393. smalltalk.Package.klass);
  2394. smalltalk.addMethod(
  2395. "_defaultCommitPathJs_",
  2396. smalltalk.method({
  2397. selector: "defaultCommitPathJs:",
  2398. fn: function (aString){
  2399. var self=this;
  2400. return smalltalk.withContext(function($ctx1) { self["@defaultCommitPathJs"]=aString;
  2401. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs:",{aString:aString}, smalltalk.Package.klass)})},
  2402. messageSends: []}),
  2403. smalltalk.Package.klass);
  2404. smalltalk.addMethod(
  2405. "_defaultCommitPathSt",
  2406. smalltalk.method({
  2407. selector: "defaultCommitPathSt",
  2408. fn: function (){
  2409. var self=this;
  2410. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2411. $2=self["@defaultCommitPathSt"];
  2412. if(($receiver = $2) == nil || $receiver == undefined){
  2413. self["@defaultCommitPathSt"]="st";
  2414. $1=self["@defaultCommitPathSt"];
  2415. } else {
  2416. $1=$2;
  2417. };
  2418. return $1;
  2419. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt",{}, smalltalk.Package.klass)})},
  2420. messageSends: ["ifNil:"]}),
  2421. smalltalk.Package.klass);
  2422. smalltalk.addMethod(
  2423. "_defaultCommitPathSt_",
  2424. smalltalk.method({
  2425. selector: "defaultCommitPathSt:",
  2426. fn: function (aString){
  2427. var self=this;
  2428. return smalltalk.withContext(function($ctx1) { self["@defaultCommitPathSt"]=aString;
  2429. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt:",{aString:aString}, smalltalk.Package.klass)})},
  2430. messageSends: []}),
  2431. smalltalk.Package.klass);
  2432. smalltalk.addMethod(
  2433. "_fetch_",
  2434. smalltalk.method({
  2435. selector: "fetch:",
  2436. fn: function (aPackageName){
  2437. var self=this;
  2438. return smalltalk.withContext(function($ctx1) { _st(self)._fetch_prefix_(aPackageName,_st(_st(self)._defaultCommitPathJs()).__comma("/"));
  2439. return self}, function($ctx1) {$ctx1.fill(self,"fetch:",{aPackageName:aPackageName}, smalltalk.Package.klass)})},
  2440. messageSends: ["fetch:prefix:", ",", "defaultCommitPathJs"]}),
  2441. smalltalk.Package.klass);
  2442. smalltalk.addMethod(
  2443. "_fetch_prefix_",
  2444. smalltalk.method({
  2445. selector: "fetch:prefix:",
  2446. fn: function (aPackageName,aPrefix){
  2447. var self=this;
  2448. return smalltalk.withContext(function($ctx1) { _st(jQuery)._getScript_onSuccess_(_st(_st(aPrefix).__comma(aPackageName)).__comma(".js"),(function(){
  2449. return smalltalk.withContext(function($ctx2) { return _st(_st((smalltalk.Package || Package))._named_(aPackageName))._setupClasses();
  2450. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2451. return self}, function($ctx1) {$ctx1.fill(self,"fetch:prefix:",{aPackageName:aPackageName,aPrefix:aPrefix}, smalltalk.Package.klass)})},
  2452. messageSends: ["getScript:onSuccess:", ",", "setupClasses", "named:"]}),
  2453. smalltalk.Package.klass);
  2454. smalltalk.addMethod(
  2455. "_initialize",
  2456. smalltalk.method({
  2457. selector: "initialize",
  2458. fn: function (){
  2459. var self=this;
  2460. return smalltalk.withContext(function($ctx1) { smalltalk.Object.klass.fn.prototype._initialize.apply(_st(self), []);
  2461. _st(self)._commitPathsFromLoader();
  2462. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.Package.klass)})},
  2463. messageSends: ["initialize", "commitPathsFromLoader"]}),
  2464. smalltalk.Package.klass);
  2465. smalltalk.addMethod(
  2466. "_named_",
  2467. smalltalk.method({
  2468. selector: "named:",
  2469. fn: function (aPackageName){
  2470. var self=this;
  2471. return smalltalk.withContext(function($ctx1) { var $1;
  2472. $1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._packageAt_(aPackageName);
  2473. return $1;
  2474. }, function($ctx1) {$ctx1.fill(self,"named:",{aPackageName:aPackageName}, smalltalk.Package.klass)})},
  2475. messageSends: ["packageAt:", "current"]}),
  2476. smalltalk.Package.klass);
  2477. smalltalk.addMethod(
  2478. "_named_ifAbsent_",
  2479. smalltalk.method({
  2480. selector: "named:ifAbsent:",
  2481. fn: function (aPackageName,aBlock){
  2482. var self=this;
  2483. return smalltalk.withContext(function($ctx1) { var $1;
  2484. $1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._packageAt_ifAbsent_(aPackageName,aBlock);
  2485. return $1;
  2486. }, function($ctx1) {$ctx1.fill(self,"named:ifAbsent:",{aPackageName:aPackageName,aBlock:aBlock}, smalltalk.Package.klass)})},
  2487. messageSends: ["packageAt:ifAbsent:", "current"]}),
  2488. smalltalk.Package.klass);
  2489. smalltalk.addMethod(
  2490. "_resetCommitPaths",
  2491. smalltalk.method({
  2492. selector: "resetCommitPaths",
  2493. fn: function (){
  2494. var self=this;
  2495. return smalltalk.withContext(function($ctx1) { self["@defaultCommitPathJs"]=nil;
  2496. self["@defaultCommitPathSt"]=nil;
  2497. return self}, function($ctx1) {$ctx1.fill(self,"resetCommitPaths",{}, smalltalk.Package.klass)})},
  2498. messageSends: []}),
  2499. smalltalk.Package.klass);
  2500. smalltalk.addMethod(
  2501. "_sortedClasses_",
  2502. smalltalk.method({
  2503. selector: "sortedClasses:",
  2504. fn: function (classes){
  2505. var self=this;
  2506. var children,others,nodes,expandedClasses;
  2507. return smalltalk.withContext(function($ctx1) { var $1,$2;
  2508. children=[];
  2509. others=[];
  2510. _st(classes)._do_((function(each){
  2511. return smalltalk.withContext(function($ctx2) { $1=_st(classes)._includes_(_st(each)._superclass());
  2512. if(smalltalk.assert($1)){
  2513. return _st(others)._add_(each);
  2514. } else {
  2515. return _st(children)._add_(each);
  2516. };
  2517. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2518. nodes=_st(children)._collect_((function(each){
  2519. return smalltalk.withContext(function($ctx2) { return _st((smalltalk.ClassSorterNode || ClassSorterNode))._on_classes_level_(each,others,(0));
  2520. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2521. nodes=_st(nodes)._sorted_((function(a,b){
  2522. return smalltalk.withContext(function($ctx2) { return _st(_st(_st(a)._theClass())._name()).__lt_eq(_st(_st(b)._theClass())._name());
  2523. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));
  2524. expandedClasses=_st((smalltalk.Array || Array))._new();
  2525. _st(nodes)._do_((function(aNode){
  2526. return smalltalk.withContext(function($ctx2) { return _st(aNode)._traverseClassesWith_(expandedClasses);
  2527. }, function($ctx2) {$ctx2.fillBlock({aNode:aNode},$ctx1)})}));
  2528. $2=expandedClasses;
  2529. return $2;
  2530. }, function($ctx1) {$ctx1.fill(self,"sortedClasses:",{classes:classes,children:children,others:others,nodes:nodes,expandedClasses:expandedClasses}, smalltalk.Package.klass)})},
  2531. messageSends: ["do:", "ifFalse:ifTrue:", "add:", "includes:", "superclass", "collect:", "on:classes:level:", "sorted:", "<=", "name", "theClass", "new", "traverseClassesWith:"]}),
  2532. smalltalk.Package.klass);
  2533. smalltalk.addClass('Point', smalltalk.Object, ['x', 'y'], 'Kernel-Objects');
  2534. smalltalk.addMethod(
  2535. "__star",
  2536. smalltalk.method({
  2537. selector: "*",
  2538. fn: function (aPoint){
  2539. var self=this;
  2540. return smalltalk.withContext(function($ctx1) { var $1;
  2541. $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()));
  2542. return $1;
  2543. }, function($ctx1) {$ctx1.fill(self,"*",{aPoint:aPoint}, smalltalk.Point)})},
  2544. messageSends: ["x:y:", "*", "x", "asPoint", "y"]}),
  2545. smalltalk.Point);
  2546. smalltalk.addMethod(
  2547. "__plus",
  2548. smalltalk.method({
  2549. selector: "+",
  2550. fn: function (aPoint){
  2551. var self=this;
  2552. return smalltalk.withContext(function($ctx1) { var $1;
  2553. $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()));
  2554. return $1;
  2555. }, function($ctx1) {$ctx1.fill(self,"+",{aPoint:aPoint}, smalltalk.Point)})},
  2556. messageSends: ["x:y:", "+", "x", "asPoint", "y"]}),
  2557. smalltalk.Point);
  2558. smalltalk.addMethod(
  2559. "__minus",
  2560. smalltalk.method({
  2561. selector: "-",
  2562. fn: function (aPoint){
  2563. var self=this;
  2564. return smalltalk.withContext(function($ctx1) { var $1;
  2565. $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()));
  2566. return $1;
  2567. }, function($ctx1) {$ctx1.fill(self,"-",{aPoint:aPoint}, smalltalk.Point)})},
  2568. messageSends: ["x:y:", "-", "x", "asPoint", "y"]}),
  2569. smalltalk.Point);
  2570. smalltalk.addMethod(
  2571. "__slash",
  2572. smalltalk.method({
  2573. selector: "/",
  2574. fn: function (aPoint){
  2575. var self=this;
  2576. return smalltalk.withContext(function($ctx1) { var $1;
  2577. $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()));
  2578. return $1;
  2579. }, function($ctx1) {$ctx1.fill(self,"/",{aPoint:aPoint}, smalltalk.Point)})},
  2580. messageSends: ["x:y:", "/", "x", "asPoint", "y"]}),
  2581. smalltalk.Point);
  2582. smalltalk.addMethod(
  2583. "__eq",
  2584. smalltalk.method({
  2585. selector: "=",
  2586. fn: function (aPoint){
  2587. var self=this;
  2588. return smalltalk.withContext(function($ctx1) { var $1;
  2589. $1=_st(_st(_st(aPoint)._class()).__eq(_st(self)._class()))._and_((function(){
  2590. return smalltalk.withContext(function($ctx2) { return _st(_st(_st(aPoint)._x()).__eq(_st(self)._x())).__and(_st(_st(aPoint)._y()).__eq(_st(self)._y()));
  2591. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2592. return $1;
  2593. }, function($ctx1) {$ctx1.fill(self,"=",{aPoint:aPoint}, smalltalk.Point)})},
  2594. messageSends: ["and:", "&", "=", "y", "x", "class"]}),
  2595. smalltalk.Point);
  2596. smalltalk.addMethod(
  2597. "_asPoint",
  2598. smalltalk.method({
  2599. selector: "asPoint",
  2600. fn: function (){
  2601. var self=this;
  2602. return smalltalk.withContext(function($ctx1) { var $1;
  2603. $1=self;
  2604. return $1;
  2605. }, function($ctx1) {$ctx1.fill(self,"asPoint",{}, smalltalk.Point)})},
  2606. messageSends: []}),
  2607. smalltalk.Point);
  2608. smalltalk.addMethod(
  2609. "_printString",
  2610. smalltalk.method({
  2611. selector: "printString",
  2612. fn: function (){
  2613. var self=this;
  2614. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2615. $1=_st((smalltalk.String || String))._streamContents_((function(stream){
  2616. return smalltalk.withContext(function($ctx2) { _st(stream)._nextPutAll_(_st(_st(self["@x"])._printString()).__comma("@"));
  2617. $2=_st(_st(self["@y"])._notNil())._and_((function(){
  2618. return smalltalk.withContext(function($ctx3) { return _st(self["@y"])._negative();
  2619. }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
  2620. if(smalltalk.assert($2)){
  2621. _st(stream)._space();
  2622. };
  2623. return _st(stream)._nextPutAll_(_st(self["@y"])._printString());
  2624. }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1)})}));
  2625. return $1;
  2626. }, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.Point)})},
  2627. messageSends: ["streamContents:", "nextPutAll:", ",", "printString", "ifTrue:", "space", "and:", "negative", "notNil"]}),
  2628. smalltalk.Point);
  2629. smalltalk.addMethod(
  2630. "_translateBy_",
  2631. smalltalk.method({
  2632. selector: "translateBy:",
  2633. fn: function (delta){
  2634. var self=this;
  2635. return smalltalk.withContext(function($ctx1) { var $1;
  2636. $1=_st(_st(_st(delta)._x()).__plus(self["@x"])).__at(_st(_st(delta)._y()).__plus(self["@y"]));
  2637. return $1;
  2638. }, function($ctx1) {$ctx1.fill(self,"translateBy:",{delta:delta}, smalltalk.Point)})},
  2639. messageSends: ["@", "+", "y", "x"]}),
  2640. smalltalk.Point);
  2641. smalltalk.addMethod(
  2642. "_x",
  2643. smalltalk.method({
  2644. selector: "x",
  2645. fn: function (){
  2646. var self=this;
  2647. return smalltalk.withContext(function($ctx1) { var $1;
  2648. $1=self["@x"];
  2649. return $1;
  2650. }, function($ctx1) {$ctx1.fill(self,"x",{}, smalltalk.Point)})},
  2651. messageSends: []}),
  2652. smalltalk.Point);
  2653. smalltalk.addMethod(
  2654. "_x_",
  2655. smalltalk.method({
  2656. selector: "x:",
  2657. fn: function (aNumber){
  2658. var self=this;
  2659. return smalltalk.withContext(function($ctx1) { self["@x"]=aNumber;
  2660. return self}, function($ctx1) {$ctx1.fill(self,"x:",{aNumber:aNumber}, smalltalk.Point)})},
  2661. messageSends: []}),
  2662. smalltalk.Point);
  2663. smalltalk.addMethod(
  2664. "_y",
  2665. smalltalk.method({
  2666. selector: "y",
  2667. fn: function (){
  2668. var self=this;
  2669. return smalltalk.withContext(function($ctx1) { var $1;
  2670. $1=self["@y"];
  2671. return $1;
  2672. }, function($ctx1) {$ctx1.fill(self,"y",{}, smalltalk.Point)})},
  2673. messageSends: []}),
  2674. smalltalk.Point);
  2675. smalltalk.addMethod(
  2676. "_y_",
  2677. smalltalk.method({
  2678. selector: "y:",
  2679. fn: function (aNumber){
  2680. var self=this;
  2681. return smalltalk.withContext(function($ctx1) { self["@y"]=aNumber;
  2682. return self}, function($ctx1) {$ctx1.fill(self,"y:",{aNumber:aNumber}, smalltalk.Point)})},
  2683. messageSends: []}),
  2684. smalltalk.Point);
  2685. smalltalk.addMethod(
  2686. "_x_y_",
  2687. smalltalk.method({
  2688. selector: "x:y:",
  2689. fn: function (aNumber,anotherNumber){
  2690. var self=this;
  2691. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  2692. $2=_st(self)._new();
  2693. _st($2)._x_(aNumber);
  2694. _st($2)._y_(anotherNumber);
  2695. $3=_st($2)._yourself();
  2696. $1=$3;
  2697. return $1;
  2698. }, function($ctx1) {$ctx1.fill(self,"x:y:",{aNumber:aNumber,anotherNumber:anotherNumber}, smalltalk.Point.klass)})},
  2699. messageSends: ["x:", "new", "y:", "yourself"]}),
  2700. smalltalk.Point.klass);
  2701. smalltalk.addClass('Random', smalltalk.Object, [], 'Kernel-Objects');
  2702. smalltalk.addMethod(
  2703. "_next",
  2704. smalltalk.method({
  2705. selector: "next",
  2706. fn: function (){
  2707. var self=this;
  2708. return smalltalk.withContext(function($ctx1) { return Math.random();
  2709. return self}, function($ctx1) {$ctx1.fill(self,"next",{}, smalltalk.Random)})},
  2710. messageSends: []}),
  2711. smalltalk.Random);
  2712. smalltalk.addMethod(
  2713. "_next_",
  2714. smalltalk.method({
  2715. selector: "next:",
  2716. fn: function (anInteger){
  2717. var self=this;
  2718. return smalltalk.withContext(function($ctx1) { var $1;
  2719. $1=_st(_st((1))._to_(anInteger))._collect_((function(each){
  2720. return smalltalk.withContext(function($ctx2) { return _st(self)._next();
  2721. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2722. return $1;
  2723. }, function($ctx1) {$ctx1.fill(self,"next:",{anInteger:anInteger}, smalltalk.Random)})},
  2724. messageSends: ["collect:", "next", "to:"]}),
  2725. smalltalk.Random);
  2726. smalltalk.addClass('Smalltalk', smalltalk.Object, [], 'Kernel-Objects');
  2727. smalltalk.addMethod(
  2728. "_asSmalltalkException_",
  2729. smalltalk.method({
  2730. selector: "asSmalltalkException:",
  2731. fn: function (anObject){
  2732. var self=this;
  2733. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2734. $2=_st(_st(self)._isSmalltalkObject_(anObject))._and_((function(){
  2735. return smalltalk.withContext(function($ctx2) { return _st(anObject)._isKindOf_((smalltalk.Error || Error));
  2736. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2737. if(smalltalk.assert($2)){
  2738. $1=anObject;
  2739. } else {
  2740. $1=_st((smalltalk.JavaScriptException || JavaScriptException))._on_(anObject);
  2741. };
  2742. return $1;
  2743. }, function($ctx1) {$ctx1.fill(self,"asSmalltalkException:",{anObject:anObject}, smalltalk.Smalltalk)})},
  2744. messageSends: ["ifTrue:ifFalse:", "on:", "and:", "isKindOf:", "isSmalltalkObject:"]}),
  2745. smalltalk.Smalltalk);
  2746. smalltalk.addMethod(
  2747. "_at_",
  2748. smalltalk.method({
  2749. selector: "at:",
  2750. fn: function (aSymbol){
  2751. var self=this;
  2752. return smalltalk.withContext(function($ctx1) { return self[aSymbol._asString()];
  2753. return self}, function($ctx1) {$ctx1.fill(self,"at:",{aSymbol:aSymbol}, smalltalk.Smalltalk)})},
  2754. messageSends: []}),
  2755. smalltalk.Smalltalk);
  2756. smalltalk.addMethod(
  2757. "_basicParse_",
  2758. smalltalk.method({
  2759. selector: "basicParse:",
  2760. fn: function (aString){
  2761. var self=this;
  2762. return smalltalk.withContext(function($ctx1) { return smalltalk.parser.parse(aString);
  2763. return self}, function($ctx1) {$ctx1.fill(self,"basicParse:",{aString:aString}, smalltalk.Smalltalk)})},
  2764. messageSends: []}),
  2765. smalltalk.Smalltalk);
  2766. smalltalk.addMethod(
  2767. "_classes",
  2768. smalltalk.method({
  2769. selector: "classes",
  2770. fn: function (){
  2771. var self=this;
  2772. return smalltalk.withContext(function($ctx1) { return self.classes();
  2773. return self}, function($ctx1) {$ctx1.fill(self,"classes",{}, smalltalk.Smalltalk)})},
  2774. messageSends: []}),
  2775. smalltalk.Smalltalk);
  2776. smalltalk.addMethod(
  2777. "_createPackage_",
  2778. smalltalk.method({
  2779. selector: "createPackage:",
  2780. fn: function (packageName){
  2781. var self=this;
  2782. return smalltalk.withContext(function($ctx1) { return smalltalk.addPackage(packageName);
  2783. return self}, function($ctx1) {$ctx1.fill(self,"createPackage:",{packageName:packageName}, smalltalk.Smalltalk)})},
  2784. messageSends: []}),
  2785. smalltalk.Smalltalk);
  2786. smalltalk.addMethod(
  2787. "_createPackage_properties_",
  2788. smalltalk.method({
  2789. selector: "createPackage:properties:",
  2790. fn: function (packageName,aDict){
  2791. var self=this;
  2792. return smalltalk.withContext(function($ctx1) { var $1,$2;
  2793. _st(self)._deprecatedAPI();
  2794. $1=_st(aDict)._isEmpty();
  2795. if(! smalltalk.assert($1)){
  2796. _st(self)._error_("createPackage:properties: called with nonempty properties");
  2797. };
  2798. $2=_st(self)._createPackage_(packageName);
  2799. return $2;
  2800. }, function($ctx1) {$ctx1.fill(self,"createPackage:properties:",{packageName:packageName,aDict:aDict}, smalltalk.Smalltalk)})},
  2801. messageSends: ["deprecatedAPI", "ifFalse:", "error:", "isEmpty", "createPackage:"]}),
  2802. smalltalk.Smalltalk);
  2803. smalltalk.addMethod(
  2804. "_deleteClass_",
  2805. smalltalk.method({
  2806. selector: "deleteClass:",
  2807. fn: function (aClass){
  2808. var self=this;
  2809. return smalltalk.withContext(function($ctx1) { self.removeClass(aClass);
  2810. return self}, function($ctx1) {$ctx1.fill(self,"deleteClass:",{aClass:aClass}, smalltalk.Smalltalk)})},
  2811. messageSends: []}),
  2812. smalltalk.Smalltalk);
  2813. smalltalk.addMethod(
  2814. "_deletePackage_",
  2815. smalltalk.method({
  2816. selector: "deletePackage:",
  2817. fn: function (packageName){
  2818. var self=this;
  2819. return smalltalk.withContext(function($ctx1) { delete smalltalk.packages[packageName];
  2820. return self}, function($ctx1) {$ctx1.fill(self,"deletePackage:",{packageName:packageName}, smalltalk.Smalltalk)})},
  2821. messageSends: []}),
  2822. smalltalk.Smalltalk);
  2823. smalltalk.addMethod(
  2824. "_isSmalltalkObject_",
  2825. smalltalk.method({
  2826. selector: "isSmalltalkObject:",
  2827. fn: function (anObject){
  2828. var self=this;
  2829. return smalltalk.withContext(function($ctx1) { return typeof anObject.klass !== 'undefined';
  2830. return self}, function($ctx1) {$ctx1.fill(self,"isSmalltalkObject:",{anObject:anObject}, smalltalk.Smalltalk)})},
  2831. messageSends: []}),
  2832. smalltalk.Smalltalk);
  2833. smalltalk.addMethod(
  2834. "_packageAt_",
  2835. smalltalk.method({
  2836. selector: "packageAt:",
  2837. fn: function (packageName){
  2838. var self=this;
  2839. return smalltalk.withContext(function($ctx1) { return self.packages[packageName];
  2840. return self}, function($ctx1) {$ctx1.fill(self,"packageAt:",{packageName:packageName}, smalltalk.Smalltalk)})},
  2841. messageSends: []}),
  2842. smalltalk.Smalltalk);
  2843. smalltalk.addMethod(
  2844. "_packageAt_ifAbsent_",
  2845. smalltalk.method({
  2846. selector: "packageAt:ifAbsent:",
  2847. fn: function (packageName,aBlock){
  2848. var self=this;
  2849. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2850. $2=_st(self)._packageAt_(packageName);
  2851. $1=_st($2)._ifNil_(aBlock);
  2852. return $1;
  2853. }, function($ctx1) {$ctx1.fill(self,"packageAt:ifAbsent:",{packageName:packageName,aBlock:aBlock}, smalltalk.Smalltalk)})},
  2854. messageSends: ["ifNil:", "packageAt:"]}),
  2855. smalltalk.Smalltalk);
  2856. smalltalk.addMethod(
  2857. "_packages",
  2858. smalltalk.method({
  2859. selector: "packages",
  2860. fn: function (){
  2861. var self=this;
  2862. return smalltalk.withContext(function($ctx1) { return self.packages.all();
  2863. return self}, function($ctx1) {$ctx1.fill(self,"packages",{}, smalltalk.Smalltalk)})},
  2864. messageSends: []}),
  2865. smalltalk.Smalltalk);
  2866. smalltalk.addMethod(
  2867. "_parse_",
  2868. smalltalk.method({
  2869. selector: "parse:",
  2870. fn: function (aString){
  2871. var self=this;
  2872. var result;
  2873. return smalltalk.withContext(function($ctx1) { var $1;
  2874. _st(self)._try_catch_((function(){
  2875. return smalltalk.withContext(function($ctx2) { result=_st(self)._basicParse_(aString);
  2876. return result;
  2877. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),(function(ex){
  2878. return smalltalk.withContext(function($ctx2) { return _st(_st(self)._parseError_parsing_(ex,aString))._signal();
  2879. }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));
  2880. $1=result;
  2881. return $1;
  2882. }, function($ctx1) {$ctx1.fill(self,"parse:",{aString:aString,result:result}, smalltalk.Smalltalk)})},
  2883. messageSends: ["try:catch:", "basicParse:", "signal", "parseError:parsing:"]}),
  2884. smalltalk.Smalltalk);
  2885. smalltalk.addMethod(
  2886. "_parseError_parsing_",
  2887. smalltalk.method({
  2888. selector: "parseError:parsing:",
  2889. fn: function (anException,aString){
  2890. var self=this;
  2891. return smalltalk.withContext(function($ctx1) { var $1;
  2892. $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")));
  2893. return $1;
  2894. }, function($ctx1) {$ctx1.fill(self,"parseError:parsing:",{anException:anException,aString:aString}, smalltalk.Smalltalk)})},
  2895. messageSends: ["messageText:", ",", "basicAt:", "new"]}),
  2896. smalltalk.Smalltalk);
  2897. smalltalk.addMethod(
  2898. "_pseudoVariableNames",
  2899. smalltalk.method({
  2900. selector: "pseudoVariableNames",
  2901. fn: function (){
  2902. var self=this;
  2903. return smalltalk.withContext(function($ctx1) { return ["self", "super", "nil", "true", "false", "thisContext"];
  2904. }, function($ctx1) {$ctx1.fill(self,"pseudoVariableNames",{}, smalltalk.Smalltalk)})},
  2905. messageSends: []}),
  2906. smalltalk.Smalltalk);
  2907. smalltalk.addMethod(
  2908. "_readJSObject_",
  2909. smalltalk.method({
  2910. selector: "readJSObject:",
  2911. fn: function (anObject){
  2912. var self=this;
  2913. return smalltalk.withContext(function($ctx1) { return self.readJSObject(anObject);
  2914. return self}, function($ctx1) {$ctx1.fill(self,"readJSObject:",{anObject:anObject}, smalltalk.Smalltalk)})},
  2915. messageSends: []}),
  2916. smalltalk.Smalltalk);
  2917. smalltalk.addMethod(
  2918. "_removeClass_",
  2919. smalltalk.method({
  2920. selector: "removeClass:",
  2921. fn: function (aClass){
  2922. var self=this;
  2923. return smalltalk.withContext(function($ctx1) { var $1,$2,$3;
  2924. $1=_st(aClass)._isMetaclass();
  2925. if(smalltalk.assert($1)){
  2926. _st(self)._error_(_st(_st(aClass)._asString()).__comma(" is a Metaclass and cannot be removed!"));
  2927. };
  2928. _st(_st(_st(aClass)._methodDictionary())._values())._do_((function(each){
  2929. return smalltalk.withContext(function($ctx2) { return _st(aClass)._removeCompiledMethod_(each);
  2930. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2931. _st(_st(_st(_st(aClass)._class())._methodDictionary())._values())._do_((function(each){
  2932. return smalltalk.withContext(function($ctx2) { return _st(_st(aClass)._class())._removeCompiledMethod_(each);
  2933. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2934. _st(self)._deleteClass_(aClass);
  2935. $2=_st((smalltalk.ClassRemoved || ClassRemoved))._new();
  2936. _st($2)._theClass_(aClass);
  2937. $3=_st($2)._yourself();
  2938. _st(_st((smalltalk.SystemAnnouncer || SystemAnnouncer))._current())._announce_($3);
  2939. return self}, function($ctx1) {$ctx1.fill(self,"removeClass:",{aClass:aClass}, smalltalk.Smalltalk)})},
  2940. messageSends: ["ifTrue:", "error:", ",", "asString", "isMetaclass", "do:", "removeCompiledMethod:", "values", "methodDictionary", "class", "deleteClass:", "announce:", "theClass:", "new", "yourself", "current"]}),
  2941. smalltalk.Smalltalk);
  2942. smalltalk.addMethod(
  2943. "_removePackage_",
  2944. smalltalk.method({
  2945. selector: "removePackage:",
  2946. fn: function (packageName){
  2947. var self=this;
  2948. var pkg;
  2949. return smalltalk.withContext(function($ctx1) { pkg=_st(self)._packageAt_ifAbsent_(packageName,(function(){
  2950. return smalltalk.withContext(function($ctx2) { return _st(self)._error_(_st("Missing package: ").__comma(packageName));
  2951. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2952. _st(_st(pkg)._classes())._do_((function(each){
  2953. return smalltalk.withContext(function($ctx2) { return _st(self)._removeClass_(each);
  2954. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2955. _st(self)._deletePackage_(packageName);
  2956. return self}, function($ctx1) {$ctx1.fill(self,"removePackage:",{packageName:packageName,pkg:pkg}, smalltalk.Smalltalk)})},
  2957. messageSends: ["packageAt:ifAbsent:", "error:", ",", "do:", "removeClass:", "classes", "deletePackage:"]}),
  2958. smalltalk.Smalltalk);
  2959. smalltalk.addMethod(
  2960. "_renamePackage_to_",
  2961. smalltalk.method({
  2962. selector: "renamePackage:to:",
  2963. fn: function (packageName,newName){
  2964. var self=this;
  2965. var pkg;
  2966. return smalltalk.withContext(function($ctx1) { var $1;
  2967. pkg=_st(self)._packageAt_ifAbsent_(packageName,(function(){
  2968. return smalltalk.withContext(function($ctx2) { return _st(self)._error_(_st("Missing package: ").__comma(packageName));
  2969. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2970. $1=_st(self)._packageAt_(newName);
  2971. if(($receiver = $1) == nil || $receiver == undefined){
  2972. $1;
  2973. } else {
  2974. _st(self)._error_(_st("Already exists a package called: ").__comma(newName));
  2975. };
  2976. _st(_st(self)._basicAt_("packages"))._at_put_(newName,pkg);
  2977. _st(pkg)._name_(newName);
  2978. _st(self)._deletePackage_(packageName);
  2979. return self}, function($ctx1) {$ctx1.fill(self,"renamePackage:to:",{packageName:packageName,newName:newName,pkg:pkg}, smalltalk.Smalltalk)})},
  2980. messageSends: ["packageAt:ifAbsent:", "error:", ",", "ifNotNil:", "packageAt:", "at:put:", "basicAt:", "name:", "deletePackage:"]}),
  2981. smalltalk.Smalltalk);
  2982. smalltalk.addMethod(
  2983. "_reservedWords",
  2984. smalltalk.method({
  2985. selector: "reservedWords",
  2986. fn: function (){
  2987. var self=this;
  2988. return smalltalk.withContext(function($ctx1) { return self.reservedWords;
  2989. return self}, function($ctx1) {$ctx1.fill(self,"reservedWords",{}, smalltalk.Smalltalk)})},
  2990. messageSends: []}),
  2991. smalltalk.Smalltalk);
  2992. smalltalk.Smalltalk.klass.iVarNames = ['current'];
  2993. smalltalk.addMethod(
  2994. "_current",
  2995. smalltalk.method({
  2996. selector: "current",
  2997. fn: function (){
  2998. var self=this;
  2999. return smalltalk.withContext(function($ctx1) { return smalltalk;
  3000. return self}, function($ctx1) {$ctx1.fill(self,"current",{}, smalltalk.Smalltalk.klass)})},
  3001. messageSends: []}),
  3002. smalltalk.Smalltalk.klass);
  3003. smalltalk.addClass('Timeout', smalltalk.Object, ['rawTimeout'], 'Kernel-Objects');
  3004. smalltalk.addMethod(
  3005. "_clearInterval",
  3006. smalltalk.method({
  3007. selector: "clearInterval",
  3008. fn: function (){
  3009. var self=this;
  3010. return smalltalk.withContext(function($ctx1) {
  3011. var interval = self["@rawTimeout"];
  3012. clearInterval(interval);
  3013. ;
  3014. return self}, function($ctx1) {$ctx1.fill(self,"clearInterval",{}, smalltalk.Timeout)})},
  3015. messageSends: []}),
  3016. smalltalk.Timeout);
  3017. smalltalk.addMethod(
  3018. "_clearTimeout",
  3019. smalltalk.method({
  3020. selector: "clearTimeout",
  3021. fn: function (){
  3022. var self=this;
  3023. return smalltalk.withContext(function($ctx1) {
  3024. var timeout = self["@rawTimeout"];
  3025. clearTimeout(timeout);
  3026. ;
  3027. return self}, function($ctx1) {$ctx1.fill(self,"clearTimeout",{}, smalltalk.Timeout)})},
  3028. messageSends: []}),
  3029. smalltalk.Timeout);
  3030. smalltalk.addMethod(
  3031. "_rawTimeout_",
  3032. smalltalk.method({
  3033. selector: "rawTimeout:",
  3034. fn: function (anObject){
  3035. var self=this;
  3036. return smalltalk.withContext(function($ctx1) { self["@rawTimeout"]=anObject;
  3037. return self}, function($ctx1) {$ctx1.fill(self,"rawTimeout:",{anObject:anObject}, smalltalk.Timeout)})},
  3038. messageSends: []}),
  3039. smalltalk.Timeout);
  3040. smalltalk.addMethod(
  3041. "_on_",
  3042. smalltalk.method({
  3043. selector: "on:",
  3044. fn: function (anObject){
  3045. var self=this;
  3046. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  3047. $2=_st(self)._new();
  3048. _st($2)._rawTimeout_(anObject);
  3049. $3=_st($2)._yourself();
  3050. $1=$3;
  3051. return $1;
  3052. }, function($ctx1) {$ctx1.fill(self,"on:",{anObject:anObject}, smalltalk.Timeout.klass)})},
  3053. messageSends: ["rawTimeout:", "new", "yourself"]}),
  3054. smalltalk.Timeout.klass);
  3055. smalltalk.addClass('UndefinedObject', smalltalk.Object, [], 'Kernel-Objects');
  3056. smalltalk.addMethod(
  3057. "_asJSON",
  3058. smalltalk.method({
  3059. selector: "asJSON",
  3060. fn: function (){
  3061. var self=this;
  3062. return smalltalk.withContext(function($ctx1) { var $1;
  3063. $1=null;
  3064. return $1;
  3065. }, function($ctx1) {$ctx1.fill(self,"asJSON",{}, smalltalk.UndefinedObject)})},
  3066. messageSends: []}),
  3067. smalltalk.UndefinedObject);
  3068. smalltalk.addMethod(
  3069. "_deepCopy",
  3070. smalltalk.method({
  3071. selector: "deepCopy",
  3072. fn: function (){
  3073. var self=this;
  3074. return smalltalk.withContext(function($ctx1) { var $1;
  3075. $1=self;
  3076. return $1;
  3077. }, function($ctx1) {$ctx1.fill(self,"deepCopy",{}, smalltalk.UndefinedObject)})},
  3078. messageSends: []}),
  3079. smalltalk.UndefinedObject);
  3080. smalltalk.addMethod(
  3081. "_ifNil_",
  3082. smalltalk.method({
  3083. selector: "ifNil:",
  3084. fn: function (aBlock){
  3085. var self=this;
  3086. return smalltalk.withContext(function($ctx1) { var $2,$1;
  3087. $2=self;
  3088. $1=_st($2)._ifNil_ifNotNil_(aBlock,(function(){
  3089. return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3090. return $1;
  3091. }, function($ctx1) {$ctx1.fill(self,"ifNil:",{aBlock:aBlock}, smalltalk.UndefinedObject)})},
  3092. messageSends: ["ifNil:ifNotNil:"]}),
  3093. smalltalk.UndefinedObject);
  3094. smalltalk.addMethod(
  3095. "_ifNil_ifNotNil_",
  3096. smalltalk.method({
  3097. selector: "ifNil:ifNotNil:",
  3098. fn: function (aBlock,anotherBlock){
  3099. var self=this;
  3100. return smalltalk.withContext(function($ctx1) { var $1;
  3101. $1=_st(aBlock)._value();
  3102. return $1;
  3103. }, function($ctx1) {$ctx1.fill(self,"ifNil:ifNotNil:",{aBlock:aBlock,anotherBlock:anotherBlock}, smalltalk.UndefinedObject)})},
  3104. messageSends: ["value"]}),
  3105. smalltalk.UndefinedObject);
  3106. smalltalk.addMethod(
  3107. "_ifNotNil_",
  3108. smalltalk.method({
  3109. selector: "ifNotNil:",
  3110. fn: function (aBlock){
  3111. var self=this;
  3112. return smalltalk.withContext(function($ctx1) { var $1;
  3113. $1=self;
  3114. return $1;
  3115. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:",{aBlock:aBlock}, smalltalk.UndefinedObject)})},
  3116. messageSends: []}),
  3117. smalltalk.UndefinedObject);
  3118. smalltalk.addMethod(
  3119. "_ifNotNil_ifNil_",
  3120. smalltalk.method({
  3121. selector: "ifNotNil:ifNil:",
  3122. fn: function (aBlock,anotherBlock){
  3123. var self=this;
  3124. return smalltalk.withContext(function($ctx1) { var $1;
  3125. $1=_st(anotherBlock)._value();
  3126. return $1;
  3127. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:ifNil:",{aBlock:aBlock,anotherBlock:anotherBlock}, smalltalk.UndefinedObject)})},
  3128. messageSends: ["value"]}),
  3129. smalltalk.UndefinedObject);
  3130. smalltalk.addMethod(
  3131. "_isNil",
  3132. smalltalk.method({
  3133. selector: "isNil",
  3134. fn: function (){
  3135. var self=this;
  3136. return smalltalk.withContext(function($ctx1) { return true;
  3137. }, function($ctx1) {$ctx1.fill(self,"isNil",{}, smalltalk.UndefinedObject)})},
  3138. messageSends: []}),
  3139. smalltalk.UndefinedObject);
  3140. smalltalk.addMethod(
  3141. "_notNil",
  3142. smalltalk.method({
  3143. selector: "notNil",
  3144. fn: function (){
  3145. var self=this;
  3146. return smalltalk.withContext(function($ctx1) { return false;
  3147. }, function($ctx1) {$ctx1.fill(self,"notNil",{}, smalltalk.UndefinedObject)})},
  3148. messageSends: []}),
  3149. smalltalk.UndefinedObject);
  3150. smalltalk.addMethod(
  3151. "_printString",
  3152. smalltalk.method({
  3153. selector: "printString",
  3154. fn: function (){
  3155. var self=this;
  3156. return smalltalk.withContext(function($ctx1) { return "nil";
  3157. }, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.UndefinedObject)})},
  3158. messageSends: []}),
  3159. smalltalk.UndefinedObject);
  3160. smalltalk.addMethod(
  3161. "_shallowCopy",
  3162. smalltalk.method({
  3163. selector: "shallowCopy",
  3164. fn: function (){
  3165. var self=this;
  3166. return smalltalk.withContext(function($ctx1) { var $1;
  3167. $1=self;
  3168. return $1;
  3169. }, function($ctx1) {$ctx1.fill(self,"shallowCopy",{}, smalltalk.UndefinedObject)})},
  3170. messageSends: []}),
  3171. smalltalk.UndefinedObject);
  3172. smalltalk.addMethod(
  3173. "_subclass_instanceVariableNames_",
  3174. smalltalk.method({
  3175. selector: "subclass:instanceVariableNames:",
  3176. fn: function (aString,anotherString){
  3177. var self=this;
  3178. return smalltalk.withContext(function($ctx1) { var $1;
  3179. $1=_st(self)._subclass_instanceVariableNames_package_(aString,anotherString,nil);
  3180. return $1;
  3181. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:",{aString:aString,anotherString:anotherString}, smalltalk.UndefinedObject)})},
  3182. messageSends: ["subclass:instanceVariableNames:package:"]}),
  3183. smalltalk.UndefinedObject);
  3184. smalltalk.addMethod(
  3185. "_subclass_instanceVariableNames_category_",
  3186. smalltalk.method({
  3187. selector: "subclass:instanceVariableNames:category:",
  3188. fn: function (aString,aString2,aString3){
  3189. var self=this;
  3190. return smalltalk.withContext(function($ctx1) { var $1;
  3191. _st(self)._deprecatedAPI();
  3192. $1=_st(self)._subclass_instanceVariableNames_package_(aString,aString2,aString3);
  3193. return $1;
  3194. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:category:",{aString:aString,aString2:aString2,aString3:aString3}, smalltalk.UndefinedObject)})},
  3195. messageSends: ["deprecatedAPI", "subclass:instanceVariableNames:package:"]}),
  3196. smalltalk.UndefinedObject);
  3197. smalltalk.addMethod(
  3198. "_subclass_instanceVariableNames_package_",
  3199. smalltalk.method({
  3200. selector: "subclass:instanceVariableNames:package:",
  3201. fn: function (aString,aString2,aString3){
  3202. var self=this;
  3203. return smalltalk.withContext(function($ctx1) { var $1;
  3204. $1=_st(_st((smalltalk.ClassBuilder || ClassBuilder))._new())._superclass_subclass_instanceVariableNames_package_(self,_st(aString)._asString(),aString2,aString3);
  3205. return $1;
  3206. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:package:",{aString:aString,aString2:aString2,aString3:aString3}, smalltalk.UndefinedObject)})},
  3207. messageSends: ["superclass:subclass:instanceVariableNames:package:", "asString", "new"]}),
  3208. smalltalk.UndefinedObject);
  3209. smalltalk.addMethod(
  3210. "_new",
  3211. smalltalk.method({
  3212. selector: "new",
  3213. fn: function (){
  3214. var self=this;
  3215. return smalltalk.withContext(function($ctx1) { _st(self)._error_("You cannot create new instances of UndefinedObject. Use nil");
  3216. return self}, function($ctx1) {$ctx1.fill(self,"new",{}, smalltalk.UndefinedObject.klass)})},
  3217. messageSends: ["error:"]}),
  3218. smalltalk.UndefinedObject.klass);