Kernel-Objects.deploy.js 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  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. }),
  1346. smalltalk.JSObjectProxy);
  1347. smalltalk.addMethod(
  1348. "_at_put_",
  1349. smalltalk.method({
  1350. selector: "at:put:",
  1351. fn: function (aSymbol,anObject){
  1352. var self=this;
  1353. return smalltalk.withContext(function($ctx1) { self['@jsObject'][aSymbol._asString()] = anObject;
  1354. return self}, function($ctx1) {$ctx1.fill(self,"at:put:",{aSymbol:aSymbol,anObject:anObject}, smalltalk.JSObjectProxy)})}
  1355. }),
  1356. smalltalk.JSObjectProxy);
  1357. smalltalk.addMethod(
  1358. "_canForwardMessage_",
  1359. smalltalk.method({
  1360. selector: "canForwardMessage:",
  1361. fn: function (aMessage){
  1362. var self=this;
  1363. return smalltalk.withContext(function($ctx1) {
  1364. var jsSelector = aMessage._selector()._asJavaScriptSelector();
  1365. if(jsSelector in self._jsObject()) {
  1366. return true
  1367. } else {
  1368. return false;
  1369. }
  1370. ;
  1371. return self}, function($ctx1) {$ctx1.fill(self,"canForwardMessage:",{aMessage:aMessage}, smalltalk.JSObjectProxy)})}
  1372. }),
  1373. smalltalk.JSObjectProxy);
  1374. smalltalk.addMethod(
  1375. "_doesNotUnderstand_",
  1376. smalltalk.method({
  1377. selector: "doesNotUnderstand:",
  1378. fn: function (aMessage){
  1379. var self=this;
  1380. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  1381. $2=_st(self)._canForwardMessage_(aMessage);
  1382. if(smalltalk.assert($2)){
  1383. $1=_st(self)._forwardMessage_(aMessage);
  1384. } else {
  1385. $3=smalltalk.Object.fn.prototype._doesNotUnderstand_.apply(_st(self), [aMessage]);
  1386. return $3;
  1387. };
  1388. return $1;
  1389. }, function($ctx1) {$ctx1.fill(self,"doesNotUnderstand:",{aMessage:aMessage}, smalltalk.JSObjectProxy)})}
  1390. }),
  1391. smalltalk.JSObjectProxy);
  1392. smalltalk.addMethod(
  1393. "_forwardMessage_",
  1394. smalltalk.method({
  1395. selector: "forwardMessage:",
  1396. fn: function (aMessage){
  1397. var self=this;
  1398. return smalltalk.withContext(function($ctx1) {
  1399. return smalltalk.send(self._jsObject(), aMessage._selector()._asJavaScriptSelector(), aMessage._arguments());
  1400. ;
  1401. return self}, function($ctx1) {$ctx1.fill(self,"forwardMessage:",{aMessage:aMessage}, smalltalk.JSObjectProxy)})}
  1402. }),
  1403. smalltalk.JSObjectProxy);
  1404. smalltalk.addMethod(
  1405. "_inspectOn_",
  1406. smalltalk.method({
  1407. selector: "inspectOn:",
  1408. fn: function (anInspector){
  1409. var self=this;
  1410. var variables;
  1411. return smalltalk.withContext(function($ctx1) { variables=_st((smalltalk.Dictionary || Dictionary))._new();
  1412. _st(variables)._at_put_("#self",_st(self)._jsObject());
  1413. _st(anInspector)._setLabel_(_st(self)._printString());
  1414. _st(self)._addObjectVariablesTo_(variables);
  1415. _st(anInspector)._setVariables_(variables);
  1416. return self}, function($ctx1) {$ctx1.fill(self,"inspectOn:",{anInspector:anInspector,variables:variables}, smalltalk.JSObjectProxy)})}
  1417. }),
  1418. smalltalk.JSObjectProxy);
  1419. smalltalk.addMethod(
  1420. "_jsObject",
  1421. smalltalk.method({
  1422. selector: "jsObject",
  1423. fn: function (){
  1424. var self=this;
  1425. return smalltalk.withContext(function($ctx1) { var $1;
  1426. $1=self["@jsObject"];
  1427. return $1;
  1428. }, function($ctx1) {$ctx1.fill(self,"jsObject",{}, smalltalk.JSObjectProxy)})}
  1429. }),
  1430. smalltalk.JSObjectProxy);
  1431. smalltalk.addMethod(
  1432. "_jsObject_",
  1433. smalltalk.method({
  1434. selector: "jsObject:",
  1435. fn: function (aJSObject){
  1436. var self=this;
  1437. return smalltalk.withContext(function($ctx1) { self["@jsObject"]=aJSObject;
  1438. return self}, function($ctx1) {$ctx1.fill(self,"jsObject:",{aJSObject:aJSObject}, smalltalk.JSObjectProxy)})}
  1439. }),
  1440. smalltalk.JSObjectProxy);
  1441. smalltalk.addMethod(
  1442. "_keysAndValuesDo_",
  1443. smalltalk.method({
  1444. selector: "keysAndValuesDo:",
  1445. fn: function (aBlock){
  1446. var self=this;
  1447. return smalltalk.withContext(function($ctx1) {
  1448. var o = self['@jsObject'];
  1449. for(var i in o) {
  1450. aBlock(i, o[i]);
  1451. }
  1452. ;
  1453. return self}, function($ctx1) {$ctx1.fill(self,"keysAndValuesDo:",{aBlock:aBlock}, smalltalk.JSObjectProxy)})}
  1454. }),
  1455. smalltalk.JSObjectProxy);
  1456. smalltalk.addMethod(
  1457. "_printString",
  1458. smalltalk.method({
  1459. selector: "printString",
  1460. fn: function (){
  1461. var self=this;
  1462. return smalltalk.withContext(function($ctx1) { var $1;
  1463. $1=_st(_st(self)._jsObject())._toString();
  1464. return $1;
  1465. }, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.JSObjectProxy)})}
  1466. }),
  1467. smalltalk.JSObjectProxy);
  1468. smalltalk.addMethod(
  1469. "_on_",
  1470. smalltalk.method({
  1471. selector: "on:",
  1472. fn: function (aJSObject){
  1473. var self=this;
  1474. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  1475. $2=_st(self)._new();
  1476. _st($2)._jsObject_(aJSObject);
  1477. $3=_st($2)._yourself();
  1478. $1=$3;
  1479. return $1;
  1480. }, function($ctx1) {$ctx1.fill(self,"on:",{aJSObject:aJSObject}, smalltalk.JSObjectProxy.klass)})}
  1481. }),
  1482. smalltalk.JSObjectProxy.klass);
  1483. smalltalk.addClass('Number', smalltalk.Object, [], 'Kernel-Objects');
  1484. smalltalk.addMethod(
  1485. "__and",
  1486. smalltalk.method({
  1487. selector: "&",
  1488. fn: function (aNumber){
  1489. var self=this;
  1490. return smalltalk.withContext(function($ctx1) { return self & aNumber;
  1491. return self}, function($ctx1) {$ctx1.fill(self,"&",{aNumber:aNumber}, smalltalk.Number)})}
  1492. }),
  1493. smalltalk.Number);
  1494. smalltalk.addMethod(
  1495. "__star",
  1496. smalltalk.method({
  1497. selector: "*",
  1498. fn: function (aNumber){
  1499. var self=this;
  1500. return smalltalk.withContext(function($ctx1) { return self * aNumber;
  1501. return self}, function($ctx1) {$ctx1.fill(self,"*",{aNumber:aNumber}, smalltalk.Number)})}
  1502. }),
  1503. smalltalk.Number);
  1504. smalltalk.addMethod(
  1505. "__plus",
  1506. smalltalk.method({
  1507. selector: "+",
  1508. fn: function (aNumber){
  1509. var self=this;
  1510. return smalltalk.withContext(function($ctx1) { return self + aNumber;
  1511. return self}, function($ctx1) {$ctx1.fill(self,"+",{aNumber:aNumber}, smalltalk.Number)})}
  1512. }),
  1513. smalltalk.Number);
  1514. smalltalk.addMethod(
  1515. "__minus",
  1516. smalltalk.method({
  1517. selector: "-",
  1518. fn: function (aNumber){
  1519. var self=this;
  1520. return smalltalk.withContext(function($ctx1) { return self - aNumber;
  1521. return self}, function($ctx1) {$ctx1.fill(self,"-",{aNumber:aNumber}, smalltalk.Number)})}
  1522. }),
  1523. smalltalk.Number);
  1524. smalltalk.addMethod(
  1525. "__slash",
  1526. smalltalk.method({
  1527. selector: "/",
  1528. fn: function (aNumber){
  1529. var self=this;
  1530. return smalltalk.withContext(function($ctx1) { return self / aNumber;
  1531. return self}, function($ctx1) {$ctx1.fill(self,"/",{aNumber:aNumber}, smalltalk.Number)})}
  1532. }),
  1533. smalltalk.Number);
  1534. smalltalk.addMethod(
  1535. "__lt",
  1536. smalltalk.method({
  1537. selector: "<",
  1538. fn: function (aNumber){
  1539. var self=this;
  1540. return smalltalk.withContext(function($ctx1) { return self < aNumber;
  1541. return self}, function($ctx1) {$ctx1.fill(self,"<",{aNumber:aNumber}, smalltalk.Number)})}
  1542. }),
  1543. smalltalk.Number);
  1544. smalltalk.addMethod(
  1545. "__lt_eq",
  1546. smalltalk.method({
  1547. selector: "<=",
  1548. fn: function (aNumber){
  1549. var self=this;
  1550. return smalltalk.withContext(function($ctx1) { return self <= aNumber;
  1551. return self}, function($ctx1) {$ctx1.fill(self,"<=",{aNumber:aNumber}, smalltalk.Number)})}
  1552. }),
  1553. smalltalk.Number);
  1554. smalltalk.addMethod(
  1555. "__eq",
  1556. smalltalk.method({
  1557. selector: "=",
  1558. fn: function (aNumber){
  1559. var self=this;
  1560. return smalltalk.withContext(function($ctx1) {
  1561. if(! aNumber._isNumber || ! aNumber._isNumber()) {
  1562. return false;
  1563. }
  1564. return Number(self) == aNumber
  1565. ;
  1566. return self}, function($ctx1) {$ctx1.fill(self,"=",{aNumber:aNumber}, smalltalk.Number)})}
  1567. }),
  1568. smalltalk.Number);
  1569. smalltalk.addMethod(
  1570. "__gt",
  1571. smalltalk.method({
  1572. selector: ">",
  1573. fn: function (aNumber){
  1574. var self=this;
  1575. return smalltalk.withContext(function($ctx1) { return self > aNumber;
  1576. return self}, function($ctx1) {$ctx1.fill(self,">",{aNumber:aNumber}, smalltalk.Number)})}
  1577. }),
  1578. smalltalk.Number);
  1579. smalltalk.addMethod(
  1580. "__gt_eq",
  1581. smalltalk.method({
  1582. selector: ">=",
  1583. fn: function (aNumber){
  1584. var self=this;
  1585. return smalltalk.withContext(function($ctx1) { return self >= aNumber;
  1586. return self}, function($ctx1) {$ctx1.fill(self,">=",{aNumber:aNumber}, smalltalk.Number)})}
  1587. }),
  1588. smalltalk.Number);
  1589. smalltalk.addMethod(
  1590. "__at",
  1591. smalltalk.method({
  1592. selector: "@",
  1593. fn: function (aNumber){
  1594. var self=this;
  1595. return smalltalk.withContext(function($ctx1) { var $1;
  1596. $1=_st((smalltalk.Point || Point))._x_y_(self,aNumber);
  1597. return $1;
  1598. }, function($ctx1) {$ctx1.fill(self,"@",{aNumber:aNumber}, smalltalk.Number)})}
  1599. }),
  1600. smalltalk.Number);
  1601. smalltalk.addMethod(
  1602. "__backslash",
  1603. smalltalk.method({
  1604. selector: "\x5c",
  1605. fn: function (aNumber){
  1606. var self=this;
  1607. return smalltalk.withContext(function($ctx1) { return self % aNumber;
  1608. return self}, function($ctx1) {$ctx1.fill(self,"\x5c\x5c",{aNumber:aNumber}, smalltalk.Number)})}
  1609. }),
  1610. smalltalk.Number);
  1611. smalltalk.addMethod(
  1612. "__backslash_backslash",
  1613. smalltalk.method({
  1614. selector: "\x5c\x5c",
  1615. fn: function (aNumber) {
  1616. var self = this;
  1617. return self % aNumber;
  1618. return self;
  1619. }
  1620. }),
  1621. smalltalk.Number);
  1622. smalltalk.addMethod(
  1623. "_abs",
  1624. smalltalk.method({
  1625. selector: "abs",
  1626. fn: function (){
  1627. var self=this;
  1628. return smalltalk.withContext(function($ctx1) { return Math.abs(self);;
  1629. return self}, function($ctx1) {$ctx1.fill(self,"abs",{}, smalltalk.Number)})}
  1630. }),
  1631. smalltalk.Number);
  1632. smalltalk.addMethod(
  1633. "_asJSON",
  1634. smalltalk.method({
  1635. selector: "asJSON",
  1636. fn: function (){
  1637. var self=this;
  1638. return smalltalk.withContext(function($ctx1) { var $1;
  1639. $1=self;
  1640. return $1;
  1641. }, function($ctx1) {$ctx1.fill(self,"asJSON",{}, smalltalk.Number)})}
  1642. }),
  1643. smalltalk.Number);
  1644. smalltalk.addMethod(
  1645. "_asJavascript",
  1646. smalltalk.method({
  1647. selector: "asJavascript",
  1648. fn: function (){
  1649. var self=this;
  1650. return smalltalk.withContext(function($ctx1) { var $1;
  1651. $1=_st(_st("(").__comma(_st(self)._printString())).__comma(")");
  1652. return $1;
  1653. }, function($ctx1) {$ctx1.fill(self,"asJavascript",{}, smalltalk.Number)})}
  1654. }),
  1655. smalltalk.Number);
  1656. smalltalk.addMethod(
  1657. "_asPoint",
  1658. smalltalk.method({
  1659. selector: "asPoint",
  1660. fn: function (){
  1661. var self=this;
  1662. return smalltalk.withContext(function($ctx1) { var $1;
  1663. $1=_st((smalltalk.Point || Point))._x_y_(self,self);
  1664. return $1;
  1665. }, function($ctx1) {$ctx1.fill(self,"asPoint",{}, smalltalk.Number)})}
  1666. }),
  1667. smalltalk.Number);
  1668. smalltalk.addMethod(
  1669. "_asString",
  1670. smalltalk.method({
  1671. selector: "asString",
  1672. fn: function (){
  1673. var self=this;
  1674. return smalltalk.withContext(function($ctx1) { var $1;
  1675. $1=_st(self)._printString();
  1676. return $1;
  1677. }, function($ctx1) {$ctx1.fill(self,"asString",{}, smalltalk.Number)})}
  1678. }),
  1679. smalltalk.Number);
  1680. smalltalk.addMethod(
  1681. "_atRandom",
  1682. smalltalk.method({
  1683. selector: "atRandom",
  1684. fn: function (){
  1685. var self=this;
  1686. return smalltalk.withContext(function($ctx1) { var $1;
  1687. $1=_st(_st(_st(_st(_st((smalltalk.Random || Random))._new())._next()).__star(self))._truncated()).__plus((1));
  1688. return $1;
  1689. }, function($ctx1) {$ctx1.fill(self,"atRandom",{}, smalltalk.Number)})}
  1690. }),
  1691. smalltalk.Number);
  1692. smalltalk.addMethod(
  1693. "_copy",
  1694. smalltalk.method({
  1695. selector: "copy",
  1696. fn: function (){
  1697. var self=this;
  1698. return smalltalk.withContext(function($ctx1) { var $1;
  1699. $1=self;
  1700. return $1;
  1701. }, function($ctx1) {$ctx1.fill(self,"copy",{}, smalltalk.Number)})}
  1702. }),
  1703. smalltalk.Number);
  1704. smalltalk.addMethod(
  1705. "_deepCopy",
  1706. smalltalk.method({
  1707. selector: "deepCopy",
  1708. fn: function (){
  1709. var self=this;
  1710. return smalltalk.withContext(function($ctx1) { var $1;
  1711. $1=_st(self)._copy();
  1712. return $1;
  1713. }, function($ctx1) {$ctx1.fill(self,"deepCopy",{}, smalltalk.Number)})}
  1714. }),
  1715. smalltalk.Number);
  1716. smalltalk.addMethod(
  1717. "_even",
  1718. smalltalk.method({
  1719. selector: "even",
  1720. fn: function (){
  1721. var self=this;
  1722. return smalltalk.withContext(function($ctx1) { var $1;
  1723. $1=_st((0)).__eq(_st(self).__backslash_backslash((2)));
  1724. return $1;
  1725. }, function($ctx1) {$ctx1.fill(self,"even",{}, smalltalk.Number)})}
  1726. }),
  1727. smalltalk.Number);
  1728. smalltalk.addMethod(
  1729. "_identityHash",
  1730. smalltalk.method({
  1731. selector: "identityHash",
  1732. fn: function (){
  1733. var self=this;
  1734. return smalltalk.withContext(function($ctx1) { var $1;
  1735. $1=_st(_st(self)._asString()).__comma("n");
  1736. return $1;
  1737. }, function($ctx1) {$ctx1.fill(self,"identityHash",{}, smalltalk.Number)})}
  1738. }),
  1739. smalltalk.Number);
  1740. smalltalk.addMethod(
  1741. "_isNumber",
  1742. smalltalk.method({
  1743. selector: "isNumber",
  1744. fn: function (){
  1745. var self=this;
  1746. return smalltalk.withContext(function($ctx1) { return true;
  1747. }, function($ctx1) {$ctx1.fill(self,"isNumber",{}, smalltalk.Number)})}
  1748. }),
  1749. smalltalk.Number);
  1750. smalltalk.addMethod(
  1751. "_isZero",
  1752. smalltalk.method({
  1753. selector: "isZero",
  1754. fn: function (){
  1755. var self=this;
  1756. return smalltalk.withContext(function($ctx1) { var $1;
  1757. $1=_st(self).__eq((0));
  1758. return $1;
  1759. }, function($ctx1) {$ctx1.fill(self,"isZero",{}, smalltalk.Number)})}
  1760. }),
  1761. smalltalk.Number);
  1762. smalltalk.addMethod(
  1763. "_max_",
  1764. smalltalk.method({
  1765. selector: "max:",
  1766. fn: function (aNumber){
  1767. var self=this;
  1768. return smalltalk.withContext(function($ctx1) { return Math.max(self, aNumber);;
  1769. return self}, function($ctx1) {$ctx1.fill(self,"max:",{aNumber:aNumber}, smalltalk.Number)})}
  1770. }),
  1771. smalltalk.Number);
  1772. smalltalk.addMethod(
  1773. "_min_",
  1774. smalltalk.method({
  1775. selector: "min:",
  1776. fn: function (aNumber){
  1777. var self=this;
  1778. return smalltalk.withContext(function($ctx1) { return Math.min(self, aNumber);;
  1779. return self}, function($ctx1) {$ctx1.fill(self,"min:",{aNumber:aNumber}, smalltalk.Number)})}
  1780. }),
  1781. smalltalk.Number);
  1782. smalltalk.addMethod(
  1783. "_negated",
  1784. smalltalk.method({
  1785. selector: "negated",
  1786. fn: function (){
  1787. var self=this;
  1788. return smalltalk.withContext(function($ctx1) { var $1;
  1789. $1=_st((0)).__minus(self);
  1790. return $1;
  1791. }, function($ctx1) {$ctx1.fill(self,"negated",{}, smalltalk.Number)})}
  1792. }),
  1793. smalltalk.Number);
  1794. smalltalk.addMethod(
  1795. "_negative",
  1796. smalltalk.method({
  1797. selector: "negative",
  1798. fn: function (){
  1799. var self=this;
  1800. return smalltalk.withContext(function($ctx1) { var $1;
  1801. $1=_st(self).__lt((0));
  1802. return $1;
  1803. }, function($ctx1) {$ctx1.fill(self,"negative",{}, smalltalk.Number)})}
  1804. }),
  1805. smalltalk.Number);
  1806. smalltalk.addMethod(
  1807. "_odd",
  1808. smalltalk.method({
  1809. selector: "odd",
  1810. fn: function (){
  1811. var self=this;
  1812. return smalltalk.withContext(function($ctx1) { var $1;
  1813. $1=_st(_st(self)._even())._not();
  1814. return $1;
  1815. }, function($ctx1) {$ctx1.fill(self,"odd",{}, smalltalk.Number)})}
  1816. }),
  1817. smalltalk.Number);
  1818. smalltalk.addMethod(
  1819. "_positive",
  1820. smalltalk.method({
  1821. selector: "positive",
  1822. fn: function (){
  1823. var self=this;
  1824. return smalltalk.withContext(function($ctx1) { var $1;
  1825. $1=_st(self).__gt_eq((0));
  1826. return $1;
  1827. }, function($ctx1) {$ctx1.fill(self,"positive",{}, smalltalk.Number)})}
  1828. }),
  1829. smalltalk.Number);
  1830. smalltalk.addMethod(
  1831. "_printShowingDecimalPlaces_",
  1832. smalltalk.method({
  1833. selector: "printShowingDecimalPlaces:",
  1834. fn: function (placesDesired){
  1835. var self=this;
  1836. return smalltalk.withContext(function($ctx1) { return self.toFixed(placesDesired);
  1837. return self}, function($ctx1) {$ctx1.fill(self,"printShowingDecimalPlaces:",{placesDesired:placesDesired}, smalltalk.Number)})}
  1838. }),
  1839. smalltalk.Number);
  1840. smalltalk.addMethod(
  1841. "_printString",
  1842. smalltalk.method({
  1843. selector: "printString",
  1844. fn: function (){
  1845. var self=this;
  1846. return smalltalk.withContext(function($ctx1) { return String(self);
  1847. return self}, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.Number)})}
  1848. }),
  1849. smalltalk.Number);
  1850. smalltalk.addMethod(
  1851. "_rounded",
  1852. smalltalk.method({
  1853. selector: "rounded",
  1854. fn: function (){
  1855. var self=this;
  1856. return smalltalk.withContext(function($ctx1) { return Math.round(self);;
  1857. return self}, function($ctx1) {$ctx1.fill(self,"rounded",{}, smalltalk.Number)})}
  1858. }),
  1859. smalltalk.Number);
  1860. smalltalk.addMethod(
  1861. "_sqrt",
  1862. smalltalk.method({
  1863. selector: "sqrt",
  1864. fn: function (){
  1865. var self=this;
  1866. return smalltalk.withContext(function($ctx1) { return Math.sqrt(self);
  1867. return self}, function($ctx1) {$ctx1.fill(self,"sqrt",{}, smalltalk.Number)})}
  1868. }),
  1869. smalltalk.Number);
  1870. smalltalk.addMethod(
  1871. "_squared",
  1872. smalltalk.method({
  1873. selector: "squared",
  1874. fn: function (){
  1875. var self=this;
  1876. return smalltalk.withContext(function($ctx1) { var $1;
  1877. $1=_st(self).__star(self);
  1878. return $1;
  1879. }, function($ctx1) {$ctx1.fill(self,"squared",{}, smalltalk.Number)})}
  1880. }),
  1881. smalltalk.Number);
  1882. smalltalk.addMethod(
  1883. "_timesRepeat_",
  1884. smalltalk.method({
  1885. selector: "timesRepeat:",
  1886. fn: function (aBlock){
  1887. var self=this;
  1888. var count;
  1889. return smalltalk.withContext(function($ctx1) { count=(1);
  1890. _st((function(){
  1891. return smalltalk.withContext(function($ctx2) { return _st(count).__gt(self);
  1892. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
  1893. return smalltalk.withContext(function($ctx2) { _st(aBlock)._value();
  1894. count=_st(count).__plus((1));
  1895. return count;
  1896. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1897. return self}, function($ctx1) {$ctx1.fill(self,"timesRepeat:",{aBlock:aBlock,count:count}, smalltalk.Number)})}
  1898. }),
  1899. smalltalk.Number);
  1900. smalltalk.addMethod(
  1901. "_to_",
  1902. smalltalk.method({
  1903. selector: "to:",
  1904. fn: function (aNumber){
  1905. var self=this;
  1906. var array,first,last,count;
  1907. return smalltalk.withContext(function($ctx1) { var $1;
  1908. first=_st(self)._truncated();
  1909. last=_st(_st(aNumber)._truncated()).__plus((1));
  1910. count=(1);
  1911. array=_st((smalltalk.Array || Array))._new();
  1912. _st(_st(last).__minus(first))._timesRepeat_((function(){
  1913. return smalltalk.withContext(function($ctx2) { _st(array)._at_put_(count,first);
  1914. count=_st(count).__plus((1));
  1915. count;
  1916. first=_st(first).__plus((1));
  1917. return first;
  1918. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1919. $1=array;
  1920. return $1;
  1921. }, function($ctx1) {$ctx1.fill(self,"to:",{aNumber:aNumber,array:array,first:first,last:last,count:count}, smalltalk.Number)})}
  1922. }),
  1923. smalltalk.Number);
  1924. smalltalk.addMethod(
  1925. "_to_by_",
  1926. smalltalk.method({
  1927. selector: "to:by:",
  1928. fn: function (stop,step){
  1929. var self=this;
  1930. var array,value,pos;
  1931. return smalltalk.withContext(function($ctx1) { var $1,$2,$3;
  1932. value=self;
  1933. array=_st((smalltalk.Array || Array))._new();
  1934. pos=(1);
  1935. $1=_st(step).__eq((0));
  1936. if(smalltalk.assert($1)){
  1937. _st(self)._error_("step must be non-zero");
  1938. };
  1939. $2=_st(step).__lt((0));
  1940. if(smalltalk.assert($2)){
  1941. _st((function(){
  1942. return smalltalk.withContext(function($ctx2) { return _st(value).__gt_eq(stop);
  1943. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  1944. return smalltalk.withContext(function($ctx2) { _st(array)._at_put_(pos,value);
  1945. pos=_st(pos).__plus((1));
  1946. pos;
  1947. value=_st(value).__plus(step);
  1948. return value;
  1949. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1950. } else {
  1951. _st((function(){
  1952. return smalltalk.withContext(function($ctx2) { return _st(value).__lt_eq(stop);
  1953. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  1954. return smalltalk.withContext(function($ctx2) { _st(array)._at_put_(pos,value);
  1955. pos=_st(pos).__plus((1));
  1956. pos;
  1957. value=_st(value).__plus(step);
  1958. return value;
  1959. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1960. };
  1961. $3=array;
  1962. return $3;
  1963. }, function($ctx1) {$ctx1.fill(self,"to:by:",{stop:stop,step:step,array:array,value:value,pos:pos}, smalltalk.Number)})}
  1964. }),
  1965. smalltalk.Number);
  1966. smalltalk.addMethod(
  1967. "_to_by_do_",
  1968. smalltalk.method({
  1969. selector: "to:by:do:",
  1970. fn: function (stop,step,aBlock){
  1971. var self=this;
  1972. var value;
  1973. return smalltalk.withContext(function($ctx1) { var $1,$2;
  1974. value=self;
  1975. $1=_st(step).__eq((0));
  1976. if(smalltalk.assert($1)){
  1977. _st(self)._error_("step must be non-zero");
  1978. };
  1979. $2=_st(step).__lt((0));
  1980. if(smalltalk.assert($2)){
  1981. _st((function(){
  1982. return smalltalk.withContext(function($ctx2) { return _st(value).__gt_eq(stop);
  1983. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  1984. return smalltalk.withContext(function($ctx2) { _st(aBlock)._value_(value);
  1985. value=_st(value).__plus(step);
  1986. return value;
  1987. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1988. } else {
  1989. _st((function(){
  1990. return smalltalk.withContext(function($ctx2) { return _st(value).__lt_eq(stop);
  1991. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  1992. return smalltalk.withContext(function($ctx2) { _st(aBlock)._value_(value);
  1993. value=_st(value).__plus(step);
  1994. return value;
  1995. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1996. };
  1997. return self}, function($ctx1) {$ctx1.fill(self,"to:by:do:",{stop:stop,step:step,aBlock:aBlock,value:value}, smalltalk.Number)})}
  1998. }),
  1999. smalltalk.Number);
  2000. smalltalk.addMethod(
  2001. "_to_do_",
  2002. smalltalk.method({
  2003. selector: "to:do:",
  2004. fn: function (stop,aBlock){
  2005. var self=this;
  2006. var nextValue;
  2007. return smalltalk.withContext(function($ctx1) { nextValue=self;
  2008. _st((function(){
  2009. return smalltalk.withContext(function($ctx2) { return _st(nextValue).__lt_eq(stop);
  2010. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  2011. return smalltalk.withContext(function($ctx2) { _st(aBlock)._value_(nextValue);
  2012. nextValue=_st(nextValue).__plus((1));
  2013. return nextValue;
  2014. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2015. return self}, function($ctx1) {$ctx1.fill(self,"to:do:",{stop:stop,aBlock:aBlock,nextValue:nextValue}, smalltalk.Number)})}
  2016. }),
  2017. smalltalk.Number);
  2018. smalltalk.addMethod(
  2019. "_truncated",
  2020. smalltalk.method({
  2021. selector: "truncated",
  2022. fn: function (){
  2023. var self=this;
  2024. return smalltalk.withContext(function($ctx1) {
  2025. if(self >= 0) {
  2026. return Math.floor(self);
  2027. } else {
  2028. return Math.floor(self * (-1)) * (-1);
  2029. };
  2030. ;
  2031. return self}, function($ctx1) {$ctx1.fill(self,"truncated",{}, smalltalk.Number)})}
  2032. }),
  2033. smalltalk.Number);
  2034. smalltalk.addMethod(
  2035. "__or",
  2036. smalltalk.method({
  2037. selector: "|",
  2038. fn: function (aNumber){
  2039. var self=this;
  2040. return smalltalk.withContext(function($ctx1) { return self | aNumber;
  2041. return self}, function($ctx1) {$ctx1.fill(self,"|",{aNumber:aNumber}, smalltalk.Number)})}
  2042. }),
  2043. smalltalk.Number);
  2044. smalltalk.addMethod(
  2045. "_pi",
  2046. smalltalk.method({
  2047. selector: "pi",
  2048. fn: function (){
  2049. var self=this;
  2050. return smalltalk.withContext(function($ctx1) { return Math.PI;
  2051. return self}, function($ctx1) {$ctx1.fill(self,"pi",{}, smalltalk.Number.klass)})}
  2052. }),
  2053. smalltalk.Number.klass);
  2054. smalltalk.addClass('Organizer', smalltalk.Object, [], 'Kernel-Objects');
  2055. smalltalk.addMethod(
  2056. "_addElement_",
  2057. smalltalk.method({
  2058. selector: "addElement:",
  2059. fn: function (anObject){
  2060. var self=this;
  2061. return smalltalk.withContext(function($ctx1) { self.elements.addElement(anObject);
  2062. return self}, function($ctx1) {$ctx1.fill(self,"addElement:",{anObject:anObject}, smalltalk.Organizer)})}
  2063. }),
  2064. smalltalk.Organizer);
  2065. smalltalk.addMethod(
  2066. "_elements",
  2067. smalltalk.method({
  2068. selector: "elements",
  2069. fn: function (){
  2070. var self=this;
  2071. return smalltalk.withContext(function($ctx1) { var $1;
  2072. $1=_st(_st(self)._basicAt_("elements"))._copy();
  2073. return $1;
  2074. }, function($ctx1) {$ctx1.fill(self,"elements",{}, smalltalk.Organizer)})}
  2075. }),
  2076. smalltalk.Organizer);
  2077. smalltalk.addMethod(
  2078. "_removeElement_",
  2079. smalltalk.method({
  2080. selector: "removeElement:",
  2081. fn: function (anObject){
  2082. var self=this;
  2083. return smalltalk.withContext(function($ctx1) { self.elements.removeElement(anObject);
  2084. return self}, function($ctx1) {$ctx1.fill(self,"removeElement:",{anObject:anObject}, smalltalk.Organizer)})}
  2085. }),
  2086. smalltalk.Organizer);
  2087. smalltalk.addClass('Package', smalltalk.Object, ['commitPathJs', 'commitPathSt'], 'Kernel-Objects');
  2088. smalltalk.addMethod(
  2089. "_classes",
  2090. smalltalk.method({
  2091. selector: "classes",
  2092. fn: function (){
  2093. var self=this;
  2094. return smalltalk.withContext(function($ctx1) { var $1;
  2095. $1=_st(_st(self)._organization())._elements();
  2096. return $1;
  2097. }, function($ctx1) {$ctx1.fill(self,"classes",{}, smalltalk.Package)})}
  2098. }),
  2099. smalltalk.Package);
  2100. smalltalk.addMethod(
  2101. "_commitPathJs",
  2102. smalltalk.method({
  2103. selector: "commitPathJs",
  2104. fn: function (){
  2105. var self=this;
  2106. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2107. $2=self["@commitPathJs"];
  2108. if(($receiver = $2) == nil || $receiver == undefined){
  2109. $1=_st(_st(self)._class())._defaultCommitPathJs();
  2110. } else {
  2111. $1=$2;
  2112. };
  2113. return $1;
  2114. }, function($ctx1) {$ctx1.fill(self,"commitPathJs",{}, smalltalk.Package)})}
  2115. }),
  2116. smalltalk.Package);
  2117. smalltalk.addMethod(
  2118. "_commitPathJs_",
  2119. smalltalk.method({
  2120. selector: "commitPathJs:",
  2121. fn: function (aString){
  2122. var self=this;
  2123. return smalltalk.withContext(function($ctx1) { self["@commitPathJs"]=aString;
  2124. return self}, function($ctx1) {$ctx1.fill(self,"commitPathJs:",{aString:aString}, smalltalk.Package)})}
  2125. }),
  2126. smalltalk.Package);
  2127. smalltalk.addMethod(
  2128. "_commitPathSt",
  2129. smalltalk.method({
  2130. selector: "commitPathSt",
  2131. fn: function (){
  2132. var self=this;
  2133. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2134. $2=self["@commitPathSt"];
  2135. if(($receiver = $2) == nil || $receiver == undefined){
  2136. $1=_st(_st(self)._class())._defaultCommitPathSt();
  2137. } else {
  2138. $1=$2;
  2139. };
  2140. return $1;
  2141. }, function($ctx1) {$ctx1.fill(self,"commitPathSt",{}, smalltalk.Package)})}
  2142. }),
  2143. smalltalk.Package);
  2144. smalltalk.addMethod(
  2145. "_commitPathSt_",
  2146. smalltalk.method({
  2147. selector: "commitPathSt:",
  2148. fn: function (aString){
  2149. var self=this;
  2150. return smalltalk.withContext(function($ctx1) { self["@commitPathSt"]=aString;
  2151. return self}, function($ctx1) {$ctx1.fill(self,"commitPathSt:",{aString:aString}, smalltalk.Package)})}
  2152. }),
  2153. smalltalk.Package);
  2154. smalltalk.addMethod(
  2155. "_dependencies",
  2156. smalltalk.method({
  2157. selector: "dependencies",
  2158. fn: function (){
  2159. var self=this;
  2160. return smalltalk.withContext(function($ctx1) { var $1;
  2161. $1=_st(self)._propertyAt_ifAbsent_("dependencies",(function(){
  2162. return smalltalk.withContext(function($ctx2) { return [];
  2163. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2164. return $1;
  2165. }, function($ctx1) {$ctx1.fill(self,"dependencies",{}, smalltalk.Package)})}
  2166. }),
  2167. smalltalk.Package);
  2168. smalltalk.addMethod(
  2169. "_dependencies_",
  2170. smalltalk.method({
  2171. selector: "dependencies:",
  2172. fn: function (anArray){
  2173. var self=this;
  2174. return smalltalk.withContext(function($ctx1) { var $1;
  2175. $1=_st(self)._propertyAt_put_("dependencies",anArray);
  2176. return $1;
  2177. }, function($ctx1) {$ctx1.fill(self,"dependencies:",{anArray:anArray}, smalltalk.Package)})}
  2178. }),
  2179. smalltalk.Package);
  2180. smalltalk.addMethod(
  2181. "_jsProperties",
  2182. smalltalk.method({
  2183. selector: "jsProperties",
  2184. fn: function (){
  2185. var self=this;
  2186. return smalltalk.withContext(function($ctx1) { return self.properties;
  2187. return self}, function($ctx1) {$ctx1.fill(self,"jsProperties",{}, smalltalk.Package)})}
  2188. }),
  2189. smalltalk.Package);
  2190. smalltalk.addMethod(
  2191. "_jsProperties_",
  2192. smalltalk.method({
  2193. selector: "jsProperties:",
  2194. fn: function (aJSObject){
  2195. var self=this;
  2196. return smalltalk.withContext(function($ctx1) { return self.properties = aJSObject;
  2197. return self}, function($ctx1) {$ctx1.fill(self,"jsProperties:",{aJSObject:aJSObject}, smalltalk.Package)})}
  2198. }),
  2199. smalltalk.Package);
  2200. smalltalk.addMethod(
  2201. "_name",
  2202. smalltalk.method({
  2203. selector: "name",
  2204. fn: function (){
  2205. var self=this;
  2206. return smalltalk.withContext(function($ctx1) { return self.pkgName;
  2207. return self}, function($ctx1) {$ctx1.fill(self,"name",{}, smalltalk.Package)})}
  2208. }),
  2209. smalltalk.Package);
  2210. smalltalk.addMethod(
  2211. "_name_",
  2212. smalltalk.method({
  2213. selector: "name:",
  2214. fn: function (aString){
  2215. var self=this;
  2216. return smalltalk.withContext(function($ctx1) { self.pkgName = aString;
  2217. return self}, function($ctx1) {$ctx1.fill(self,"name:",{aString:aString}, smalltalk.Package)})}
  2218. }),
  2219. smalltalk.Package);
  2220. smalltalk.addMethod(
  2221. "_organization",
  2222. smalltalk.method({
  2223. selector: "organization",
  2224. fn: function (){
  2225. var self=this;
  2226. return smalltalk.withContext(function($ctx1) { var $1;
  2227. $1=_st(self)._basicAt_("organization");
  2228. return $1;
  2229. }, function($ctx1) {$ctx1.fill(self,"organization",{}, smalltalk.Package)})}
  2230. }),
  2231. smalltalk.Package);
  2232. smalltalk.addMethod(
  2233. "_printString",
  2234. smalltalk.method({
  2235. selector: "printString",
  2236. fn: function (){
  2237. var self=this;
  2238. return smalltalk.withContext(function($ctx1) { var $1;
  2239. $1=_st(self)._name();
  2240. return $1;
  2241. }, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.Package)})}
  2242. }),
  2243. smalltalk.Package);
  2244. smalltalk.addMethod(
  2245. "_properties",
  2246. smalltalk.method({
  2247. selector: "properties",
  2248. fn: function (){
  2249. var self=this;
  2250. return smalltalk.withContext(function($ctx1) { var $1;
  2251. $1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._readJSObject_(_st(self)._basicAt_("properties"));
  2252. return $1;
  2253. }, function($ctx1) {$ctx1.fill(self,"properties",{}, smalltalk.Package)})}
  2254. }),
  2255. smalltalk.Package);
  2256. smalltalk.addMethod(
  2257. "_propertiesAsJSON",
  2258. smalltalk.method({
  2259. selector: "propertiesAsJSON",
  2260. fn: function (){
  2261. var self=this;
  2262. return smalltalk.withContext(function($ctx1) { return JSON.stringify(self.properties);
  2263. return self}, function($ctx1) {$ctx1.fill(self,"propertiesAsJSON",{}, smalltalk.Package)})}
  2264. }),
  2265. smalltalk.Package);
  2266. smalltalk.addMethod(
  2267. "_propertyAt_",
  2268. smalltalk.method({
  2269. selector: "propertyAt:",
  2270. fn: function (key){
  2271. var self=this;
  2272. return smalltalk.withContext(function($ctx1) { return self.properties[key];
  2273. return self}, function($ctx1) {$ctx1.fill(self,"propertyAt:",{key:key}, smalltalk.Package)})}
  2274. }),
  2275. smalltalk.Package);
  2276. smalltalk.addMethod(
  2277. "_propertyAt_ifAbsent_",
  2278. smalltalk.method({
  2279. selector: "propertyAt:ifAbsent:",
  2280. fn: function (key,block){
  2281. var self=this;
  2282. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2283. $2=_st(self)._propertyAt_(key);
  2284. if(($receiver = $2) == nil || $receiver == undefined){
  2285. $1=_st(block)._value();
  2286. } else {
  2287. $1=$2;
  2288. };
  2289. return $1;
  2290. }, function($ctx1) {$ctx1.fill(self,"propertyAt:ifAbsent:",{key:key,block:block}, smalltalk.Package)})}
  2291. }),
  2292. smalltalk.Package);
  2293. smalltalk.addMethod(
  2294. "_propertyAt_put_",
  2295. smalltalk.method({
  2296. selector: "propertyAt:put:",
  2297. fn: function (key,value){
  2298. var self=this;
  2299. return smalltalk.withContext(function($ctx1) { return self.properties[key] = value;
  2300. return self}, function($ctx1) {$ctx1.fill(self,"propertyAt:put:",{key:key,value:value}, smalltalk.Package)})}
  2301. }),
  2302. smalltalk.Package);
  2303. smalltalk.addMethod(
  2304. "_setupClasses",
  2305. smalltalk.method({
  2306. selector: "setupClasses",
  2307. fn: function (){
  2308. var self=this;
  2309. return smalltalk.withContext(function($ctx1) { var $1,$2;
  2310. $1=_st(self)._classes();
  2311. _st($1)._do_((function(each){
  2312. return smalltalk.withContext(function($ctx2) { return _st(_st((smalltalk.ClassBuilder || ClassBuilder))._new())._setupClass_(each);
  2313. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2314. $2=_st($1)._do_((function(each){
  2315. return smalltalk.withContext(function($ctx2) { return _st(each)._initialize();
  2316. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2317. return self}, function($ctx1) {$ctx1.fill(self,"setupClasses",{}, smalltalk.Package)})}
  2318. }),
  2319. smalltalk.Package);
  2320. smalltalk.addMethod(
  2321. "_sortedClasses",
  2322. smalltalk.method({
  2323. selector: "sortedClasses",
  2324. fn: function (){
  2325. var self=this;
  2326. return smalltalk.withContext(function($ctx1) { var $1;
  2327. $1=_st(_st(self)._class())._sortedClasses_(_st(self)._classes());
  2328. return $1;
  2329. }, function($ctx1) {$ctx1.fill(self,"sortedClasses",{}, smalltalk.Package)})}
  2330. }),
  2331. smalltalk.Package);
  2332. smalltalk.Package.klass.iVarNames = ['defaultCommitPathJs','defaultCommitPathSt'];
  2333. smalltalk.addMethod(
  2334. "_commitPathsFromLoader",
  2335. smalltalk.method({
  2336. selector: "commitPathsFromLoader",
  2337. fn: function (){
  2338. var self=this;
  2339. return smalltalk.withContext(function($ctx1) {
  2340. var cp = smalltalk['@@commitPath'];
  2341. if (!cp) return;
  2342. if (cp.js) self._defaultCommitPathJs_(cp.js);
  2343. if (cp.st) self._defaultCommitPathSt_(cp.st);
  2344. ;
  2345. return self}, function($ctx1) {$ctx1.fill(self,"commitPathsFromLoader",{}, smalltalk.Package.klass)})}
  2346. }),
  2347. smalltalk.Package.klass);
  2348. smalltalk.addMethod(
  2349. "_defaultCommitPathJs",
  2350. smalltalk.method({
  2351. selector: "defaultCommitPathJs",
  2352. fn: function (){
  2353. var self=this;
  2354. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2355. $2=self["@defaultCommitPathJs"];
  2356. if(($receiver = $2) == nil || $receiver == undefined){
  2357. self["@defaultCommitPathJs"]="js";
  2358. $1=self["@defaultCommitPathJs"];
  2359. } else {
  2360. $1=$2;
  2361. };
  2362. return $1;
  2363. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs",{}, smalltalk.Package.klass)})}
  2364. }),
  2365. smalltalk.Package.klass);
  2366. smalltalk.addMethod(
  2367. "_defaultCommitPathJs_",
  2368. smalltalk.method({
  2369. selector: "defaultCommitPathJs:",
  2370. fn: function (aString){
  2371. var self=this;
  2372. return smalltalk.withContext(function($ctx1) { self["@defaultCommitPathJs"]=aString;
  2373. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs:",{aString:aString}, smalltalk.Package.klass)})}
  2374. }),
  2375. smalltalk.Package.klass);
  2376. smalltalk.addMethod(
  2377. "_defaultCommitPathSt",
  2378. smalltalk.method({
  2379. selector: "defaultCommitPathSt",
  2380. fn: function (){
  2381. var self=this;
  2382. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2383. $2=self["@defaultCommitPathSt"];
  2384. if(($receiver = $2) == nil || $receiver == undefined){
  2385. self["@defaultCommitPathSt"]="st";
  2386. $1=self["@defaultCommitPathSt"];
  2387. } else {
  2388. $1=$2;
  2389. };
  2390. return $1;
  2391. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt",{}, smalltalk.Package.klass)})}
  2392. }),
  2393. smalltalk.Package.klass);
  2394. smalltalk.addMethod(
  2395. "_defaultCommitPathSt_",
  2396. smalltalk.method({
  2397. selector: "defaultCommitPathSt:",
  2398. fn: function (aString){
  2399. var self=this;
  2400. return smalltalk.withContext(function($ctx1) { self["@defaultCommitPathSt"]=aString;
  2401. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt:",{aString:aString}, smalltalk.Package.klass)})}
  2402. }),
  2403. smalltalk.Package.klass);
  2404. smalltalk.addMethod(
  2405. "_fetch_",
  2406. smalltalk.method({
  2407. selector: "fetch:",
  2408. fn: function (aPackageName){
  2409. var self=this;
  2410. return smalltalk.withContext(function($ctx1) { _st(self)._fetch_prefix_(aPackageName,_st(_st(self)._defaultCommitPathJs()).__comma("/"));
  2411. return self}, function($ctx1) {$ctx1.fill(self,"fetch:",{aPackageName:aPackageName}, smalltalk.Package.klass)})}
  2412. }),
  2413. smalltalk.Package.klass);
  2414. smalltalk.addMethod(
  2415. "_fetch_prefix_",
  2416. smalltalk.method({
  2417. selector: "fetch:prefix:",
  2418. fn: function (aPackageName,aPrefix){
  2419. var self=this;
  2420. return smalltalk.withContext(function($ctx1) { _st(jQuery)._getScript_onSuccess_(_st(_st(aPrefix).__comma(aPackageName)).__comma(".js"),(function(){
  2421. return smalltalk.withContext(function($ctx2) { return _st(_st((smalltalk.Package || Package))._named_(aPackageName))._setupClasses();
  2422. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2423. return self}, function($ctx1) {$ctx1.fill(self,"fetch:prefix:",{aPackageName:aPackageName,aPrefix:aPrefix}, smalltalk.Package.klass)})}
  2424. }),
  2425. smalltalk.Package.klass);
  2426. smalltalk.addMethod(
  2427. "_initialize",
  2428. smalltalk.method({
  2429. selector: "initialize",
  2430. fn: function (){
  2431. var self=this;
  2432. return smalltalk.withContext(function($ctx1) { smalltalk.Object.klass.fn.prototype._initialize.apply(_st(self), []);
  2433. _st(self)._commitPathsFromLoader();
  2434. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.Package.klass)})}
  2435. }),
  2436. smalltalk.Package.klass);
  2437. smalltalk.addMethod(
  2438. "_named_",
  2439. smalltalk.method({
  2440. selector: "named:",
  2441. fn: function (aPackageName){
  2442. var self=this;
  2443. return smalltalk.withContext(function($ctx1) { var $1;
  2444. $1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._packageAt_(aPackageName);
  2445. return $1;
  2446. }, function($ctx1) {$ctx1.fill(self,"named:",{aPackageName:aPackageName}, smalltalk.Package.klass)})}
  2447. }),
  2448. smalltalk.Package.klass);
  2449. smalltalk.addMethod(
  2450. "_named_ifAbsent_",
  2451. smalltalk.method({
  2452. selector: "named:ifAbsent:",
  2453. fn: function (aPackageName,aBlock){
  2454. var self=this;
  2455. return smalltalk.withContext(function($ctx1) { var $1;
  2456. $1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._packageAt_ifAbsent_(aPackageName,aBlock);
  2457. return $1;
  2458. }, function($ctx1) {$ctx1.fill(self,"named:ifAbsent:",{aPackageName:aPackageName,aBlock:aBlock}, smalltalk.Package.klass)})}
  2459. }),
  2460. smalltalk.Package.klass);
  2461. smalltalk.addMethod(
  2462. "_resetCommitPaths",
  2463. smalltalk.method({
  2464. selector: "resetCommitPaths",
  2465. fn: function (){
  2466. var self=this;
  2467. return smalltalk.withContext(function($ctx1) { self["@defaultCommitPathJs"]=nil;
  2468. self["@defaultCommitPathSt"]=nil;
  2469. return self}, function($ctx1) {$ctx1.fill(self,"resetCommitPaths",{}, smalltalk.Package.klass)})}
  2470. }),
  2471. smalltalk.Package.klass);
  2472. smalltalk.addMethod(
  2473. "_sortedClasses_",
  2474. smalltalk.method({
  2475. selector: "sortedClasses:",
  2476. fn: function (classes){
  2477. var self=this;
  2478. var children,others,nodes,expandedClasses;
  2479. return smalltalk.withContext(function($ctx1) { var $1,$3,$2,$4;
  2480. children=[];
  2481. others=[];
  2482. $1=classes;
  2483. $2=(function(each){
  2484. return smalltalk.withContext(function($ctx2) { $3=_st(classes)._includes_(_st(each)._superclass());
  2485. if(smalltalk.assert($3)){
  2486. return _st(others)._add_(each);
  2487. } else {
  2488. return _st(children)._add_(each);
  2489. };
  2490. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})});
  2491. _st($1)._do_($2);
  2492. nodes=_st(children)._collect_((function(each){
  2493. return smalltalk.withContext(function($ctx2) { return _st((smalltalk.ClassSorterNode || ClassSorterNode))._on_classes_level_(each,others,(0));
  2494. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2495. nodes=_st(nodes)._sorted_((function(a,b){
  2496. return smalltalk.withContext(function($ctx2) { return _st(_st(_st(a)._theClass())._name()).__lt_eq(_st(_st(b)._theClass())._name());
  2497. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));
  2498. expandedClasses=_st((smalltalk.Array || Array))._new();
  2499. _st(nodes)._do_((function(aNode){
  2500. return smalltalk.withContext(function($ctx2) { return _st(aNode)._traverseClassesWith_(expandedClasses);
  2501. }, function($ctx2) {$ctx2.fillBlock({aNode:aNode},$ctx1)})}));
  2502. $4=expandedClasses;
  2503. return $4;
  2504. }, function($ctx1) {$ctx1.fill(self,"sortedClasses:",{classes:classes,children:children,others:others,nodes:nodes,expandedClasses:expandedClasses}, smalltalk.Package.klass)})}
  2505. }),
  2506. smalltalk.Package.klass);
  2507. smalltalk.addClass('Point', smalltalk.Object, ['x', 'y'], 'Kernel-Objects');
  2508. smalltalk.addMethod(
  2509. "__star",
  2510. smalltalk.method({
  2511. selector: "*",
  2512. fn: function (aPoint){
  2513. var self=this;
  2514. return smalltalk.withContext(function($ctx1) { var $1;
  2515. $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()));
  2516. return $1;
  2517. }, function($ctx1) {$ctx1.fill(self,"*",{aPoint:aPoint}, smalltalk.Point)})}
  2518. }),
  2519. smalltalk.Point);
  2520. smalltalk.addMethod(
  2521. "__plus",
  2522. smalltalk.method({
  2523. selector: "+",
  2524. fn: function (aPoint){
  2525. var self=this;
  2526. return smalltalk.withContext(function($ctx1) { var $1;
  2527. $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()));
  2528. return $1;
  2529. }, function($ctx1) {$ctx1.fill(self,"+",{aPoint:aPoint}, smalltalk.Point)})}
  2530. }),
  2531. smalltalk.Point);
  2532. smalltalk.addMethod(
  2533. "__minus",
  2534. smalltalk.method({
  2535. selector: "-",
  2536. fn: function (aPoint){
  2537. var self=this;
  2538. return smalltalk.withContext(function($ctx1) { var $1;
  2539. $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()));
  2540. return $1;
  2541. }, function($ctx1) {$ctx1.fill(self,"-",{aPoint:aPoint}, smalltalk.Point)})}
  2542. }),
  2543. smalltalk.Point);
  2544. smalltalk.addMethod(
  2545. "__slash",
  2546. smalltalk.method({
  2547. selector: "/",
  2548. fn: function (aPoint){
  2549. var self=this;
  2550. return smalltalk.withContext(function($ctx1) { var $1;
  2551. $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()));
  2552. return $1;
  2553. }, function($ctx1) {$ctx1.fill(self,"/",{aPoint:aPoint}, smalltalk.Point)})}
  2554. }),
  2555. smalltalk.Point);
  2556. smalltalk.addMethod(
  2557. "__eq",
  2558. smalltalk.method({
  2559. selector: "=",
  2560. fn: function (aPoint){
  2561. var self=this;
  2562. return smalltalk.withContext(function($ctx1) { var $1;
  2563. $1=_st(_st(_st(aPoint)._class()).__eq(_st(self)._class()))._and_((function(){
  2564. return smalltalk.withContext(function($ctx2) { return _st(_st(_st(aPoint)._x()).__eq(_st(self)._x())).__and(_st(_st(aPoint)._y()).__eq(_st(self)._y()));
  2565. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2566. return $1;
  2567. }, function($ctx1) {$ctx1.fill(self,"=",{aPoint:aPoint}, smalltalk.Point)})}
  2568. }),
  2569. smalltalk.Point);
  2570. smalltalk.addMethod(
  2571. "_asPoint",
  2572. smalltalk.method({
  2573. selector: "asPoint",
  2574. fn: function (){
  2575. var self=this;
  2576. return smalltalk.withContext(function($ctx1) { var $1;
  2577. $1=self;
  2578. return $1;
  2579. }, function($ctx1) {$ctx1.fill(self,"asPoint",{}, smalltalk.Point)})}
  2580. }),
  2581. smalltalk.Point);
  2582. smalltalk.addMethod(
  2583. "_printString",
  2584. smalltalk.method({
  2585. selector: "printString",
  2586. fn: function (){
  2587. var self=this;
  2588. return smalltalk.withContext(function($ctx1) { var $2,$4,$3,$1;
  2589. $2=(smalltalk.String || String);
  2590. $3=(function(stream){
  2591. return smalltalk.withContext(function($ctx2) { _st(stream)._nextPutAll_(_st(_st(self["@x"])._printString()).__comma("@"));
  2592. $4=_st(_st(self["@y"])._notNil())._and_((function(){
  2593. return smalltalk.withContext(function($ctx3) { return _st(self["@y"])._negative();
  2594. }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
  2595. if(smalltalk.assert($4)){
  2596. _st(stream)._space();
  2597. };
  2598. return _st(stream)._nextPutAll_(_st(self["@y"])._printString());
  2599. }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1)})});
  2600. $1=_st($2)._streamContents_($3);
  2601. return $1;
  2602. }, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.Point)})}
  2603. }),
  2604. smalltalk.Point);
  2605. smalltalk.addMethod(
  2606. "_translateBy_",
  2607. smalltalk.method({
  2608. selector: "translateBy:",
  2609. fn: function (delta){
  2610. var self=this;
  2611. return smalltalk.withContext(function($ctx1) { var $1;
  2612. $1=_st(_st(_st(delta)._x()).__plus(self["@x"])).__at(_st(_st(delta)._y()).__plus(self["@y"]));
  2613. return $1;
  2614. }, function($ctx1) {$ctx1.fill(self,"translateBy:",{delta:delta}, smalltalk.Point)})}
  2615. }),
  2616. smalltalk.Point);
  2617. smalltalk.addMethod(
  2618. "_x",
  2619. smalltalk.method({
  2620. selector: "x",
  2621. fn: function (){
  2622. var self=this;
  2623. return smalltalk.withContext(function($ctx1) { var $1;
  2624. $1=self["@x"];
  2625. return $1;
  2626. }, function($ctx1) {$ctx1.fill(self,"x",{}, smalltalk.Point)})}
  2627. }),
  2628. smalltalk.Point);
  2629. smalltalk.addMethod(
  2630. "_x_",
  2631. smalltalk.method({
  2632. selector: "x:",
  2633. fn: function (aNumber){
  2634. var self=this;
  2635. return smalltalk.withContext(function($ctx1) { self["@x"]=aNumber;
  2636. return self}, function($ctx1) {$ctx1.fill(self,"x:",{aNumber:aNumber}, smalltalk.Point)})}
  2637. }),
  2638. smalltalk.Point);
  2639. smalltalk.addMethod(
  2640. "_y",
  2641. smalltalk.method({
  2642. selector: "y",
  2643. fn: function (){
  2644. var self=this;
  2645. return smalltalk.withContext(function($ctx1) { var $1;
  2646. $1=self["@y"];
  2647. return $1;
  2648. }, function($ctx1) {$ctx1.fill(self,"y",{}, smalltalk.Point)})}
  2649. }),
  2650. smalltalk.Point);
  2651. smalltalk.addMethod(
  2652. "_y_",
  2653. smalltalk.method({
  2654. selector: "y:",
  2655. fn: function (aNumber){
  2656. var self=this;
  2657. return smalltalk.withContext(function($ctx1) { self["@y"]=aNumber;
  2658. return self}, function($ctx1) {$ctx1.fill(self,"y:",{aNumber:aNumber}, smalltalk.Point)})}
  2659. }),
  2660. smalltalk.Point);
  2661. smalltalk.addMethod(
  2662. "_x_y_",
  2663. smalltalk.method({
  2664. selector: "x:y:",
  2665. fn: function (aNumber,anotherNumber){
  2666. var self=this;
  2667. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  2668. $2=_st(self)._new();
  2669. _st($2)._x_(aNumber);
  2670. _st($2)._y_(anotherNumber);
  2671. $3=_st($2)._yourself();
  2672. $1=$3;
  2673. return $1;
  2674. }, function($ctx1) {$ctx1.fill(self,"x:y:",{aNumber:aNumber,anotherNumber:anotherNumber}, smalltalk.Point.klass)})}
  2675. }),
  2676. smalltalk.Point.klass);
  2677. smalltalk.addClass('Random', smalltalk.Object, [], 'Kernel-Objects');
  2678. smalltalk.addMethod(
  2679. "_next",
  2680. smalltalk.method({
  2681. selector: "next",
  2682. fn: function (){
  2683. var self=this;
  2684. return smalltalk.withContext(function($ctx1) { return Math.random();
  2685. return self}, function($ctx1) {$ctx1.fill(self,"next",{}, smalltalk.Random)})}
  2686. }),
  2687. smalltalk.Random);
  2688. smalltalk.addMethod(
  2689. "_next_",
  2690. smalltalk.method({
  2691. selector: "next:",
  2692. fn: function (anInteger){
  2693. var self=this;
  2694. return smalltalk.withContext(function($ctx1) { var $1;
  2695. $1=_st(_st((1))._to_(anInteger))._collect_((function(each){
  2696. return smalltalk.withContext(function($ctx2) { return _st(self)._next();
  2697. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2698. return $1;
  2699. }, function($ctx1) {$ctx1.fill(self,"next:",{anInteger:anInteger}, smalltalk.Random)})}
  2700. }),
  2701. smalltalk.Random);
  2702. smalltalk.addClass('Smalltalk', smalltalk.Object, [], 'Kernel-Objects');
  2703. smalltalk.addMethod(
  2704. "_at_",
  2705. smalltalk.method({
  2706. selector: "at:",
  2707. fn: function (aSymbol){
  2708. var self=this;
  2709. return smalltalk.withContext(function($ctx1) { return self[aSymbol._asString()];
  2710. return self}, function($ctx1) {$ctx1.fill(self,"at:",{aSymbol:aSymbol}, smalltalk.Smalltalk)})}
  2711. }),
  2712. smalltalk.Smalltalk);
  2713. smalltalk.addMethod(
  2714. "_basicParse_",
  2715. smalltalk.method({
  2716. selector: "basicParse:",
  2717. fn: function (aString){
  2718. var self=this;
  2719. return smalltalk.withContext(function($ctx1) { return smalltalk.parser.parse(aString);
  2720. return self}, function($ctx1) {$ctx1.fill(self,"basicParse:",{aString:aString}, smalltalk.Smalltalk)})}
  2721. }),
  2722. smalltalk.Smalltalk);
  2723. smalltalk.addMethod(
  2724. "_classes",
  2725. smalltalk.method({
  2726. selector: "classes",
  2727. fn: function (){
  2728. var self=this;
  2729. return smalltalk.withContext(function($ctx1) { return self.classes();
  2730. return self}, function($ctx1) {$ctx1.fill(self,"classes",{}, smalltalk.Smalltalk)})}
  2731. }),
  2732. smalltalk.Smalltalk);
  2733. smalltalk.addMethod(
  2734. "_createPackage_",
  2735. smalltalk.method({
  2736. selector: "createPackage:",
  2737. fn: function (packageName){
  2738. var self=this;
  2739. return smalltalk.withContext(function($ctx1) { return smalltalk.addPackage(packageName);
  2740. return self}, function($ctx1) {$ctx1.fill(self,"createPackage:",{packageName:packageName}, smalltalk.Smalltalk)})}
  2741. }),
  2742. smalltalk.Smalltalk);
  2743. smalltalk.addMethod(
  2744. "_createPackage_properties_",
  2745. smalltalk.method({
  2746. selector: "createPackage:properties:",
  2747. fn: function (packageName,aDict){
  2748. var self=this;
  2749. return smalltalk.withContext(function($ctx1) { var $1,$2;
  2750. _st(self)._deprecatedAPI();
  2751. $1=_st(aDict)._isEmpty();
  2752. if(! smalltalk.assert($1)){
  2753. _st(self)._error_("createPackage:properties: called with nonempty properties");
  2754. };
  2755. $2=_st(self)._createPackage_(packageName);
  2756. return $2;
  2757. }, function($ctx1) {$ctx1.fill(self,"createPackage:properties:",{packageName:packageName,aDict:aDict}, smalltalk.Smalltalk)})}
  2758. }),
  2759. smalltalk.Smalltalk);
  2760. smalltalk.addMethod(
  2761. "_deleteClass_",
  2762. smalltalk.method({
  2763. selector: "deleteClass:",
  2764. fn: function (aClass){
  2765. var self=this;
  2766. return smalltalk.withContext(function($ctx1) { self.removeClass(aClass);
  2767. return self}, function($ctx1) {$ctx1.fill(self,"deleteClass:",{aClass:aClass}, smalltalk.Smalltalk)})}
  2768. }),
  2769. smalltalk.Smalltalk);
  2770. smalltalk.addMethod(
  2771. "_deletePackage_",
  2772. smalltalk.method({
  2773. selector: "deletePackage:",
  2774. fn: function (packageName){
  2775. var self=this;
  2776. return smalltalk.withContext(function($ctx1) { delete smalltalk.packages[packageName];
  2777. return self}, function($ctx1) {$ctx1.fill(self,"deletePackage:",{packageName:packageName}, smalltalk.Smalltalk)})}
  2778. }),
  2779. smalltalk.Smalltalk);
  2780. smalltalk.addMethod(
  2781. "_packageAt_",
  2782. smalltalk.method({
  2783. selector: "packageAt:",
  2784. fn: function (packageName){
  2785. var self=this;
  2786. return smalltalk.withContext(function($ctx1) { return self.packages[packageName];
  2787. return self}, function($ctx1) {$ctx1.fill(self,"packageAt:",{packageName:packageName}, smalltalk.Smalltalk)})}
  2788. }),
  2789. smalltalk.Smalltalk);
  2790. smalltalk.addMethod(
  2791. "_packageAt_ifAbsent_",
  2792. smalltalk.method({
  2793. selector: "packageAt:ifAbsent:",
  2794. fn: function (packageName,aBlock){
  2795. var self=this;
  2796. return smalltalk.withContext(function($ctx1) { var $2,$1;
  2797. $2=_st(self)._packageAt_(packageName);
  2798. $1=_st($2)._ifNil_(aBlock);
  2799. return $1;
  2800. }, function($ctx1) {$ctx1.fill(self,"packageAt:ifAbsent:",{packageName:packageName,aBlock:aBlock}, smalltalk.Smalltalk)})}
  2801. }),
  2802. smalltalk.Smalltalk);
  2803. smalltalk.addMethod(
  2804. "_packages",
  2805. smalltalk.method({
  2806. selector: "packages",
  2807. fn: function (){
  2808. var self=this;
  2809. return smalltalk.withContext(function($ctx1) { return self.packages.all();
  2810. return self}, function($ctx1) {$ctx1.fill(self,"packages",{}, smalltalk.Smalltalk)})}
  2811. }),
  2812. smalltalk.Smalltalk);
  2813. smalltalk.addMethod(
  2814. "_parse_",
  2815. smalltalk.method({
  2816. selector: "parse:",
  2817. fn: function (aString){
  2818. var self=this;
  2819. var result;
  2820. return smalltalk.withContext(function($ctx1) { var $1;
  2821. _st(self)._try_catch_((function(){
  2822. return smalltalk.withContext(function($ctx2) { result=_st(self)._basicParse_(aString);
  2823. return result;
  2824. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),(function(ex){
  2825. return smalltalk.withContext(function($ctx2) { return _st(_st(self)._parseError_parsing_(ex,aString))._signal();
  2826. }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));
  2827. $1=result;
  2828. return $1;
  2829. }, function($ctx1) {$ctx1.fill(self,"parse:",{aString:aString,result:result}, smalltalk.Smalltalk)})}
  2830. }),
  2831. smalltalk.Smalltalk);
  2832. smalltalk.addMethod(
  2833. "_parseError_parsing_",
  2834. smalltalk.method({
  2835. selector: "parseError:parsing:",
  2836. fn: function (anException,aString){
  2837. var self=this;
  2838. return smalltalk.withContext(function($ctx1) { var $1;
  2839. $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")));
  2840. return $1;
  2841. }, function($ctx1) {$ctx1.fill(self,"parseError:parsing:",{anException:anException,aString:aString}, smalltalk.Smalltalk)})}
  2842. }),
  2843. smalltalk.Smalltalk);
  2844. smalltalk.addMethod(
  2845. "_pseudoVariableNames",
  2846. smalltalk.method({
  2847. selector: "pseudoVariableNames",
  2848. fn: function (){
  2849. var self=this;
  2850. return smalltalk.withContext(function($ctx1) { return ["self", "super", "nil", "true", "false", "thisContext"];
  2851. }, function($ctx1) {$ctx1.fill(self,"pseudoVariableNames",{}, smalltalk.Smalltalk)})}
  2852. }),
  2853. smalltalk.Smalltalk);
  2854. smalltalk.addMethod(
  2855. "_readJSObject_",
  2856. smalltalk.method({
  2857. selector: "readJSObject:",
  2858. fn: function (anObject){
  2859. var self=this;
  2860. return smalltalk.withContext(function($ctx1) { return self.readJSObject(anObject);
  2861. return self}, function($ctx1) {$ctx1.fill(self,"readJSObject:",{anObject:anObject}, smalltalk.Smalltalk)})}
  2862. }),
  2863. smalltalk.Smalltalk);
  2864. smalltalk.addMethod(
  2865. "_removeClass_",
  2866. smalltalk.method({
  2867. selector: "removeClass:",
  2868. fn: function (aClass){
  2869. var self=this;
  2870. return smalltalk.withContext(function($ctx1) { var $1,$2,$3;
  2871. $1=_st(aClass)._isMetaclass();
  2872. if(smalltalk.assert($1)){
  2873. _st(self)._error_(_st(_st(aClass)._asString()).__comma(" is a Metaclass and cannot be removed!"));
  2874. };
  2875. _st(_st(_st(aClass)._methodDictionary())._values())._do_((function(each){
  2876. return smalltalk.withContext(function($ctx2) { return _st(aClass)._removeCompiledMethod_(each);
  2877. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2878. _st(_st(_st(_st(aClass)._class())._methodDictionary())._values())._do_((function(each){
  2879. return smalltalk.withContext(function($ctx2) { return _st(_st(aClass)._class())._removeCompiledMethod_(each);
  2880. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2881. _st(self)._deleteClass_(aClass);
  2882. $2=_st((smalltalk.ClassRemoved || ClassRemoved))._new();
  2883. _st($2)._theClass_(aClass);
  2884. $3=_st($2)._yourself();
  2885. _st(_st((smalltalk.SystemAnnouncer || SystemAnnouncer))._current())._announce_($3);
  2886. return self}, function($ctx1) {$ctx1.fill(self,"removeClass:",{aClass:aClass}, smalltalk.Smalltalk)})}
  2887. }),
  2888. smalltalk.Smalltalk);
  2889. smalltalk.addMethod(
  2890. "_removePackage_",
  2891. smalltalk.method({
  2892. selector: "removePackage:",
  2893. fn: function (packageName){
  2894. var self=this;
  2895. var pkg;
  2896. return smalltalk.withContext(function($ctx1) { pkg=_st(self)._packageAt_ifAbsent_(packageName,(function(){
  2897. return smalltalk.withContext(function($ctx2) { return _st(self)._error_(_st("Missing package: ").__comma(packageName));
  2898. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2899. _st(_st(pkg)._classes())._do_((function(each){
  2900. return smalltalk.withContext(function($ctx2) { return _st(self)._removeClass_(each);
  2901. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2902. _st(self)._deletePackage_(packageName);
  2903. return self}, function($ctx1) {$ctx1.fill(self,"removePackage:",{packageName:packageName,pkg:pkg}, smalltalk.Smalltalk)})}
  2904. }),
  2905. smalltalk.Smalltalk);
  2906. smalltalk.addMethod(
  2907. "_renamePackage_to_",
  2908. smalltalk.method({
  2909. selector: "renamePackage:to:",
  2910. fn: function (packageName,newName){
  2911. var self=this;
  2912. var pkg;
  2913. return smalltalk.withContext(function($ctx1) { var $1;
  2914. pkg=_st(self)._packageAt_ifAbsent_(packageName,(function(){
  2915. return smalltalk.withContext(function($ctx2) { return _st(self)._error_(_st("Missing package: ").__comma(packageName));
  2916. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2917. $1=_st(self)._packageAt_(newName);
  2918. if(($receiver = $1) == nil || $receiver == undefined){
  2919. $1;
  2920. } else {
  2921. _st(self)._error_(_st("Already exists a package called: ").__comma(newName));
  2922. };
  2923. _st(_st(self)._basicAt_("packages"))._at_put_(newName,pkg);
  2924. _st(pkg)._name_(newName);
  2925. _st(self)._deletePackage_(packageName);
  2926. return self}, function($ctx1) {$ctx1.fill(self,"renamePackage:to:",{packageName:packageName,newName:newName,pkg:pkg}, smalltalk.Smalltalk)})}
  2927. }),
  2928. smalltalk.Smalltalk);
  2929. smalltalk.addMethod(
  2930. "_reservedWords",
  2931. smalltalk.method({
  2932. selector: "reservedWords",
  2933. fn: function (){
  2934. var self=this;
  2935. return smalltalk.withContext(function($ctx1) { return self.reservedWords;
  2936. return self}, function($ctx1) {$ctx1.fill(self,"reservedWords",{}, smalltalk.Smalltalk)})}
  2937. }),
  2938. smalltalk.Smalltalk);
  2939. smalltalk.Smalltalk.klass.iVarNames = ['current'];
  2940. smalltalk.addMethod(
  2941. "_current",
  2942. smalltalk.method({
  2943. selector: "current",
  2944. fn: function (){
  2945. var self=this;
  2946. return smalltalk.withContext(function($ctx1) { return smalltalk;
  2947. return self}, function($ctx1) {$ctx1.fill(self,"current",{}, smalltalk.Smalltalk.klass)})}
  2948. }),
  2949. smalltalk.Smalltalk.klass);
  2950. smalltalk.addClass('Timeout', smalltalk.Object, ['rawTimeout'], 'Kernel-Objects');
  2951. smalltalk.addMethod(
  2952. "_clearInterval",
  2953. smalltalk.method({
  2954. selector: "clearInterval",
  2955. fn: function (){
  2956. var self=this;
  2957. return smalltalk.withContext(function($ctx1) {
  2958. var interval = self["@rawTimeout"];
  2959. clearInterval(interval);
  2960. ;
  2961. return self}, function($ctx1) {$ctx1.fill(self,"clearInterval",{}, smalltalk.Timeout)})}
  2962. }),
  2963. smalltalk.Timeout);
  2964. smalltalk.addMethod(
  2965. "_clearTimeout",
  2966. smalltalk.method({
  2967. selector: "clearTimeout",
  2968. fn: function (){
  2969. var self=this;
  2970. return smalltalk.withContext(function($ctx1) {
  2971. var timeout = self["@rawTimeout"];
  2972. clearTimeout(timeout);
  2973. ;
  2974. return self}, function($ctx1) {$ctx1.fill(self,"clearTimeout",{}, smalltalk.Timeout)})}
  2975. }),
  2976. smalltalk.Timeout);
  2977. smalltalk.addMethod(
  2978. "_rawTimeout_",
  2979. smalltalk.method({
  2980. selector: "rawTimeout:",
  2981. fn: function (anObject){
  2982. var self=this;
  2983. return smalltalk.withContext(function($ctx1) { self["@rawTimeout"]=anObject;
  2984. return self}, function($ctx1) {$ctx1.fill(self,"rawTimeout:",{anObject:anObject}, smalltalk.Timeout)})}
  2985. }),
  2986. smalltalk.Timeout);
  2987. smalltalk.addMethod(
  2988. "_on_",
  2989. smalltalk.method({
  2990. selector: "on:",
  2991. fn: function (anObject){
  2992. var self=this;
  2993. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  2994. $2=_st(self)._new();
  2995. _st($2)._rawTimeout_(anObject);
  2996. $3=_st($2)._yourself();
  2997. $1=$3;
  2998. return $1;
  2999. }, function($ctx1) {$ctx1.fill(self,"on:",{anObject:anObject}, smalltalk.Timeout.klass)})}
  3000. }),
  3001. smalltalk.Timeout.klass);
  3002. smalltalk.addClass('UndefinedObject', smalltalk.Object, [], 'Kernel-Objects');
  3003. smalltalk.addMethod(
  3004. "_asJSON",
  3005. smalltalk.method({
  3006. selector: "asJSON",
  3007. fn: function (){
  3008. var self=this;
  3009. return smalltalk.withContext(function($ctx1) { var $1;
  3010. $1=null;
  3011. return $1;
  3012. }, function($ctx1) {$ctx1.fill(self,"asJSON",{}, smalltalk.UndefinedObject)})}
  3013. }),
  3014. smalltalk.UndefinedObject);
  3015. smalltalk.addMethod(
  3016. "_deepCopy",
  3017. smalltalk.method({
  3018. selector: "deepCopy",
  3019. fn: function (){
  3020. var self=this;
  3021. return smalltalk.withContext(function($ctx1) { var $1;
  3022. $1=self;
  3023. return $1;
  3024. }, function($ctx1) {$ctx1.fill(self,"deepCopy",{}, smalltalk.UndefinedObject)})}
  3025. }),
  3026. smalltalk.UndefinedObject);
  3027. smalltalk.addMethod(
  3028. "_ifNil_",
  3029. smalltalk.method({
  3030. selector: "ifNil:",
  3031. fn: function (aBlock){
  3032. var self=this;
  3033. return smalltalk.withContext(function($ctx1) { var $2,$1;
  3034. $2=self;
  3035. $1=_st($2)._ifNil_ifNotNil_(aBlock,(function(){
  3036. return smalltalk.withContext(function($ctx2) { }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  3037. return $1;
  3038. }, function($ctx1) {$ctx1.fill(self,"ifNil:",{aBlock:aBlock}, smalltalk.UndefinedObject)})}
  3039. }),
  3040. smalltalk.UndefinedObject);
  3041. smalltalk.addMethod(
  3042. "_ifNil_ifNotNil_",
  3043. smalltalk.method({
  3044. selector: "ifNil:ifNotNil:",
  3045. fn: function (aBlock,anotherBlock){
  3046. var self=this;
  3047. return smalltalk.withContext(function($ctx1) { var $1;
  3048. $1=_st(aBlock)._value();
  3049. return $1;
  3050. }, function($ctx1) {$ctx1.fill(self,"ifNil:ifNotNil:",{aBlock:aBlock,anotherBlock:anotherBlock}, smalltalk.UndefinedObject)})}
  3051. }),
  3052. smalltalk.UndefinedObject);
  3053. smalltalk.addMethod(
  3054. "_ifNotNil_",
  3055. smalltalk.method({
  3056. selector: "ifNotNil:",
  3057. fn: function (aBlock){
  3058. var self=this;
  3059. return smalltalk.withContext(function($ctx1) { var $1;
  3060. $1=self;
  3061. return $1;
  3062. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:",{aBlock:aBlock}, smalltalk.UndefinedObject)})}
  3063. }),
  3064. smalltalk.UndefinedObject);
  3065. smalltalk.addMethod(
  3066. "_ifNotNil_ifNil_",
  3067. smalltalk.method({
  3068. selector: "ifNotNil:ifNil:",
  3069. fn: function (aBlock,anotherBlock){
  3070. var self=this;
  3071. return smalltalk.withContext(function($ctx1) { var $1;
  3072. $1=_st(anotherBlock)._value();
  3073. return $1;
  3074. }, function($ctx1) {$ctx1.fill(self,"ifNotNil:ifNil:",{aBlock:aBlock,anotherBlock:anotherBlock}, smalltalk.UndefinedObject)})}
  3075. }),
  3076. smalltalk.UndefinedObject);
  3077. smalltalk.addMethod(
  3078. "_isNil",
  3079. smalltalk.method({
  3080. selector: "isNil",
  3081. fn: function (){
  3082. var self=this;
  3083. return smalltalk.withContext(function($ctx1) { return true;
  3084. }, function($ctx1) {$ctx1.fill(self,"isNil",{}, smalltalk.UndefinedObject)})}
  3085. }),
  3086. smalltalk.UndefinedObject);
  3087. smalltalk.addMethod(
  3088. "_notNil",
  3089. smalltalk.method({
  3090. selector: "notNil",
  3091. fn: function (){
  3092. var self=this;
  3093. return smalltalk.withContext(function($ctx1) { return false;
  3094. }, function($ctx1) {$ctx1.fill(self,"notNil",{}, smalltalk.UndefinedObject)})}
  3095. }),
  3096. smalltalk.UndefinedObject);
  3097. smalltalk.addMethod(
  3098. "_printString",
  3099. smalltalk.method({
  3100. selector: "printString",
  3101. fn: function (){
  3102. var self=this;
  3103. return smalltalk.withContext(function($ctx1) { return "nil";
  3104. }, function($ctx1) {$ctx1.fill(self,"printString",{}, smalltalk.UndefinedObject)})}
  3105. }),
  3106. smalltalk.UndefinedObject);
  3107. smalltalk.addMethod(
  3108. "_shallowCopy",
  3109. smalltalk.method({
  3110. selector: "shallowCopy",
  3111. fn: function (){
  3112. var self=this;
  3113. return smalltalk.withContext(function($ctx1) { var $1;
  3114. $1=self;
  3115. return $1;
  3116. }, function($ctx1) {$ctx1.fill(self,"shallowCopy",{}, smalltalk.UndefinedObject)})}
  3117. }),
  3118. smalltalk.UndefinedObject);
  3119. smalltalk.addMethod(
  3120. "_subclass_instanceVariableNames_",
  3121. smalltalk.method({
  3122. selector: "subclass:instanceVariableNames:",
  3123. fn: function (aString,anotherString){
  3124. var self=this;
  3125. return smalltalk.withContext(function($ctx1) { var $1;
  3126. $1=_st(self)._subclass_instanceVariableNames_package_(aString,anotherString,nil);
  3127. return $1;
  3128. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:",{aString:aString,anotherString:anotherString}, smalltalk.UndefinedObject)})}
  3129. }),
  3130. smalltalk.UndefinedObject);
  3131. smalltalk.addMethod(
  3132. "_subclass_instanceVariableNames_category_",
  3133. smalltalk.method({
  3134. selector: "subclass:instanceVariableNames:category:",
  3135. fn: function (aString,aString2,aString3){
  3136. var self=this;
  3137. return smalltalk.withContext(function($ctx1) { var $1;
  3138. _st(self)._deprecatedAPI();
  3139. $1=_st(self)._subclass_instanceVariableNames_package_(aString,aString2,aString3);
  3140. return $1;
  3141. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:category:",{aString:aString,aString2:aString2,aString3:aString3}, smalltalk.UndefinedObject)})}
  3142. }),
  3143. smalltalk.UndefinedObject);
  3144. smalltalk.addMethod(
  3145. "_subclass_instanceVariableNames_package_",
  3146. smalltalk.method({
  3147. selector: "subclass:instanceVariableNames:package:",
  3148. fn: function (aString,aString2,aString3){
  3149. var self=this;
  3150. return smalltalk.withContext(function($ctx1) { var $1;
  3151. $1=_st(_st((smalltalk.ClassBuilder || ClassBuilder))._new())._superclass_subclass_instanceVariableNames_package_(self,aString,aString2,aString3);
  3152. return $1;
  3153. }, function($ctx1) {$ctx1.fill(self,"subclass:instanceVariableNames:package:",{aString:aString,aString2:aString2,aString3:aString3}, smalltalk.UndefinedObject)})}
  3154. }),
  3155. smalltalk.UndefinedObject);
  3156. smalltalk.addMethod(
  3157. "_new",
  3158. smalltalk.method({
  3159. selector: "new",
  3160. fn: function (){
  3161. var self=this;
  3162. return smalltalk.withContext(function($ctx1) { _st(self)._error_("You cannot create new instances of UndefinedObject. Use nil");
  3163. return self}, function($ctx1) {$ctx1.fill(self,"new",{}, smalltalk.UndefinedObject.klass)})}
  3164. }),
  3165. smalltalk.UndefinedObject.klass);
  3166. smalltalk.addClass('[object Object]', smalltalk.nil, [], 'Kernel-Objects');