IDE.js 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405
  1. smalltalk.addClass('TabManager', smalltalk.Widget, ['selectedTab', 'tabs', 'opened', 'ul'], 'IDE');
  2. smalltalk.addMethod(
  3. '_tabs',
  4. smalltalk.method({
  5. selector: 'tabs',
  6. category: 'accessing',
  7. fn: function (){
  8. var self=this;
  9. return smalltalk.send(self['@tabs'], "_ifNil_", [(function(){return self['@tabs']=smalltalk.send(smalltalk.Array, "_new", []);})]);
  10. return self;},
  11. source: unescape('tabs%0A%20%20%20%20%5Etabs%20ifNil%3A%20%5Btabs%20%3A%3D%20Array%20new%5D'),
  12. messageSends: ["ifNil:", "new"],
  13. referencedClasses: [smalltalk.Array]
  14. }),
  15. smalltalk.TabManager);
  16. smalltalk.addMethod(
  17. '_updateBodyMargin',
  18. smalltalk.method({
  19. selector: 'updateBodyMargin',
  20. category: 'actions',
  21. fn: function (){
  22. var self=this;
  23. smalltalk.send(self, "_setBodyMargin_", [smalltalk.send(smalltalk.send(smalltalk.send(unescape("%23jtalk"), "_asJQuery", []), "_height", []), "__plus", [(27)])]);
  24. return self;},
  25. source: unescape('updateBodyMargin%0A%20%20%20%20self%20setBodyMargin%3A%20%27%23jtalk%27%20asJQuery%20height%20+%2027'),
  26. messageSends: ["setBodyMargin:", unescape("+"), "height", "asJQuery"],
  27. referencedClasses: []
  28. }),
  29. smalltalk.TabManager);
  30. smalltalk.addMethod(
  31. '_updatePosition',
  32. smalltalk.method({
  33. selector: 'updatePosition',
  34. category: 'actions',
  35. fn: function (){
  36. var self=this;
  37. jQuery('#jtalk').css('top', '').css('bottom', '27px');
  38. return self;},
  39. source: unescape('updatePosition%0A%20%20%20%20%3CjQuery%28%27%23jtalk%27%29.css%28%27top%27%2C%20%27%27%29.css%28%27bottom%27%2C%20%2727px%27%29%3E'),
  40. messageSends: [],
  41. referencedClasses: []
  42. }),
  43. smalltalk.TabManager);
  44. smalltalk.addMethod(
  45. '_removeBodyMargin',
  46. smalltalk.method({
  47. selector: 'removeBodyMargin',
  48. category: 'actions',
  49. fn: function (){
  50. var self=this;
  51. smalltalk.send(self, "_setBodyMargin_", [(0)]);
  52. return self;},
  53. source: unescape('removeBodyMargin%0A%20%20%20%20self%20setBodyMargin%3A%200'),
  54. messageSends: ["setBodyMargin:"],
  55. referencedClasses: []
  56. }),
  57. smalltalk.TabManager);
  58. smalltalk.addMethod(
  59. '_setBodyMargin_',
  60. smalltalk.method({
  61. selector: 'setBodyMargin:',
  62. category: 'actions',
  63. fn: function (anInteger){
  64. var self=this;
  65. smalltalk.send(smalltalk.send(".jtalkBody", "_asJQuery", []), "_cssAt_put_", [unescape("margin-bottom"), smalltalk.send(smalltalk.send(anInteger, "_asString", []), "__comma", ["px"])]);
  66. return self;},
  67. source: unescape('setBodyMargin%3A%20anInteger%0A%20%20%20%20%27.jtalkBody%27%20asJQuery%20cssAt%3A%20%27margin-bottom%27%20put%3A%20anInteger%20asString%2C%20%27px%27'),
  68. messageSends: ["cssAt:put:", "asJQuery", unescape("%2C"), "asString"],
  69. referencedClasses: []
  70. }),
  71. smalltalk.TabManager);
  72. smalltalk.addMethod(
  73. '_onResize_',
  74. smalltalk.method({
  75. selector: 'onResize:',
  76. category: 'actions',
  77. fn: function (aBlock){
  78. var self=this;
  79. jQuery('#jtalk').resizable({
  80. handles: 'n',
  81. resize: aBlock,
  82. minHeight: 230
  83. });
  84. return self;},
  85. source: unescape('onResize%3A%20aBlock%0A%20%20%20%20%3CjQuery%28%27%23jtalk%27%29.resizable%28%7B%0A%09handles%3A%20%27n%27%2C%20%0A%09resize%3A%20aBlock%2C%0A%09minHeight%3A%20230%0A%7D%29%3E'),
  86. messageSends: [],
  87. referencedClasses: []
  88. }),
  89. smalltalk.TabManager);
  90. smalltalk.addMethod(
  91. '_onWindowResize_',
  92. smalltalk.method({
  93. selector: 'onWindowResize:',
  94. category: 'actions',
  95. fn: function (aBlock){
  96. var self=this;
  97. jQuery(window).resize(aBlock);
  98. return self;},
  99. source: unescape('onWindowResize%3A%20aBlock%0A%20%20%20%20%3CjQuery%28window%29.resize%28aBlock%29%3E'),
  100. messageSends: [],
  101. referencedClasses: []
  102. }),
  103. smalltalk.TabManager);
  104. smalltalk.addMethod(
  105. '_open',
  106. smalltalk.method({
  107. selector: 'open',
  108. category: 'actions',
  109. fn: function (){
  110. var self=this;
  111. smalltalk.send(self['@opened'], "_ifFalse_", [(function(){smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_addClass_", ["jtalkBody"]);smalltalk.send(smalltalk.send(unescape("%23jtalk"), "_asJQuery", []), "_show", []);smalltalk.send(smalltalk.send(self['@ul'], "_asJQuery", []), "_show", []);smalltalk.send(self, "_updateBodyMargin", []);smalltalk.send(self['@selectedTab'], "_show", []);return self['@opened']=true;})]);
  112. return self;},
  113. source: unescape('open%0A%20%20%20%20opened%20ifFalse%3A%20%5B%0A%09%27body%27%20asJQuery%20addClass%3A%20%27jtalkBody%27.%0A%09%27%23jtalk%27%20asJQuery%20show.%0A%09ul%20asJQuery%20show.%0A%09self%20updateBodyMargin.%0A%09selectedTab%20show.%0A%09opened%20%3A%3D%20true%5D'),
  114. messageSends: ["ifFalse:", "addClass:", "asJQuery", "show", "updateBodyMargin"],
  115. referencedClasses: []
  116. }),
  117. smalltalk.TabManager);
  118. smalltalk.addMethod(
  119. '_close',
  120. smalltalk.method({
  121. selector: 'close',
  122. category: 'actions',
  123. fn: function (){
  124. var self=this;
  125. smalltalk.send(self['@opened'], "_ifTrue_", [(function(){smalltalk.send(smalltalk.send(unescape("%23jtalk"), "_asJQuery", []), "_hide", []);smalltalk.send(smalltalk.send(self['@ul'], "_asJQuery", []), "_hide", []);smalltalk.send(self['@selectedTab'], "_hide", []);smalltalk.send(self, "_removeBodyMargin", []);smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_removeClass_", ["jtalkBody"]);return self['@opened']=false;})]);
  126. return self;},
  127. source: unescape('close%0A%20%20%20%20opened%20ifTrue%3A%20%5B%0A%09%27%23jtalk%27%20asJQuery%20hide.%0A%09ul%20asJQuery%20hide.%0A%09selectedTab%20hide.%0A%09self%20removeBodyMargin.%0A%09%27body%27%20asJQuery%20removeClass%3A%20%27jtalkBody%27.%0A%09opened%20%3A%3D%20false%5D'),
  128. messageSends: ["ifTrue:", "hide", "asJQuery", "removeBodyMargin", "removeClass:"],
  129. referencedClasses: []
  130. }),
  131. smalltalk.TabManager);
  132. smalltalk.addMethod(
  133. '_newBrowserTab',
  134. smalltalk.method({
  135. selector: 'newBrowserTab',
  136. category: 'actions',
  137. fn: function (){
  138. var self=this;
  139. smalltalk.send(smalltalk.Browser, "_open", []);
  140. return self;},
  141. source: unescape('newBrowserTab%0A%20%20%20%20Browser%20open'),
  142. messageSends: ["open"],
  143. referencedClasses: []
  144. }),
  145. smalltalk.TabManager);
  146. smalltalk.addMethod(
  147. '_selectTab_',
  148. smalltalk.method({
  149. selector: 'selectTab:',
  150. category: 'actions',
  151. fn: function (aWidget){
  152. var self=this;
  153. smalltalk.send(self, "_open", []);
  154. self['@selectedTab']=aWidget;
  155. smalltalk.send(smalltalk.send(self, "_tabs", []), "_do_", [(function(each){return smalltalk.send(each, "_hide", []);})]);
  156. smalltalk.send(aWidget, "_show", []);
  157. smalltalk.send(self, "_update", []);
  158. return self;},
  159. source: unescape('selectTab%3A%20aWidget%0A%20%20%20%20self%20open.%0A%20%20%20%20selectedTab%20%3A%3D%20aWidget.%0A%20%20%20%20self%20tabs%20do%3A%20%5B%3Aeach%20%7C%0A%09each%20hide%5D.%0A%20%20%20%20aWidget%20show.%0A%09%0A%20%20%20%20self%20update'),
  160. messageSends: ["open", "do:", "tabs", "hide", "show", "update"],
  161. referencedClasses: []
  162. }),
  163. smalltalk.TabManager);
  164. smalltalk.addMethod(
  165. '_closeTab_',
  166. smalltalk.method({
  167. selector: 'closeTab:',
  168. category: 'actions',
  169. fn: function (aWidget){
  170. var self=this;
  171. smalltalk.send(self, "_removeTab_", [aWidget]);
  172. smalltalk.send(self, "_selectTab_", [smalltalk.send(smalltalk.send(self, "_tabs", []), "_last", [])]);
  173. smalltalk.send(aWidget, "_remove", []);
  174. smalltalk.send(self, "_update", []);
  175. return self;},
  176. source: unescape('closeTab%3A%20aWidget%0A%20%20%20%20self%20removeTab%3A%20aWidget.%0A%20%20%20%20self%20selectTab%3A%20self%20tabs%20last.%0A%20%20%20%20aWidget%20remove.%0A%20%20%20%20self%20update'),
  177. messageSends: ["removeTab:", "selectTab:", "last", "tabs", "remove", "update"],
  178. referencedClasses: []
  179. }),
  180. smalltalk.TabManager);
  181. smalltalk.addMethod(
  182. '_addTab_',
  183. smalltalk.method({
  184. selector: 'addTab:',
  185. category: 'adding/Removing',
  186. fn: function (aWidget){
  187. var self=this;
  188. smalltalk.send(smalltalk.send(self, "_tabs", []), "_add_", [aWidget]);
  189. smalltalk.send(smalltalk.send(unescape("%23jtalk"), "_asJQuery", []), "_append_", [aWidget]);
  190. smalltalk.send(aWidget, "_hide", []);
  191. return self;},
  192. source: unescape('addTab%3A%20aWidget%0A%20%20%20%20self%20tabs%20add%3A%20aWidget.%0A%20%20%20%20%27%23jtalk%27%20asJQuery%20append%3A%20aWidget.%0A%20%20%20%20aWidget%20hide'),
  193. messageSends: ["add:", "tabs", "append:", "asJQuery", "hide"],
  194. referencedClasses: []
  195. }),
  196. smalltalk.TabManager);
  197. smalltalk.addMethod(
  198. '_removeTab_',
  199. smalltalk.method({
  200. selector: 'removeTab:',
  201. category: 'adding/Removing',
  202. fn: function (aWidget){
  203. var self=this;
  204. smalltalk.send(smalltalk.send(self, "_tabs", []), "_remove_", [aWidget]);
  205. smalltalk.send(self, "_update", []);
  206. return self;},
  207. source: unescape('removeTab%3A%20aWidget%0A%20%20%20%20self%20tabs%20remove%3A%20aWidget.%0A%20%20%20%20self%20update'),
  208. messageSends: ["remove:", "tabs", "update"],
  209. referencedClasses: []
  210. }),
  211. smalltalk.TabManager);
  212. smalltalk.addMethod(
  213. '_initialize',
  214. smalltalk.method({
  215. selector: 'initialize',
  216. category: 'initialization',
  217. fn: function (){
  218. var self=this;
  219. smalltalk.send(self, "_initialize", [], smalltalk.Widget);
  220. self['@opened']=true;
  221. (function($rec){smalltalk.send($rec, "_append_", [self]);smalltalk.send($rec, "_append_", [(function(html){return smalltalk.send(smalltalk.send(html, "_div", []), "_id_", ["jtalk"]);})]);return smalltalk.send($rec, "_addClass_", ["jtalkBody"]);})(smalltalk.send("body", "_asJQuery", []));
  222. (function($rec){smalltalk.send($rec, "_addTab_", [smalltalk.send(smalltalk.Transcript, "_current", [])]);return smalltalk.send($rec, "_addTab_", [smalltalk.send(smalltalk.Workspace, "_new", [])]);})(self);
  223. smalltalk.send(self, "_selectTab_", [smalltalk.send(smalltalk.send(self, "_tabs", []), "_last", [])]);
  224. (function($rec){smalltalk.send($rec, "_onResize_", [(function(){return (function($rec){smalltalk.send($rec, "_updateBodyMargin", []);return smalltalk.send($rec, "_updatePosition", []);})(self);})]);return smalltalk.send($rec, "_onWindowResize_", [(function(){return smalltalk.send(self, "_updatePosition", []);})]);})(self);
  225. return self;},
  226. source: unescape('initialize%0A%20%20%20%20super%20initialize.%0A%20%20%20%20opened%20%3A%3D%20true.%0A%20%20%20%20%27body%27%20asJQuery%20%0A%09append%3A%20self%3B%0A%09append%3A%20%5B%3Ahtml%20%7C%20html%20div%20id%3A%20%27jtalk%27%5D%3B%0A%09addClass%3A%20%27jtalkBody%27.%0A%20%20%20%20self%20%0A%09addTab%3A%20Transcript%20current%3B%0A%09addTab%3A%20Workspace%20new.%0A%20%20%20%20self%20selectTab%3A%20self%20tabs%20last.%0A%20%20%20%20self%20%0A%09onResize%3A%20%5Bself%20updateBodyMargin%3B%20updatePosition%5D%3B%0A%09onWindowResize%3A%20%5Bself%20updatePosition%5D'),
  227. messageSends: ["initialize", "append:", "id:", "div", "addClass:", "asJQuery", "addTab:", "current", "new", "selectTab:", "last", "tabs", "onResize:", "updateBodyMargin", "updatePosition", "onWindowResize:"],
  228. referencedClasses: []
  229. }),
  230. smalltalk.TabManager);
  231. smalltalk.addMethod(
  232. '_renderOn_',
  233. smalltalk.method({
  234. selector: 'renderOn:',
  235. category: 'rendering',
  236. fn: function (html){
  237. var self=this;
  238. self['@ul']=(function($rec){smalltalk.send($rec, "_id_", ["jtalkTabs"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_ul", []));
  239. smalltalk.send(self, "_renderTabs", []);
  240. return self;},
  241. source: unescape('renderOn%3A%20html%0A%09ul%20%3A%3D%20html%20ul%0A%09%09id%3A%20%27jtalkTabs%27%3B%0A%09%09yourself.%0A%09self%20renderTabs'),
  242. messageSends: ["id:", "yourself", "ul", "renderTabs"],
  243. referencedClasses: []
  244. }),
  245. smalltalk.TabManager);
  246. smalltalk.addMethod(
  247. '_renderTabFor_on_',
  248. smalltalk.method({
  249. selector: 'renderTabFor:on:',
  250. category: 'rendering',
  251. fn: function (aWidget, html){
  252. var self=this;
  253. var li=nil;
  254. li=smalltalk.send(html, "_li", []);
  255. smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", [aWidget]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);
  256. smalltalk.send(li, "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(aWidget, "_label", [])]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectTab_", [aWidget]);})]);})(smalltalk.send(html, "_span", []));return smalltalk.send(smalltalk.send(aWidget, "_canBeClosed", []), "_ifTrue_", [(function(){return (function($rec){smalltalk.send($rec, "_class_", ["close"]);smalltalk.send($rec, "_with_", ["x"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_closeTab_", [aWidget]);})]);})(smalltalk.send(html, "_span", []));})]);})]);
  257. return self;},
  258. source: unescape('renderTabFor%3A%20aWidget%20on%3A%20html%0A%20%20%20%20%7C%20li%20%7C%0A%20%20%20%20li%20%3A%3D%20html%20li.%0A%20%20%20%20selectedTab%20%3D%20aWidget%20ifTrue%3A%20%5B%0A%09li%20class%3A%20%27selected%27%5D.%0A%20%20%20%20li%20with%3A%20%5B%0A%09html%20span%0A%09%20%20%20%20with%3A%20aWidget%20label%3B%0A%09%20%20%20%20onClick%3A%20%5Bself%20selectTab%3A%20aWidget%5D.%0A%09aWidget%20canBeClosed%20ifTrue%3A%20%5B%0A%09%20%20%20%20html%20span%20%0A%09%09class%3A%20%27close%27%3B%0A%09%09with%3A%20%27x%27%3B%0A%09%09onClick%3A%20%5Bself%20closeTab%3A%20aWidget%5D%5D%5D'),
  259. messageSends: ["li", "ifTrue:", unescape("%3D"), "class:", "with:", "label", "onClick:", "selectTab:", "span", "canBeClosed", "closeTab:"],
  260. referencedClasses: []
  261. }),
  262. smalltalk.TabManager);
  263. smalltalk.addMethod(
  264. '_renderTabs',
  265. smalltalk.method({
  266. selector: 'renderTabs',
  267. category: 'rendering',
  268. fn: function (){
  269. var self=this;
  270. smalltalk.send(self['@ul'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["closeAll"]);smalltalk.send($rec, "_with_", ["x"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_close", []);})]);})(smalltalk.send(html, "_li", []));smalltalk.send(smalltalk.send(self, "_tabs", []), "_do_", [(function(each){return smalltalk.send(self, "_renderTabFor_on_", [each, html]);})]);return (function($rec){smalltalk.send($rec, "_class_", ["newtab"]);smalltalk.send($rec, "_with_", [unescape("%20+%20")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_newBrowserTab", []);})]);})(smalltalk.send(html, "_li", []));})]);
  271. return self;},
  272. source: unescape('renderTabs%0A%09ul%20contents%3A%20%5B%3Ahtml%20%7C%0A%09%20%20%20%20html%20li%20%0A%09%09class%3A%20%27closeAll%27%3B%0A%09%09with%3A%20%27x%27%3B%0A%09%09onClick%3A%20%5Bself%20close%5D.%0A%09%20%20%20%20self%20tabs%20do%3A%20%5B%3Aeach%20%7C%0A%09%09self%20renderTabFor%3A%20each%20on%3A%20html%5D.%0A%09%20%20%20%20html%20li%0A%09%09class%3A%20%27newtab%27%3B%0A%09%09with%3A%20%27%20+%20%27%3B%0A%09%09onClick%3A%20%5Bself%20newBrowserTab%5D%5D'),
  273. messageSends: ["contents:", "class:", "with:", "onClick:", "close", "li", "do:", "tabs", "renderTabFor:on:", "newBrowserTab"],
  274. referencedClasses: []
  275. }),
  276. smalltalk.TabManager);
  277. smalltalk.addMethod(
  278. '_update',
  279. smalltalk.method({
  280. selector: 'update',
  281. category: 'updating',
  282. fn: function (){
  283. var self=this;
  284. smalltalk.send(self, "_renderTabs", []);
  285. return self;},
  286. source: unescape('update%0A%09self%20renderTabs'),
  287. messageSends: ["renderTabs"],
  288. referencedClasses: []
  289. }),
  290. smalltalk.TabManager);
  291. smalltalk.TabManager.klass.iVarNames = ['current'];
  292. smalltalk.addMethod(
  293. '_current',
  294. smalltalk.method({
  295. selector: 'current',
  296. category: 'instance creation',
  297. fn: function (){
  298. var self=this;
  299. return smalltalk.send(self['@current'], "_ifNil_", [(function(){return self['@current']=smalltalk.send(self, "_new", [], smalltalk.Widget.klass);})]);
  300. return self;},
  301. source: unescape('current%0A%20%20%20%20%5Ecurrent%20ifNil%3A%20%5Bcurrent%20%3A%3D%20super%20new%5D'),
  302. messageSends: ["ifNil:", "new"],
  303. referencedClasses: []
  304. }),
  305. smalltalk.TabManager.klass);
  306. smalltalk.addMethod(
  307. '_new',
  308. smalltalk.method({
  309. selector: 'new',
  310. category: 'instance creation',
  311. fn: function (){
  312. var self=this;
  313. smalltalk.send(self, "_shouldNotImplement", []);
  314. return self;},
  315. source: unescape('new%0A%20%20%20%20self%20shouldNotImplement'),
  316. messageSends: ["shouldNotImplement"],
  317. referencedClasses: []
  318. }),
  319. smalltalk.TabManager.klass);
  320. smalltalk.addClass('TabWidget', smalltalk.Widget, ['div'], 'IDE');
  321. smalltalk.addMethod(
  322. '_label',
  323. smalltalk.method({
  324. selector: 'label',
  325. category: 'accessing',
  326. fn: function (){
  327. var self=this;
  328. smalltalk.send(self, "_subclassResponsibility", []);
  329. return self;},
  330. source: unescape('label%0A%20%20%20%20self%20subclassResponsibility'),
  331. messageSends: ["subclassResponsibility"],
  332. referencedClasses: []
  333. }),
  334. smalltalk.TabWidget);
  335. smalltalk.addMethod(
  336. '_open',
  337. smalltalk.method({
  338. selector: 'open',
  339. category: 'actions',
  340. fn: function (){
  341. var self=this;
  342. smalltalk.send(smalltalk.send(smalltalk.TabManager, "_current", []), "_addTab_", [self]);
  343. smalltalk.send(smalltalk.send(smalltalk.TabManager, "_current", []), "_selectTab_", [self]);
  344. return self;},
  345. source: unescape('open%0A%20%20%20%20TabManager%20current%20addTab%3A%20self.%0A%20%20%20%20TabManager%20current%20selectTab%3A%20self'),
  346. messageSends: ["addTab:", "current", "selectTab:"],
  347. referencedClasses: [smalltalk.TabManager]
  348. }),
  349. smalltalk.TabWidget);
  350. smalltalk.addMethod(
  351. '_show',
  352. smalltalk.method({
  353. selector: 'show',
  354. category: 'actions',
  355. fn: function (){
  356. var self=this;
  357. smalltalk.send(smalltalk.send(self['@div'], "_asJQuery", []), "_show", []);
  358. return self;},
  359. source: unescape('show%0A%09div%20asJQuery%20show'),
  360. messageSends: ["show", "asJQuery"],
  361. referencedClasses: []
  362. }),
  363. smalltalk.TabWidget);
  364. smalltalk.addMethod(
  365. '_hide',
  366. smalltalk.method({
  367. selector: 'hide',
  368. category: 'actions',
  369. fn: function (){
  370. var self=this;
  371. smalltalk.send(smalltalk.send(self['@div'], "_asJQuery", []), "_hide", []);
  372. return self;},
  373. source: unescape('hide%0A%09div%20asJQuery%20hide'),
  374. messageSends: ["hide", "asJQuery"],
  375. referencedClasses: []
  376. }),
  377. smalltalk.TabWidget);
  378. smalltalk.addMethod(
  379. '_remove',
  380. smalltalk.method({
  381. selector: 'remove',
  382. category: 'actions',
  383. fn: function (){
  384. var self=this;
  385. smalltalk.send(smalltalk.send(self['@div'], "_asJQuery", []), "_remove", []);
  386. return self;},
  387. source: unescape('remove%0A%09div%20asJQuery%20remove'),
  388. messageSends: ["remove", "asJQuery"],
  389. referencedClasses: []
  390. }),
  391. smalltalk.TabWidget);
  392. smalltalk.addMethod(
  393. '_renderOn_',
  394. smalltalk.method({
  395. selector: 'renderOn:',
  396. category: 'rendering',
  397. fn: function (html){
  398. var self=this;
  399. self['@div']=(function($rec){smalltalk.send($rec, "_class_", ["jtalkTool"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_div", []));
  400. smalltalk.send(self, "_renderTab", []);
  401. return self;},
  402. source: unescape('renderOn%3A%20html%0A%09div%20%3A%3D%20html%20div%0A%09%09class%3A%20%27jtalkTool%27%3B%0A%09%09yourself.%0A%09self%20renderTab'),
  403. messageSends: ["class:", "yourself", "div", "renderTab"],
  404. referencedClasses: []
  405. }),
  406. smalltalk.TabWidget);
  407. smalltalk.addMethod(
  408. '_renderBoxOn_',
  409. smalltalk.method({
  410. selector: 'renderBoxOn:',
  411. category: 'rendering',
  412. fn: function (html){
  413. var self=this;
  414. return self;},
  415. source: unescape('renderBoxOn%3A%20html'),
  416. messageSends: [],
  417. referencedClasses: []
  418. }),
  419. smalltalk.TabWidget);
  420. smalltalk.addMethod(
  421. '_renderButtonsOn_',
  422. smalltalk.method({
  423. selector: 'renderButtonsOn:',
  424. category: 'rendering',
  425. fn: function (html){
  426. var self=this;
  427. return self;},
  428. source: unescape('renderButtonsOn%3A%20html'),
  429. messageSends: [],
  430. referencedClasses: []
  431. }),
  432. smalltalk.TabWidget);
  433. smalltalk.addMethod(
  434. '_update',
  435. smalltalk.method({
  436. selector: 'update',
  437. category: 'rendering',
  438. fn: function (){
  439. var self=this;
  440. smalltalk.send(self, "_renderTab", []);
  441. return self;},
  442. source: unescape('update%0A%09self%20renderTab'),
  443. messageSends: ["renderTab"],
  444. referencedClasses: []
  445. }),
  446. smalltalk.TabWidget);
  447. smalltalk.addMethod(
  448. '_renderTab',
  449. smalltalk.method({
  450. selector: 'renderTab',
  451. category: 'rendering',
  452. fn: function (){
  453. var self=this;
  454. smalltalk.send(self['@div'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["jt_box"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderBoxOn_", [html]);})]);})(smalltalk.send(html, "_div", []));return (function($rec){smalltalk.send($rec, "_class_", ["jt_buttons"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderButtonsOn_", [html]);})]);})(smalltalk.send(html, "_div", []));})]);
  455. return self;},
  456. source: unescape('renderTab%0A%09div%20contents%3A%20%5B%3Ahtml%20%7C%0A%09%20%20%20%20html%20div%0A%09%09class%3A%20%27jt_box%27%3B%0A%09%09with%3A%20%5Bself%20renderBoxOn%3A%20html%5D.%0A%09%20%20%20%20html%20div%0A%09%09class%3A%20%27jt_buttons%27%3B%0A%09%09with%3A%20%5Bself%20renderButtonsOn%3A%20html%5D%5D'),
  457. messageSends: ["contents:", "class:", "with:", "renderBoxOn:", "div", "renderButtonsOn:"],
  458. referencedClasses: []
  459. }),
  460. smalltalk.TabWidget);
  461. smalltalk.addMethod(
  462. '_canBeClosed',
  463. smalltalk.method({
  464. selector: 'canBeClosed',
  465. category: 'testing',
  466. fn: function (){
  467. var self=this;
  468. return false;
  469. return self;},
  470. source: unescape('canBeClosed%0A%20%20%20%20%5Efalse'),
  471. messageSends: [],
  472. referencedClasses: []
  473. }),
  474. smalltalk.TabWidget);
  475. smalltalk.addMethod(
  476. '_open',
  477. smalltalk.method({
  478. selector: 'open',
  479. category: 'instance creation',
  480. fn: function (){
  481. var self=this;
  482. return smalltalk.send(smalltalk.send(self, "_new", []), "_open", []);
  483. return self;},
  484. source: unescape('open%0A%20%20%20%20%5Eself%20new%20open'),
  485. messageSends: ["open", "new"],
  486. referencedClasses: []
  487. }),
  488. smalltalk.TabWidget.klass);
  489. smalltalk.addClass('Workspace', smalltalk.TabWidget, ['sourceArea'], 'IDE');
  490. smalltalk.addMethod(
  491. '_label',
  492. smalltalk.method({
  493. selector: 'label',
  494. category: 'accessing',
  495. fn: function (){
  496. var self=this;
  497. return unescape("%5BWorkspace%5D");
  498. return self;},
  499. source: unescape('label%0A%20%20%20%20%5E%27%5BWorkspace%5D%27'),
  500. messageSends: [],
  501. referencedClasses: []
  502. }),
  503. smalltalk.Workspace);
  504. smalltalk.addMethod(
  505. '_clearWorkspace',
  506. smalltalk.method({
  507. selector: 'clearWorkspace',
  508. category: 'actions',
  509. fn: function (){
  510. var self=this;
  511. smalltalk.send(self['@sourceArea'], "_clear", []);
  512. return self;},
  513. source: unescape('clearWorkspace%0A%20%20%20%20sourceArea%20clear'),
  514. messageSends: ["clear"],
  515. referencedClasses: []
  516. }),
  517. smalltalk.Workspace);
  518. smalltalk.addMethod(
  519. '_doIt',
  520. smalltalk.method({
  521. selector: 'doIt',
  522. category: 'actions',
  523. fn: function (){
  524. var self=this;
  525. smalltalk.send(self['@sourceArea'], "_doIt", []);
  526. return self;},
  527. source: unescape('doIt%0A%20%20%20sourceArea%20doIt'),
  528. messageSends: ["doIt"],
  529. referencedClasses: []
  530. }),
  531. smalltalk.Workspace);
  532. smalltalk.addMethod(
  533. '_printIt',
  534. smalltalk.method({
  535. selector: 'printIt',
  536. category: 'actions',
  537. fn: function (){
  538. var self=this;
  539. smalltalk.send(self['@sourceArea'], "_printIt", []);
  540. return self;},
  541. source: unescape('printIt%0A%09sourceArea%20printIt'),
  542. messageSends: ["printIt"],
  543. referencedClasses: []
  544. }),
  545. smalltalk.Workspace);
  546. smalltalk.addMethod(
  547. '_inspectIt',
  548. smalltalk.method({
  549. selector: 'inspectIt',
  550. category: 'actions',
  551. fn: function (){
  552. var self=this;
  553. smalltalk.send(self['@sourceArea'], "_inspectIt", []);
  554. return self;},
  555. source: unescape('inspectIt%0A%20%20%20%20sourceArea%20inspectIt'),
  556. messageSends: ["inspectIt"],
  557. referencedClasses: []
  558. }),
  559. smalltalk.Workspace);
  560. smalltalk.addMethod(
  561. '_renderBoxOn_',
  562. smalltalk.method({
  563. selector: 'renderBoxOn:',
  564. category: 'rendering',
  565. fn: function (html){
  566. var self=this;
  567. self['@sourceArea']=smalltalk.send(smalltalk.SourceArea, "_new", []);
  568. smalltalk.send(self['@sourceArea'], "_renderOn_", [html]);
  569. return self;},
  570. source: unescape('renderBoxOn%3A%20html%0A%20%20%20%20sourceArea%20%3A%3D%20SourceArea%20new.%0A%20%20%20%20sourceArea%20renderOn%3A%20html'),
  571. messageSends: ["new", "renderOn:"],
  572. referencedClasses: []
  573. }),
  574. smalltalk.Workspace);
  575. smalltalk.addMethod(
  576. '_renderButtonsOn_',
  577. smalltalk.method({
  578. selector: 'renderButtonsOn:',
  579. category: 'rendering',
  580. fn: function (html){
  581. var self=this;
  582. (function($rec){smalltalk.send($rec, "_with_", ["DoIt"]);smalltalk.send($rec, "_title_", [unescape("ctrl+d")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_doIt", []);})]);})(smalltalk.send(html, "_button", []));
  583. (function($rec){smalltalk.send($rec, "_with_", ["PrintIt"]);smalltalk.send($rec, "_title_", [unescape("ctrl+p")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_printIt", []);})]);})(smalltalk.send(html, "_button", []));
  584. (function($rec){smalltalk.send($rec, "_with_", ["InspectIt"]);smalltalk.send($rec, "_title_", [unescape("ctrl+i")]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_inspectIt", []);})]);})(smalltalk.send(html, "_button", []));
  585. (function($rec){smalltalk.send($rec, "_with_", ["Clear workspace"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_clearWorkspace", []);})]);})(smalltalk.send(html, "_button", []));
  586. return self;},
  587. source: unescape('renderButtonsOn%3A%20html%0A%20%20%20%20html%20button%0A%09with%3A%20%27DoIt%27%3B%0A%09title%3A%20%27ctrl+d%27%3B%0A%09onClick%3A%20%5Bself%20doIt%5D.%0A%20%20%20%20html%20button%0A%09with%3A%20%27PrintIt%27%3B%0A%09title%3A%20%27ctrl+p%27%3B%0A%09onClick%3A%20%5Bself%20printIt%5D.%0A%20%20%20%20html%20button%0A%09with%3A%20%27InspectIt%27%3B%0A%09title%3A%20%27ctrl+i%27%3B%0A%09onClick%3A%20%5Bself%20inspectIt%5D.%0A%20%20%20%20html%20button%0A%09with%3A%20%27Clear%20workspace%27%3B%0A%09onClick%3A%20%5Bself%20clearWorkspace%5D'),
  588. messageSends: ["with:", "title:", "onClick:", "doIt", "button", "printIt", "inspectIt", "clearWorkspace"],
  589. referencedClasses: []
  590. }),
  591. smalltalk.Workspace);
  592. smalltalk.addClass('Transcript', smalltalk.TabWidget, ['textarea'], 'IDE');
  593. smalltalk.addMethod(
  594. '_label',
  595. smalltalk.method({
  596. selector: 'label',
  597. category: 'accessing',
  598. fn: function (){
  599. var self=this;
  600. return unescape("%5BTranscript%5D");
  601. return self;},
  602. source: unescape('label%0A%20%20%20%20%5E%27%5BTranscript%5D%27'),
  603. messageSends: [],
  604. referencedClasses: []
  605. }),
  606. smalltalk.Transcript);
  607. smalltalk.addMethod(
  608. '_show_',
  609. smalltalk.method({
  610. selector: 'show:',
  611. category: 'actions',
  612. fn: function (anObject){
  613. var self=this;
  614. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val_", [smalltalk.send(smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []), "__comma", [smalltalk.send(anObject, "_asString", [])])]);
  615. return self;},
  616. source: unescape('show%3A%20anObject%0A%20%20%20%20textarea%20asJQuery%20val%3A%20textarea%20asJQuery%20val%2C%20anObject%20asString.'),
  617. messageSends: ["val:", "asJQuery", unescape("%2C"), "val", "asString"],
  618. referencedClasses: []
  619. }),
  620. smalltalk.Transcript);
  621. smalltalk.addMethod(
  622. '_cr',
  623. smalltalk.method({
  624. selector: 'cr',
  625. category: 'actions',
  626. fn: function (){
  627. var self=this;
  628. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val_", [smalltalk.send(smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []), "__comma", [smalltalk.send(smalltalk.String, "_cr", [])])]);
  629. return self;},
  630. source: unescape('cr%0A%20%20%20%20textarea%20asJQuery%20val%3A%20textarea%20asJQuery%20val%2C%20String%20cr.'),
  631. messageSends: ["val:", "asJQuery", unescape("%2C"), "val", "cr"],
  632. referencedClasses: [smalltalk.String]
  633. }),
  634. smalltalk.Transcript);
  635. smalltalk.addMethod(
  636. '_clear',
  637. smalltalk.method({
  638. selector: 'clear',
  639. category: 'actions',
  640. fn: function (){
  641. var self=this;
  642. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val_", [""]);
  643. return self;},
  644. source: unescape('clear%0A%20%20%20%20textarea%20asJQuery%20val%3A%20%27%27'),
  645. messageSends: ["val:", "asJQuery"],
  646. referencedClasses: []
  647. }),
  648. smalltalk.Transcript);
  649. smalltalk.addMethod(
  650. '_renderBoxOn_',
  651. smalltalk.method({
  652. selector: 'renderBoxOn:',
  653. category: 'rendering',
  654. fn: function (html){
  655. var self=this;
  656. self['@textarea']=smalltalk.send(html, "_textarea", []);
  657. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_call_", ["tabby"]);
  658. (function($rec){smalltalk.send($rec, "_class_", ["jt_transcript"]);return smalltalk.send($rec, "_at_put_", ["spellcheck", "false"]);})(self['@textarea']);
  659. return self;},
  660. source: unescape('renderBoxOn%3A%20html%0A%20%20%20%20textarea%20%3A%3D%20html%20textarea.%0A%20%20%20%20textarea%20asJQuery%20call%3A%20%27tabby%27.%0A%20%20%20%20textarea%20%0A%09class%3A%20%27jt_transcript%27%3B%0A%09at%3A%20%27spellcheck%27%20put%3A%20%27false%27'),
  661. messageSends: ["textarea", "call:", "asJQuery", "class:", "at:put:"],
  662. referencedClasses: []
  663. }),
  664. smalltalk.Transcript);
  665. smalltalk.addMethod(
  666. '_renderButtonsOn_',
  667. smalltalk.method({
  668. selector: 'renderButtonsOn:',
  669. category: 'rendering',
  670. fn: function (html){
  671. var self=this;
  672. (function($rec){smalltalk.send($rec, "_with_", ["Clear transcript"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_clear", []);})]);})(smalltalk.send(html, "_button", []));
  673. return self;},
  674. source: unescape('renderButtonsOn%3A%20html%0A%20%20%20%20html%20button%0A%09with%3A%20%27Clear%20transcript%27%3B%0A%09onClick%3A%20%5Bself%20clear%5D'),
  675. messageSends: ["with:", "onClick:", "clear", "button"],
  676. referencedClasses: []
  677. }),
  678. smalltalk.Transcript);
  679. smalltalk.Transcript.klass.iVarNames = ['current'];
  680. smalltalk.addMethod(
  681. '_open',
  682. smalltalk.method({
  683. selector: 'open',
  684. category: 'instance creation',
  685. fn: function (){
  686. var self=this;
  687. smalltalk.send(smalltalk.send(self, "_current", []), "_open", []);
  688. return self;},
  689. source: unescape('open%0A%20%20%20%20self%20current%20open'),
  690. messageSends: ["open", "current"],
  691. referencedClasses: []
  692. }),
  693. smalltalk.Transcript.klass);
  694. smalltalk.addMethod(
  695. '_new',
  696. smalltalk.method({
  697. selector: 'new',
  698. category: 'instance creation',
  699. fn: function (){
  700. var self=this;
  701. smalltalk.send(self, "_shouldNotImplement", []);
  702. return self;},
  703. source: unescape('new%0A%20%20%20%20self%20shouldNotImplement'),
  704. messageSends: ["shouldNotImplement"],
  705. referencedClasses: []
  706. }),
  707. smalltalk.Transcript.klass);
  708. smalltalk.addMethod(
  709. '_current',
  710. smalltalk.method({
  711. selector: 'current',
  712. category: 'instance creation',
  713. fn: function (){
  714. var self=this;
  715. return smalltalk.send(self['@current'], "_ifNil_", [(function(){return self['@current']=smalltalk.send(self, "_new", [], smalltalk.TabWidget.klass);})]);
  716. return self;},
  717. source: unescape('current%0A%20%20%20%20%5Ecurrent%20ifNil%3A%20%5Bcurrent%20%3A%3D%20super%20new%5D'),
  718. messageSends: ["ifNil:", "new"],
  719. referencedClasses: []
  720. }),
  721. smalltalk.Transcript.klass);
  722. smalltalk.addMethod(
  723. '_show_',
  724. smalltalk.method({
  725. selector: 'show:',
  726. category: 'printing',
  727. fn: function (anObject){
  728. var self=this;
  729. smalltalk.send(smalltalk.send(self, "_current", []), "_show_", [anObject]);
  730. return self;},
  731. source: unescape('show%3A%20anObject%0A%20%20%20%20self%20current%20show%3A%20anObject'),
  732. messageSends: ["show:", "current"],
  733. referencedClasses: []
  734. }),
  735. smalltalk.Transcript.klass);
  736. smalltalk.addMethod(
  737. '_cr',
  738. smalltalk.method({
  739. selector: 'cr',
  740. category: 'printing',
  741. fn: function (){
  742. var self=this;
  743. smalltalk.send(smalltalk.send(self, "_current", []), "_show_", [smalltalk.send(smalltalk.String, "_cr", [])]);
  744. return self;},
  745. source: unescape('cr%0A%20%20%20%20self%20current%20show%3A%20String%20cr'),
  746. messageSends: ["show:", "current", "cr"],
  747. referencedClasses: [smalltalk.String]
  748. }),
  749. smalltalk.Transcript.klass);
  750. smalltalk.addMethod(
  751. '_clear',
  752. smalltalk.method({
  753. selector: 'clear',
  754. category: 'printing',
  755. fn: function (){
  756. var self=this;
  757. smalltalk.send(smalltalk.send(self, "_current", []), "_clear", []);
  758. return self;},
  759. source: unescape('clear%0A%20%20%20%20self%20current%20clear'),
  760. messageSends: ["clear", "current"],
  761. referencedClasses: []
  762. }),
  763. smalltalk.Transcript.klass);
  764. smalltalk.addClass('Browser', smalltalk.TabWidget, ['selectedCategory', 'selectedClass', 'selectedProtocol', 'selectedMethod', 'commitButton', 'categoriesList', 'classesList', 'protocolsList', 'methodsList', 'sourceArea', 'tabsList', 'selectedTab', 'saveButton', 'classButtons', 'methodButtons', 'unsavedChanges', 'input'], 'IDE');
  765. smalltalk.addMethod(
  766. '_label',
  767. smalltalk.method({
  768. selector: 'label',
  769. category: 'accessing',
  770. fn: function (){
  771. var self=this;
  772. return smalltalk.send(self['@selectedClass'], "_ifNil_ifNotNil_", [(function(){return unescape("Browser%20%28nil%29");}), (function(){return smalltalk.send(self['@selectedClass'], "_name", []);})]);
  773. return self;},
  774. source: unescape('label%0A%20%20%20%20%5EselectedClass%20%0A%09ifNil%3A%20%5B%27Browser%20%28nil%29%27%5D%0A%09ifNotNil%3A%20%5BselectedClass%20name%5D'),
  775. messageSends: ["ifNil:ifNotNil:", "name"],
  776. referencedClasses: []
  777. }),
  778. smalltalk.Browser);
  779. smalltalk.addMethod(
  780. '_categories',
  781. smalltalk.method({
  782. selector: 'categories',
  783. category: 'accessing',
  784. fn: function (){
  785. var self=this;
  786. var categories=nil;
  787. categories=smalltalk.send(smalltalk.Array, "_new", []);
  788. smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.Smalltalk, "_current", []), "_classes", []), "_do_", [(function(each){return smalltalk.send(smalltalk.send(categories, "_includes_", [smalltalk.send(each, "_category", [])]), "_ifFalse_", [(function(){return smalltalk.send(categories, "_add_", [smalltalk.send(each, "_category", [])]);})]);})]);
  789. return smalltalk.send(categories, "_sort", []);
  790. return self;},
  791. source: unescape('categories%0A%20%20%20%20%7C%20categories%20%7C%0A%20%20%20%20categories%20%3A%3D%20Array%20new.%0A%20%20%20%20Smalltalk%20current%20classes%20do%3A%20%5B%3Aeach%20%7C%0A%09%28categories%20includes%3A%20each%20category%29%20ifFalse%3A%20%5B%0A%09%20%20%20%20categories%20add%3A%20each%20category%5D%5D.%0A%20%20%20%20%5Ecategories%20sort'),
  792. messageSends: ["new", "do:", "classes", "current", "ifFalse:", "includes:", "category", "add:", "sort"],
  793. referencedClasses: [smalltalk.Array,smalltalk.Smalltalk]
  794. }),
  795. smalltalk.Browser);
  796. smalltalk.addMethod(
  797. '_classes',
  798. smalltalk.method({
  799. selector: 'classes',
  800. category: 'accessing',
  801. fn: function (){
  802. var self=this;
  803. return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.Smalltalk, "_current", []), "_classes", []), "_select_", [(function(each){return smalltalk.send(smalltalk.send(each, "_category", []), "__eq", [self['@selectedCategory']]);})]), "_sort_", [(function(a, b){return smalltalk.send(smalltalk.send(a, "_name", []), "__gt", [smalltalk.send(b, "_name", [])]);})]);
  804. return self;},
  805. source: unescape('classes%0A%20%20%20%20%5E%28Smalltalk%20current%20classes%20%0A%09select%3A%20%5B%3Aeach%20%7C%20each%20category%20%3D%20selectedCategory%5D%29%0A%09sort%3A%20%5B%3Aa%20%3Ab%20%7C%20a%20name%20%3E%20b%20name%5D'),
  806. messageSends: ["sort:", "select:", "classes", "current", unescape("%3D"), "category", unescape("%3E"), "name"],
  807. referencedClasses: [smalltalk.Smalltalk]
  808. }),
  809. smalltalk.Browser);
  810. smalltalk.addMethod(
  811. '_protocols',
  812. smalltalk.method({
  813. selector: 'protocols',
  814. category: 'accessing',
  815. fn: function (){
  816. var self=this;
  817. try{var klass=nil;
  818. smalltalk.send(self['@selectedClass'], "_ifNotNil_", [(function(){smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["comment"]), "_ifTrue_", [(function(){return (function(){throw({name: 'stReturn', selector: '_protocols', fn: function(){return []}})})();})]);klass=smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["instance"]), "_ifTrue_ifFalse_", [(function(){return self['@selectedClass'];}), (function(){return smalltalk.send(self['@selectedClass'], "_class", []);})]);smalltalk.send(smalltalk.send(smalltalk.send(klass, "_methodDictionary", []), "_isEmpty", []), "_ifTrue_", [(function(){return (function(){throw({name: 'stReturn', selector: '_protocols', fn: function(){return smalltalk.send(smalltalk.Array, "_with_", ["not yet classified"])}})})();})]);return (function(){throw({name: 'stReturn', selector: '_protocols', fn: function(){return smalltalk.send(klass, "_protocols", [])}})})();})]);
  819. (function(){throw({name: 'stReturn', selector: '_protocols', fn: function(){return smalltalk.send(smalltalk.Array, "_new", [])}})})();
  820. return self;
  821. } catch(e) {if(e.name === 'stReturn' && e.selector === '_protocols'){return e.fn()} throw(e)}},
  822. source: unescape('protocols%0A%20%20%20%20%7C%20klass%20%7C%0A%20%20%20%20selectedClass%20ifNotNil%3A%20%5B%0A%09selectedTab%20%3D%20%23comment%20ifTrue%3A%20%5B%5E%23%28%29%5D.%0A%09klass%20%3A%3D%20selectedTab%20%3D%20%23instance%0A%09%20%20%20%20ifTrue%3A%20%5BselectedClass%5D%0A%09%20%20%20%20ifFalse%3A%20%5BselectedClass%20class%5D.%0A%09klass%20methodDictionary%20isEmpty%20ifTrue%3A%20%5B%0A%09%20%20%20%20%5EArray%20with%3A%20%27not%20yet%20classified%27%5D.%0A%09%5Eklass%20protocols%5D.%0A%20%20%20%20%5EArray%20new'),
  823. messageSends: ["ifNotNil:", "ifTrue:", unescape("%3D"), "ifTrue:ifFalse:", "class", "isEmpty", "methodDictionary", "with:", "protocols", "new"],
  824. referencedClasses: [smalltalk.Array]
  825. }),
  826. smalltalk.Browser);
  827. smalltalk.addMethod(
  828. '_methods',
  829. smalltalk.method({
  830. selector: 'methods',
  831. category: 'accessing',
  832. fn: function (){
  833. var self=this;
  834. try{var klass=nil;
  835. smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["comment"]), "_ifTrue_", [(function(){return (function(){throw({name: 'stReturn', selector: '_methods', fn: function(){return []}})})();})]);
  836. smalltalk.send(self['@selectedClass'], "_ifNotNil_", [(function(){return klass=smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["instance"]), "_ifTrue_ifFalse_", [(function(){return self['@selectedClass'];}), (function(){return smalltalk.send(self['@selectedClass'], "_class", []);})]);})]);
  837. (function(){throw({name: 'stReturn', selector: '_methods', fn: function(){return smalltalk.send(smalltalk.send(self['@selectedProtocol'], "_ifNil_ifNotNil_", [(function(){return smalltalk.send(klass, "_ifNil_ifNotNil_", [(function(){return [];}), (function(){return smalltalk.send(smalltalk.send(klass, "_methodDictionary", []), "_values", []);})]);}), (function(){return smalltalk.send(smalltalk.send(smalltalk.send(klass, "_methodDictionary", []), "_values", []), "_select_", [(function(each){return smalltalk.send(smalltalk.send(each, "_category", []), "__eq", [self['@selectedProtocol']]);})]);})]), "_sort_", [(function(a, b){return smalltalk.send(smalltalk.send(a, "_selector", []), "__gt", [smalltalk.send(b, "_selector", [])]);})])}})})();
  838. return self;
  839. } catch(e) {if(e.name === 'stReturn' && e.selector === '_methods'){return e.fn()} throw(e)}},
  840. source: unescape('methods%0A%20%20%20%20%7C%20klass%20%7C%0A%20%20%20%20selectedTab%20%3D%20%23comment%20ifTrue%3A%20%5B%5E%23%28%29%5D.%0A%20%20%20%20selectedClass%20ifNotNil%3A%20%5B%0A%09klass%20%3A%3D%20selectedTab%20%3D%20%23instance%0A%09%20%20%20%20ifTrue%3A%20%5BselectedClass%5D%0A%09%20%20%20%20ifFalse%3A%20%5BselectedClass%20class%5D%5D.%0A%20%20%20%20%5E%28selectedProtocol%20%0A%09ifNil%3A%20%5B%0A%09%20%20%20%20klass%20%0A%09%09ifNil%3A%20%5B%23%28%29%5D%20%0A%09%09ifNotNil%3A%20%5Bklass%20methodDictionary%20values%5D%5D%0A%09ifNotNil%3A%20%5B%0A%09%20%20%20%20klass%20methodDictionary%20values%20select%3A%20%5B%3Aeach%20%7C%0A%09%09each%20category%20%3D%20selectedProtocol%5D%5D%29%20sort%3A%20%5B%3Aa%20%3Ab%20%7C%20a%20selector%20%3E%20b%20selector%5D'),
  841. messageSends: ["ifTrue:", unescape("%3D"), "ifNotNil:", "ifTrue:ifFalse:", "class", "sort:", "ifNil:ifNotNil:", "values", "methodDictionary", "select:", "category", unescape("%3E"), "selector"],
  842. referencedClasses: []
  843. }),
  844. smalltalk.Browser);
  845. smalltalk.addMethod(
  846. '_source',
  847. smalltalk.method({
  848. selector: 'source',
  849. category: 'accessing',
  850. fn: function (){
  851. var self=this;
  852. try{smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["comment"]), "_ifFalse_", [(function(){return (function(){throw({name: 'stReturn', selector: '_source', fn: function(){return smalltalk.send(smalltalk.send(smalltalk.send(self['@selectedProtocol'], "_notNil", []), "_or_", [(function(){return smalltalk.send(self['@selectedMethod'], "_notNil", []);})]), "_ifFalse_ifTrue_", [(function(){return smalltalk.send(self, "_declarationSource", []);}), (function(){return smalltalk.send(self, "_methodSource", []);})])}})})();})]);
  853. (function(){throw({name: 'stReturn', selector: '_source', fn: function(){return smalltalk.send(self['@selectedClass'], "_ifNil_ifNotNil_", [(function(){return "";}), (function(){return smalltalk.send(self, "_classCommentSource", []);})])}})})();
  854. return self;
  855. } catch(e) {if(e.name === 'stReturn' && e.selector === '_source'){return e.fn()} throw(e)}},
  856. source: unescape('source%0A%20%20%20%20selectedTab%20%3D%20%23comment%20ifFalse%3A%20%5B%0A%09%5E%28selectedProtocol%20notNil%20or%3A%20%5BselectedMethod%20notNil%5D%29%0A%09%20%20%20%20ifFalse%3A%20%5Bself%20declarationSource%5D%0A%09%20%20%20%20ifTrue%3A%20%5Bself%20methodSource%5D%5D.%0A%20%20%20%20%5EselectedClass%0A%09ifNil%3A%20%5B%27%27%5D%0A%09ifNotNil%3A%20%5Bself%20classCommentSource%5D'),
  857. messageSends: ["ifFalse:", unescape("%3D"), "ifFalse:ifTrue:", "or:", "notNil", "declarationSource", "methodSource", "ifNil:ifNotNil:", "classCommentSource"],
  858. referencedClasses: []
  859. }),
  860. smalltalk.Browser);
  861. smalltalk.addMethod(
  862. '_methodSource',
  863. smalltalk.method({
  864. selector: 'methodSource',
  865. category: 'accessing',
  866. fn: function (){
  867. var self=this;
  868. return smalltalk.send(self['@selectedMethod'], "_ifNil_ifNotNil_", [(function(){return smalltalk.send(self, "_dummyMethodSource", []);}), (function(){return smalltalk.send(self['@selectedMethod'], "_source", []);})]);
  869. return self;},
  870. source: unescape('methodSource%0A%20%20%20%20%5EselectedMethod%0A%09ifNil%3A%20%5Bself%20dummyMethodSource%5D%0A%09ifNotNil%3A%20%5BselectedMethod%20source%5D'),
  871. messageSends: ["ifNil:ifNotNil:", "dummyMethodSource", "source"],
  872. referencedClasses: []
  873. }),
  874. smalltalk.Browser);
  875. smalltalk.addMethod(
  876. '_dummyMethodSource',
  877. smalltalk.method({
  878. selector: 'dummyMethodSource',
  879. category: 'accessing',
  880. fn: function (){
  881. var self=this;
  882. return unescape("messageSelectorAndArgumentNames%0A%09%22comment%20stating%20purpose%20of%20message%22%0A%0A%09%7C%20temporary%20variable%20names%20%7C%0A%09statements");
  883. return self;},
  884. source: unescape('dummyMethodSource%0A%20%20%20%20%5E%27messageSelectorAndArgumentNames%0A%09%22comment%20stating%20purpose%20of%20message%22%0A%0A%09%7C%20temporary%20variable%20names%20%7C%0A%09statements%27'),
  885. messageSends: [],
  886. referencedClasses: []
  887. }),
  888. smalltalk.Browser);
  889. smalltalk.addMethod(
  890. '_declarationSource',
  891. smalltalk.method({
  892. selector: 'declarationSource',
  893. category: 'accessing',
  894. fn: function (){
  895. var self=this;
  896. return smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["instance"]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self, "_classDeclarationSource", []);}), (function(){return smalltalk.send(self, "_metaclassDeclarationSource", []);})]);
  897. return self;},
  898. source: unescape('declarationSource%0A%20%20%20%20%5EselectedTab%20%3D%20%23instance%0A%09ifTrue%3A%20%5Bself%20classDeclarationSource%5D%0A%09ifFalse%3A%20%5Bself%20metaclassDeclarationSource%5D'),
  899. messageSends: ["ifTrue:ifFalse:", unescape("%3D"), "classDeclarationSource", "metaclassDeclarationSource"],
  900. referencedClasses: []
  901. }),
  902. smalltalk.Browser);
  903. smalltalk.addMethod(
  904. '_classDeclarationSource',
  905. smalltalk.method({
  906. selector: 'classDeclarationSource',
  907. category: 'accessing',
  908. fn: function (){
  909. var self=this;
  910. var stream=nil;
  911. stream=smalltalk.send("", "_writeStream", []);
  912. smalltalk.send(self['@selectedClass'], "_ifNotNil_", [(function(){(function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(smalltalk.send(self['@selectedClass'], "_superclass", []), "_asString", [])]);smalltalk.send($rec, "_nextPutAll_", [unescape("%20subclass%3A%20%23")]);smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(self['@selectedClass'], "_name", [])]);smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(smalltalk.send(smalltalk.String, "_lf", []), "__comma", [smalltalk.send(smalltalk.String, "_tab", [])])]);return smalltalk.send($rec, "_nextPutAll_", [unescape("instanceVariableNames%3A%20%27")]);})(stream);smalltalk.send(smalltalk.send(self['@selectedClass'], "_instanceVariableNames", []), "_do_separatedBy_", [(function(each){return smalltalk.send(stream, "_nextPutAll_", [each]);}), (function(){return smalltalk.send(stream, "_nextPutAll_", [" "]);})]);return (function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(smalltalk.send(unescape("%27"), "__comma", [smalltalk.send(smalltalk.String, "_lf", [])]), "__comma", [smalltalk.send(smalltalk.String, "_tab", [])])]);smalltalk.send($rec, "_nextPutAll_", [unescape("category%3A%20%27")]);smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(self['@selectedClass'], "_category", [])]);return smalltalk.send($rec, "_nextPutAll_", [unescape("%27")]);})(stream);})]);
  913. return smalltalk.send(stream, "_contents", []);
  914. return self;},
  915. source: unescape('classDeclarationSource%0A%20%20%20%20%7C%20stream%20%7C%0A%20%20%20%20stream%20%3A%3D%20%27%27%20writeStream.%0A%20%20%20%20selectedClass%20ifNotNil%3A%20%5B%0A%09stream%20%0A%09%20%20%20%20nextPutAll%3A%20selectedClass%20superclass%20asString%3B%0A%09%20%20%20%20nextPutAll%3A%20%27%20subclass%3A%20%23%27%3B%0A%09%20%20%20%20nextPutAll%3A%20selectedClass%20name%3B%0A%09%20%20%20%20nextPutAll%3A%20String%20lf%2C%20String%20tab%3B%0A%09%20%20%20%20nextPutAll%3A%20%27instanceVariableNames%3A%20%27%27%27.%0A%09selectedClass%20instanceVariableNames%20%0A%09%20%20%20%20do%3A%20%5B%3Aeach%20%7C%20stream%20nextPutAll%3A%20each%5D%20%0A%09%20%20%20%20separatedBy%3A%20%5Bstream%20nextPutAll%3A%20%27%20%27%5D.%0A%09stream%0A%09%20%20%20%20nextPutAll%3A%20%27%27%27%27%2C%20String%20lf%2C%20String%20tab%3B%0A%09%20%20%20%20nextPutAll%3A%20%27category%3A%20%27%27%27%3B%0A%09%20%20%20%20nextPutAll%3A%20selectedClass%20category%3B%0A%09%20%20%20%20nextPutAll%3A%20%27%27%27%27%5D.%0A%20%20%20%20%5Estream%20contents'),
  916. messageSends: ["writeStream", "ifNotNil:", "nextPutAll:", "asString", "superclass", "name", unescape("%2C"), "lf", "tab", "do:separatedBy:", "instanceVariableNames", "category", "contents"],
  917. referencedClasses: [smalltalk.String]
  918. }),
  919. smalltalk.Browser);
  920. smalltalk.addMethod(
  921. '_metaclassDeclarationSource',
  922. smalltalk.method({
  923. selector: 'metaclassDeclarationSource',
  924. category: 'accessing',
  925. fn: function (){
  926. var self=this;
  927. var stream=nil;
  928. stream=smalltalk.send("", "_writeStream", []);
  929. smalltalk.send(self['@selectedClass'], "_ifNotNil_", [(function(){(function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(self['@selectedClass'], "_asString", [])]);smalltalk.send($rec, "_nextPutAll_", [" class "]);return smalltalk.send($rec, "_nextPutAll_", [unescape("instanceVariableNames%3A%20%27")]);})(stream);smalltalk.send(smalltalk.send(smalltalk.send(self['@selectedClass'], "_class", []), "_instanceVariableNames", []), "_do_separatedBy_", [(function(each){return smalltalk.send(stream, "_nextPutAll_", [each]);}), (function(){return smalltalk.send(stream, "_nextPutAll_", [" "]);})]);return smalltalk.send(stream, "_nextPutAll_", [unescape("%27")]);})]);
  930. return smalltalk.send(stream, "_contents", []);
  931. return self;},
  932. source: unescape('metaclassDeclarationSource%0A%20%20%20%20%7C%20stream%20%7C%0A%20%20%20%20stream%20%3A%3D%20%27%27%20writeStream.%0A%20%20%20%20selectedClass%20ifNotNil%3A%20%5B%0A%09stream%20%0A%09%20%20%20%20nextPutAll%3A%20selectedClass%20asString%3B%0A%09%20%20%20%20nextPutAll%3A%20%27%20class%20%27%3B%0A%09%20%20%20%20nextPutAll%3A%20%27instanceVariableNames%3A%20%27%27%27.%0A%09selectedClass%20class%20instanceVariableNames%0A%09%20%20%20%20do%3A%20%5B%3Aeach%20%7C%20stream%20nextPutAll%3A%20each%5D%0A%09%20%20%20%20separatedBy%3A%20%5Bstream%20nextPutAll%3A%20%27%20%27%5D.%0A%09stream%20nextPutAll%3A%20%27%27%27%27%5D.%0A%20%20%20%20%5Estream%20contents'),
  933. messageSends: ["writeStream", "ifNotNil:", "nextPutAll:", "asString", "do:separatedBy:", "instanceVariableNames", "class", "contents"],
  934. referencedClasses: []
  935. }),
  936. smalltalk.Browser);
  937. smalltalk.addMethod(
  938. '_classCommentSource',
  939. smalltalk.method({
  940. selector: 'classCommentSource',
  941. category: 'accessing',
  942. fn: function (){
  943. var self=this;
  944. return smalltalk.send(self['@selectedClass'], "_comment", []);
  945. return self;},
  946. source: unescape('classCommentSource%0A%20%20%20%20%5EselectedClass%20comment'),
  947. messageSends: ["comment"],
  948. referencedClasses: []
  949. }),
  950. smalltalk.Browser);
  951. smalltalk.addMethod(
  952. '_disableSaveButton',
  953. smalltalk.method({
  954. selector: 'disableSaveButton',
  955. category: 'actions',
  956. fn: function (){
  957. var self=this;
  958. smalltalk.send(self['@saveButton'], "_ifNotNil_", [(function(){return smalltalk.send(self['@saveButton'], "_at_put_", ["disabled", true]);})]);
  959. self['@unsavedChanges']=false;
  960. return self;},
  961. source: unescape('disableSaveButton%0A%20%20%20%20saveButton%20ifNotNil%3A%20%5B%0A%09saveButton%20at%3A%20%27disabled%27%20put%3A%20true%5D.%0A%20%20%20%20unsavedChanges%20%3A%3D%20false'),
  962. messageSends: ["ifNotNil:", "at:put:"],
  963. referencedClasses: []
  964. }),
  965. smalltalk.Browser);
  966. smalltalk.addMethod(
  967. '_hideClassButtons',
  968. smalltalk.method({
  969. selector: 'hideClassButtons',
  970. category: 'actions',
  971. fn: function (){
  972. var self=this;
  973. smalltalk.send(smalltalk.send(self['@classButtons'], "_asJQuery", []), "_hide", []);
  974. return self;},
  975. source: unescape('hideClassButtons%0A%20%20%20%20classButtons%20asJQuery%20hide'),
  976. messageSends: ["hide", "asJQuery"],
  977. referencedClasses: []
  978. }),
  979. smalltalk.Browser);
  980. smalltalk.addMethod(
  981. '_showClassButtons',
  982. smalltalk.method({
  983. selector: 'showClassButtons',
  984. category: 'actions',
  985. fn: function (){
  986. var self=this;
  987. smalltalk.send(smalltalk.send(self['@classButtons'], "_asJQuery", []), "_show", []);
  988. return self;},
  989. source: unescape('showClassButtons%0A%20%20%20%20classButtons%20asJQuery%20show'),
  990. messageSends: ["show", "asJQuery"],
  991. referencedClasses: []
  992. }),
  993. smalltalk.Browser);
  994. smalltalk.addMethod(
  995. '_hideMethodButtons',
  996. smalltalk.method({
  997. selector: 'hideMethodButtons',
  998. category: 'actions',
  999. fn: function (){
  1000. var self=this;
  1001. smalltalk.send(smalltalk.send(self['@methodButtons'], "_asJQuery", []), "_hide", []);
  1002. return self;},
  1003. source: unescape('hideMethodButtons%0A%20%20%20%20methodButtons%20asJQuery%20hide'),
  1004. messageSends: ["hide", "asJQuery"],
  1005. referencedClasses: []
  1006. }),
  1007. smalltalk.Browser);
  1008. smalltalk.addMethod(
  1009. '_showMethodButtons',
  1010. smalltalk.method({
  1011. selector: 'showMethodButtons',
  1012. category: 'actions',
  1013. fn: function (){
  1014. var self=this;
  1015. smalltalk.send(smalltalk.send(self['@methodButtons'], "_asJQuery", []), "_show", []);
  1016. return self;},
  1017. source: unescape('showMethodButtons%0A%20%20%20%20methodButtons%20asJQuery%20show'),
  1018. messageSends: ["show", "asJQuery"],
  1019. referencedClasses: []
  1020. }),
  1021. smalltalk.Browser);
  1022. smalltalk.addMethod(
  1023. '_compile',
  1024. smalltalk.method({
  1025. selector: 'compile',
  1026. category: 'actions',
  1027. fn: function (){
  1028. var self=this;
  1029. smalltalk.send(self, "_disableSaveButton", []);
  1030. smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["comment"]), "_ifTrue_", [(function(){return smalltalk.send(self['@selectedClass'], "_ifNotNil_", [(function(){return smalltalk.send(self, "_compileClassComment", []);})]);})]);
  1031. smalltalk.send(smalltalk.send(smalltalk.send(self['@selectedProtocol'], "_notNil", []), "_or_", [(function(){return smalltalk.send(self['@selectedMethod'], "_notNil", []);})]), "_ifFalse_ifTrue_", [(function(){return smalltalk.send(self, "_compileDefinition", []);}), (function(){return smalltalk.send(self, "_compileMethodDefinition", []);})]);
  1032. return self;},
  1033. source: unescape('compile%0A%20%20%20%20self%20disableSaveButton.%0A%20%20%20%20selectedTab%20%3D%20%23comment%20ifTrue%3A%20%5B%0A%09selectedClass%20ifNotNil%3A%20%5B%0A%09%20%20%20%20self%20compileClassComment%5D%5D.%0A%20%20%20%20%28selectedProtocol%20notNil%20or%3A%20%5BselectedMethod%20notNil%5D%29%0A%09ifFalse%3A%20%5Bself%20compileDefinition%5D%0A%09ifTrue%3A%20%5Bself%20compileMethodDefinition%5D'),
  1034. messageSends: ["disableSaveButton", "ifTrue:", unescape("%3D"), "ifNotNil:", "compileClassComment", "ifFalse:ifTrue:", "or:", "notNil", "compileDefinition", "compileMethodDefinition"],
  1035. referencedClasses: []
  1036. }),
  1037. smalltalk.Browser);
  1038. smalltalk.addMethod(
  1039. '_compileClassComment',
  1040. smalltalk.method({
  1041. selector: 'compileClassComment',
  1042. category: 'actions',
  1043. fn: function (){
  1044. var self=this;
  1045. smalltalk.send(self['@selectedClass'], "_comment_", [smalltalk.send(self['@sourceArea'], "_val", [])]);
  1046. return self;},
  1047. source: unescape('compileClassComment%0A%20%20%20%20selectedClass%20comment%3A%20sourceArea%20val'),
  1048. messageSends: ["comment:", "val"],
  1049. referencedClasses: []
  1050. }),
  1051. smalltalk.Browser);
  1052. smalltalk.addMethod(
  1053. '_compileMethodDefinition',
  1054. smalltalk.method({
  1055. selector: 'compileMethodDefinition',
  1056. category: 'actions',
  1057. fn: function (){
  1058. var self=this;
  1059. smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["instance"]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self, "_compileMethodDefinitionFor_", [self['@selectedClass']]);}), (function(){return smalltalk.send(self, "_compileMethodDefinitionFor_", [smalltalk.send(self['@selectedClass'], "_class", [])]);})]);
  1060. return self;},
  1061. source: unescape('compileMethodDefinition%0A%20%20%20%20selectedTab%20%3D%20%23instance%0A%09ifTrue%3A%20%5Bself%20compileMethodDefinitionFor%3A%20selectedClass%5D%0A%09ifFalse%3A%20%5Bself%20compileMethodDefinitionFor%3A%20selectedClass%20class%5D'),
  1062. messageSends: ["ifTrue:ifFalse:", unescape("%3D"), "compileMethodDefinitionFor:", "class"],
  1063. referencedClasses: []
  1064. }),
  1065. smalltalk.Browser);
  1066. smalltalk.addMethod(
  1067. '_compileMethodDefinitionFor_',
  1068. smalltalk.method({
  1069. selector: 'compileMethodDefinitionFor:',
  1070. category: 'actions',
  1071. fn: function (aClass){
  1072. var self=this;
  1073. try{var compiler=nil;
  1074. var method=nil;
  1075. var source=nil;
  1076. var node=nil;
  1077. source=smalltalk.send(self['@sourceArea'], "_val", []);
  1078. smalltalk.send(self['@selectedProtocol'], "_ifNil_", [(function(){return self['@selectedProtocol']=smalltalk.send(self['@selectedMethod'], "_category", []);})]);
  1079. compiler=smalltalk.send(smalltalk.Compiler, "_new", []);
  1080. node=smalltalk.send(compiler, "_parse_", [source]);
  1081. smalltalk.send(smalltalk.send(node, "_isParseFailure", []), "_ifTrue_", [(function(){return (function(){throw({name: 'stReturn', selector: '_compileMethodDefinitionFor_', fn: function(){return smalltalk.send(self, "_alert_", [smalltalk.send(smalltalk.send(smalltalk.send("PARSE ERROR: ", "__comma", [smalltalk.send(node, "_reason", [])]), "__comma", [unescape("%2C%20position%3A%20")]), "__comma", [smalltalk.send(smalltalk.send(node, "_position", []), "_asString", [])])])}})})();})]);
  1082. smalltalk.send(compiler, "_currentClass_", [aClass]);
  1083. method=smalltalk.send(compiler, "_eval_", [smalltalk.send(compiler, "_compileNode_", [node])]);
  1084. smalltalk.send(method, "_category_", [self['@selectedProtocol']]);
  1085. smalltalk.send(smalltalk.send(compiler, "_unknownVariables", []), "_do_", [(function(each){return smalltalk.send(smalltalk.send(self, "_confirm_", [smalltalk.send(smalltalk.send(unescape("Declare%20%27"), "__comma", [each]), "__comma", [unescape("%27%20as%20instance%20variable%3F")])]), "_ifTrue_", [(function(){smalltalk.send(self, "_addInstanceVariableNamed_toClass_", [each, aClass]);return (function(){throw({name: 'stReturn', selector: '_compileMethodDefinitionFor_', fn: function(){return smalltalk.send(self, "_compileMethodDefinitionFor_", [aClass])}})})();})]);})]);
  1086. smalltalk.send(aClass, "_addCompiledMethod_", [method]);
  1087. smalltalk.send(compiler, "_setupClass_", [aClass]);
  1088. smalltalk.send(self, "_updateMethodsList", []);
  1089. smalltalk.send(self, "_selectMethod_", [method]);
  1090. return self;
  1091. } catch(e) {if(e.name === 'stReturn' && e.selector === '_compileMethodDefinitionFor_'){return e.fn()} throw(e)}},
  1092. source: unescape('compileMethodDefinitionFor%3A%20aClass%0A%20%20%20%20%7C%20compiler%20method%20source%20node%20%7C%0A%20%20%20%20source%20%3A%3D%20sourceArea%20val.%0A%20%20%20%20selectedProtocol%20ifNil%3A%20%5BselectedProtocol%20%3A%3D%20selectedMethod%20category%5D.%0A%20%20%20%20compiler%20%3A%3D%20Compiler%20new.%0A%20%20%20%20node%20%3A%3D%20compiler%20parse%3A%20source.%0A%20%20%20%20node%20isParseFailure%20ifTrue%3A%20%5B%0A%09%5Eself%20alert%3A%20%27PARSE%20ERROR%3A%20%27%2C%20node%20reason%2C%20%27%2C%20position%3A%20%27%2C%20node%20position%20asString%5D.%0A%20%20%20%20compiler%20currentClass%3A%20aClass.%0A%20%20%20%20method%20%3A%3D%20compiler%20eval%3A%20%28compiler%20compileNode%3A%20node%29.%0A%20%20%20%20method%20category%3A%20selectedProtocol.%0A%20%20%20%20compiler%20unknownVariables%20do%3A%20%5B%3Aeach%20%7C%0A%09%28self%20confirm%3A%20%27Declare%20%27%27%27%2C%20each%2C%20%27%27%27%20as%20instance%20variable%3F%27%29%20ifTrue%3A%20%5B%0A%09%09self%20addInstanceVariableNamed%3A%20each%20toClass%3A%20aClass.%0A%09%09%5Eself%20compileMethodDefinitionFor%3A%20aClass%5D%5D.%0A%20%20%20%20aClass%20addCompiledMethod%3A%20method.%0A%20%20%20%20compiler%20setupClass%3A%20aClass.%0A%20%20%20%20self%20updateMethodsList.%0A%20%20%20%20self%20selectMethod%3A%20method'),
  1093. messageSends: ["val", "ifNil:", "category", "new", "parse:", "ifTrue:", "isParseFailure", "alert:", unescape("%2C"), "reason", "asString", "position", "currentClass:", "eval:", "compileNode:", "category:", "do:", "unknownVariables", "confirm:", "addInstanceVariableNamed:toClass:", "compileMethodDefinitionFor:", "addCompiledMethod:", "setupClass:", "updateMethodsList", "selectMethod:"],
  1094. referencedClasses: [smalltalk.Compiler]
  1095. }),
  1096. smalltalk.Browser);
  1097. smalltalk.addMethod(
  1098. '_compileDefinition',
  1099. smalltalk.method({
  1100. selector: 'compileDefinition',
  1101. category: 'actions',
  1102. fn: function (){
  1103. var self=this;
  1104. var newClass=nil;
  1105. newClass=smalltalk.send(smalltalk.send(smalltalk.Compiler, "_new", []), "_loadExpression_", [smalltalk.send(smalltalk.send(smalltalk.send(self['@sourceArea'], "_textarea", []), "_asJQuery", []), "_val", [])]);
  1106. (function($rec){smalltalk.send($rec, "_resetClassesList", []);smalltalk.send($rec, "_updateCategoriesList", []);return smalltalk.send($rec, "_updateClassesList", []);})(self);
  1107. return self;},
  1108. source: unescape('compileDefinition%0A%20%20%20%20%7C%20newClass%20%7C%0A%20%20%20%20newClass%20%3A%3D%20Compiler%20new%20loadExpression%3A%20sourceArea%20textarea%20asJQuery%20val.%0A%20%20%20%20self%20%0A%09resetClassesList%3B%0A%09updateCategoriesList%3B%0A%09updateClassesList'),
  1109. messageSends: ["loadExpression:", "new", "val", "asJQuery", "textarea", "resetClassesList", "updateCategoriesList", "updateClassesList"],
  1110. referencedClasses: [smalltalk.Compiler]
  1111. }),
  1112. smalltalk.Browser);
  1113. smalltalk.addMethod(
  1114. '_commitCategory',
  1115. smalltalk.method({
  1116. selector: 'commitCategory',
  1117. category: 'actions',
  1118. fn: function (){
  1119. var self=this;
  1120. smalltalk.send(self['@selectedCategory'], "_ifNotNil_", [(function(){(function($rec){smalltalk.send($rec, "_at_put_", ["type", "PUT"]);smalltalk.send($rec, "_at_put_", ["data", smalltalk.send(smalltalk.send(smalltalk.Exporter, "_new", []), "_exportCategory_", [self['@selectedCategory']])]);smalltalk.send($rec, "_at_put_", ["error", (function(){return smalltalk.send(self, "_alert_", [unescape("Commit%20failed%21")]);})]);return smalltalk.send($rec, "_send", []);})(smalltalk.send(smalltalk.Ajax, "_url_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_commitPathJs", []), "__comma", [unescape("/")]), "__comma", [self['@selectedCategory']]), "__comma", [".js"])]));return (function($rec){smalltalk.send($rec, "_at_put_", ["type", "PUT"]);smalltalk.send($rec, "_at_put_", ["data", smalltalk.send(smalltalk.send(smalltalk.ChunkExporter, "_new", []), "_exportCategory_", [self['@selectedCategory']])]);smalltalk.send($rec, "_at_put_", ["error", (function(){return smalltalk.send(self, "_alert_", [unescape("Commit%20failed%21")]);})]);return smalltalk.send($rec, "_send", []);})(smalltalk.send(smalltalk.Ajax, "_url_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_commitPathSt", []), "__comma", [unescape("/")]), "__comma", [self['@selectedCategory']]), "__comma", [".st"])]));})]);
  1121. return self;},
  1122. source: unescape('commitCategory%0A%20%20%20%20selectedCategory%20ifNotNil%3A%20%5B%0A%09%28Ajax%20url%3A%20self%20class%20commitPathJs%2C%20%27/%27%2C%20selectedCategory%2C%20%27.js%27%29%0A%09%20%20%20%20at%3A%20%27type%27%20put%3A%20%27PUT%27%3B%0A%09%20%20%20%20at%3A%20%27data%27%20put%3A%20%28Exporter%20new%20exportCategory%3A%20selectedCategory%29%3B%0A%09%20%20%20%20at%3A%20%27error%27%20put%3A%20%5Bself%20alert%3A%20%27Commit%20failed%21%27%5D%3B%0A%09%20%20%20%20send.%0A%09%28Ajax%20url%3A%20self%20class%20commitPathSt%2C%20%27/%27%2C%20selectedCategory%2C%20%27.st%27%29%0A%09%20%20%20%20at%3A%20%27type%27%20put%3A%20%27PUT%27%3B%0A%09%20%20%20%20at%3A%20%27data%27%20put%3A%20%28ChunkExporter%20new%20exportCategory%3A%20selectedCategory%29%3B%0A%09%20%20%20%20at%3A%20%27error%27%20put%3A%20%5Bself%20alert%3A%20%27Commit%20failed%21%27%5D%3B%0A%09%20%20%20%20send%5D'),
  1123. messageSends: ["ifNotNil:", "at:put:", "exportCategory:", "new", "alert:", "send", "url:", unescape("%2C"), "commitPathJs", "class", "commitPathSt"],
  1124. referencedClasses: [smalltalk.Exporter,smalltalk.ChunkExporter]
  1125. }),
  1126. smalltalk.Browser);
  1127. smalltalk.addMethod(
  1128. '_cancelChanges',
  1129. smalltalk.method({
  1130. selector: 'cancelChanges',
  1131. category: 'actions',
  1132. fn: function (){
  1133. var self=this;
  1134. return smalltalk.send(self['@unsavedChanges'], "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self, "_confirm_", [unescape("Cancel%20changes%3F")]);}), (function(){return true;})]);
  1135. return self;},
  1136. source: unescape('cancelChanges%0A%20%20%20%20%5EunsavedChanges%20%0A%09ifTrue%3A%20%5Bself%20confirm%3A%20%27Cancel%20changes%3F%27%5D%0A%09ifFalse%3A%20%5Btrue%5D'),
  1137. messageSends: ["ifTrue:ifFalse:", "confirm:"],
  1138. referencedClasses: []
  1139. }),
  1140. smalltalk.Browser);
  1141. smalltalk.addMethod(
  1142. '_removeClass',
  1143. smalltalk.method({
  1144. selector: 'removeClass',
  1145. category: 'actions',
  1146. fn: function (){
  1147. var self=this;
  1148. smalltalk.send(smalltalk.send(self, "_confirm_", [smalltalk.send(smalltalk.send("Do you really want to remove ", "__comma", [smalltalk.send(self['@selectedClass'], "_name", [])]), "__comma", [unescape("%3F")])]), "_ifTrue_", [(function(){smalltalk.send(smalltalk.send(smalltalk.Smalltalk, "_current", []), "_removeClass_", [self['@selectedClass']]);smalltalk.send(self, "_resetClassesList", []);return smalltalk.send(self, "_selectClass_", [nil]);})]);
  1149. return self;},
  1150. source: unescape('removeClass%0A%20%20%20%20%28self%20confirm%3A%20%27Do%20you%20really%20want%20to%20remove%20%27%2C%20selectedClass%20name%2C%20%27%3F%27%29%0A%09ifTrue%3A%20%5B%0A%09%20%20%20%20Smalltalk%20current%20removeClass%3A%20selectedClass.%0A%09%20%20%20%20self%20resetClassesList.%0A%09%20%20%20%20self%20selectClass%3A%20nil%5D'),
  1151. messageSends: ["ifTrue:", "confirm:", unescape("%2C"), "name", "removeClass:", "current", "resetClassesList", "selectClass:"],
  1152. referencedClasses: [smalltalk.Smalltalk]
  1153. }),
  1154. smalltalk.Browser);
  1155. smalltalk.addMethod(
  1156. '_removeMethod',
  1157. smalltalk.method({
  1158. selector: 'removeMethod',
  1159. category: 'actions',
  1160. fn: function (){
  1161. var self=this;
  1162. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){return smalltalk.send(smalltalk.send(self, "_confirm_", [smalltalk.send(smalltalk.send(unescape("Do%20you%20really%20want%20to%20remove%20%23"), "__comma", [smalltalk.send(self['@selectedMethod'], "_selector", [])]), "__comma", [unescape("%3F")])]), "_ifTrue_", [(function(){smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["instance"]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self['@selectedClass'], "_removeCompiledMethod_", [self['@selectedMethod']]);}), (function(){return smalltalk.send(smalltalk.send(self['@selectedClass'], "_class", []), "_removeCompiledMethod_", [self['@selectedMethod']]);})]);return smalltalk.send(self, "_selectMethod_", [nil]);})]);})]);
  1163. return self;},
  1164. source: unescape('removeMethod%0A%20%20%20%20self%20cancelChanges%20ifTrue%3A%20%5B%0A%09%28self%20confirm%3A%20%27Do%20you%20really%20want%20to%20remove%20%23%27%2C%20selectedMethod%20selector%2C%20%27%3F%27%29%0A%09%20%20%20%20ifTrue%3A%20%5B%0A%09%09selectedTab%20%3D%20%23instance%20%0A%09%09%09ifTrue%3A%20%5BselectedClass%20removeCompiledMethod%3A%20selectedMethod%5D%0A%09%09%09ifFalse%3A%20%5BselectedClass%20class%20removeCompiledMethod%3A%20selectedMethod%5D.%0A%09%09self%20selectMethod%3A%20nil%5D%5D'),
  1165. messageSends: ["ifTrue:", "cancelChanges", "confirm:", unescape("%2C"), "selector", "ifTrue:ifFalse:", unescape("%3D"), "removeCompiledMethod:", "class", "selectMethod:"],
  1166. referencedClasses: []
  1167. }),
  1168. smalltalk.Browser);
  1169. smalltalk.addMethod(
  1170. '_setMethodProtocol_',
  1171. smalltalk.method({
  1172. selector: 'setMethodProtocol:',
  1173. category: 'actions',
  1174. fn: function (aString){
  1175. var self=this;
  1176. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){return smalltalk.send(smalltalk.send(smalltalk.send(self, "_protocols", []), "_includes_", [aString]), "_ifFalse_ifTrue_", [(function(){return smalltalk.send(self, "_addNewProtocol", []);}), (function(){smalltalk.send(self['@selectedMethod'], "_category_", [aString]);self['@selectedProtocol']=aString;self['@selectedMethod']=self['@selectedMethod'];return (function($rec){smalltalk.send($rec, "_updateProtocolsList", []);smalltalk.send($rec, "_updateMethodsList", []);return smalltalk.send($rec, "_updateSourceAndButtons", []);})(self);})]);})]);
  1177. return self;},
  1178. source: unescape('setMethodProtocol%3A%20aString%0A%20%20%20%20self%20cancelChanges%20ifTrue%3A%20%5B%0A%09%28self%20protocols%20includes%3A%20aString%29%0A%09%20%20%20%20ifFalse%3A%20%5Bself%20addNewProtocol%5D%0A%09%20%20%20%20ifTrue%3A%20%5B%0A%09%09selectedMethod%20category%3A%20aString.%0A%09%09selectedProtocol%20%3A%3D%20aString.%0A%09%09selectedMethod%20%3A%3D%20selectedMethod.%0A%09%09self%20%0A%09%09%20%20%20%20updateProtocolsList%3B%0A%09%09%20%20%20%20updateMethodsList%3B%0A%09%09%20%20%20%20updateSourceAndButtons%5D%5D'),
  1179. messageSends: ["ifTrue:", "cancelChanges", "ifFalse:ifTrue:", "includes:", "protocols", "addNewProtocol", "category:", "updateProtocolsList", "updateMethodsList", "updateSourceAndButtons"],
  1180. referencedClasses: []
  1181. }),
  1182. smalltalk.Browser);
  1183. smalltalk.addMethod(
  1184. '_addNewProtocol',
  1185. smalltalk.method({
  1186. selector: 'addNewProtocol',
  1187. category: 'actions',
  1188. fn: function (){
  1189. var self=this;
  1190. var newProtocol=nil;
  1191. newProtocol=smalltalk.send(self, "_prompt_", ["New method protocol"]);
  1192. smalltalk.send(smalltalk.send(newProtocol, "_notEmpty", []), "_ifTrue_", [(function(){smalltalk.send(self['@selectedMethod'], "_category_", [newProtocol]);return smalltalk.send(self, "_setMethodProtocol_", [newProtocol]);})]);
  1193. return self;},
  1194. source: unescape('addNewProtocol%0A%20%20%20%20%7C%20newProtocol%20%7C%0A%20%20%20%20newProtocol%20%3A%3D%20self%20prompt%3A%20%27New%20method%20protocol%27.%0A%20%20%20%20newProtocol%20notEmpty%20ifTrue%3A%20%5B%0A%09selectedMethod%20category%3A%20newProtocol.%0A%09self%20setMethodProtocol%3A%20newProtocol%5D'),
  1195. messageSends: ["prompt:", "ifTrue:", "notEmpty", "category:", "setMethodProtocol:"],
  1196. referencedClasses: []
  1197. }),
  1198. smalltalk.Browser);
  1199. smalltalk.addMethod(
  1200. '_selectCategory_',
  1201. smalltalk.method({
  1202. selector: 'selectCategory:',
  1203. category: 'actions',
  1204. fn: function (aCategory){
  1205. var self=this;
  1206. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){self['@selectedCategory']=aCategory;self['@selectedClass']=self['@selectedProtocol']=self['@selectedMethod']=nil;smalltalk.send(self, "_resetClassesList", []);return (function($rec){smalltalk.send($rec, "_updateCategoriesList", []);smalltalk.send($rec, "_updateClassesList", []);smalltalk.send($rec, "_updateProtocolsList", []);smalltalk.send($rec, "_updateMethodsList", []);return smalltalk.send($rec, "_updateSourceAndButtons", []);})(self);})]);
  1207. return self;},
  1208. source: unescape('selectCategory%3A%20aCategory%0A%20%20%20%20self%20cancelChanges%20ifTrue%3A%20%5B%0A%09selectedCategory%20%3A%3D%20aCategory.%0A%09selectedClass%20%3A%3D%20selectedProtocol%20%3A%3D%20selectedMethod%20%3A%3D%20%20nil.%0A%09self%20resetClassesList.%0A%09self%20%0A%09%20%20%20%20updateCategoriesList%3B%0A%09%20%20%20%20updateClassesList%3B%0A%09%20%20%20%20updateProtocolsList%3B%0A%09%20%20%20%20updateMethodsList%3B%0A%09%20%20%20%20updateSourceAndButtons%5D'),
  1209. messageSends: ["ifTrue:", "cancelChanges", "resetClassesList", "updateCategoriesList", "updateClassesList", "updateProtocolsList", "updateMethodsList", "updateSourceAndButtons"],
  1210. referencedClasses: []
  1211. }),
  1212. smalltalk.Browser);
  1213. smalltalk.addMethod(
  1214. '_selectClass_',
  1215. smalltalk.method({
  1216. selector: 'selectClass:',
  1217. category: 'actions',
  1218. fn: function (aClass){
  1219. var self=this;
  1220. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){self['@selectedClass']=aClass;self['@selectedProtocol']=self['@selectedMethod']=nil;return (function($rec){smalltalk.send($rec, "_updateClassesList", []);smalltalk.send($rec, "_updateProtocolsList", []);smalltalk.send($rec, "_updateMethodsList", []);return smalltalk.send($rec, "_updateSourceAndButtons", []);})(self);})]);
  1221. return self;},
  1222. source: unescape('selectClass%3A%20aClass%0A%20%20%20%20self%20cancelChanges%20ifTrue%3A%20%5B%0A%09selectedClass%20%3A%3D%20aClass.%0A%09selectedProtocol%20%3A%3D%20selectedMethod%20%3A%3D%20nil.%0A%09self%20%0A%09%20%20%20%20updateClassesList%3B%0A%09%20%20%20%20updateProtocolsList%3B%0A%09%20%20%20%20updateMethodsList%3B%0A%09%20%20%20%20updateSourceAndButtons%5D'),
  1223. messageSends: ["ifTrue:", "cancelChanges", "updateClassesList", "updateProtocolsList", "updateMethodsList", "updateSourceAndButtons"],
  1224. referencedClasses: []
  1225. }),
  1226. smalltalk.Browser);
  1227. smalltalk.addMethod(
  1228. '_selectProtocol_',
  1229. smalltalk.method({
  1230. selector: 'selectProtocol:',
  1231. category: 'actions',
  1232. fn: function (aString){
  1233. var self=this;
  1234. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){self['@selectedProtocol']=aString;self['@selectedMethod']=nil;return (function($rec){smalltalk.send($rec, "_updateProtocolsList", []);smalltalk.send($rec, "_updateMethodsList", []);return smalltalk.send($rec, "_updateSourceAndButtons", []);})(self);})]);
  1235. return self;},
  1236. source: unescape('selectProtocol%3A%20aString%0A%20%20%20%20self%20cancelChanges%20ifTrue%3A%20%5B%0A%09selectedProtocol%20%3A%3D%20aString.%0A%09selectedMethod%20%3A%3D%20nil.%0A%09self%20%0A%09%20%20%20%20updateProtocolsList%3B%0A%09%20%20%20%20updateMethodsList%3B%0A%09%20%20%20%20updateSourceAndButtons%5D'),
  1237. messageSends: ["ifTrue:", "cancelChanges", "updateProtocolsList", "updateMethodsList", "updateSourceAndButtons"],
  1238. referencedClasses: []
  1239. }),
  1240. smalltalk.Browser);
  1241. smalltalk.addMethod(
  1242. '_selectMethod_',
  1243. smalltalk.method({
  1244. selector: 'selectMethod:',
  1245. category: 'actions',
  1246. fn: function (aMethod){
  1247. var self=this;
  1248. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){self['@selectedMethod']=aMethod;return (function($rec){smalltalk.send($rec, "_updateProtocolsList", []);smalltalk.send($rec, "_updateMethodsList", []);return smalltalk.send($rec, "_updateSourceAndButtons", []);})(self);})]);
  1249. return self;},
  1250. source: unescape('selectMethod%3A%20aMethod%0A%20%20%20%20self%20cancelChanges%20ifTrue%3A%20%5B%0A%09selectedMethod%20%3A%3D%20aMethod.%0A%09self%20%0A%09%20%20%20%20updateProtocolsList%3B%0A%09%20%20%20%20updateMethodsList%3B%0A%09%20%20%20%20updateSourceAndButtons%5D'),
  1251. messageSends: ["ifTrue:", "cancelChanges", "updateProtocolsList", "updateMethodsList", "updateSourceAndButtons"],
  1252. referencedClasses: []
  1253. }),
  1254. smalltalk.Browser);
  1255. smalltalk.addMethod(
  1256. '_selectTab_',
  1257. smalltalk.method({
  1258. selector: 'selectTab:',
  1259. category: 'actions',
  1260. fn: function (aString){
  1261. var self=this;
  1262. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){self['@selectedTab']=aString;smalltalk.send(self, "_selectProtocol_", [nil]);return smalltalk.send(self, "_updateTabsList", []);})]);
  1263. return self;},
  1264. source: unescape('selectTab%3A%20aString%0A%20%20%20%20self%20cancelChanges%20ifTrue%3A%20%5B%0A%09selectedTab%20%3A%3D%20aString.%0A%09self%20selectProtocol%3A%20nil.%0A%09self%20updateTabsList%5D'),
  1265. messageSends: ["ifTrue:", "cancelChanges", "selectProtocol:", "updateTabsList"],
  1266. referencedClasses: []
  1267. }),
  1268. smalltalk.Browser);
  1269. smalltalk.addMethod(
  1270. '_renameClass',
  1271. smalltalk.method({
  1272. selector: 'renameClass',
  1273. category: 'actions',
  1274. fn: function (){
  1275. var self=this;
  1276. var newName=nil;
  1277. newName=smalltalk.send(self, "_prompt_", [smalltalk.send("Rename class ", "__comma", [smalltalk.send(self['@selectedClass'], "_name", [])])]);
  1278. smalltalk.send(smalltalk.send(newName, "_notEmpty", []), "_ifTrue_", [(function(){smalltalk.send(self['@selectedClass'], "_rename_", [newName]);return (function($rec){smalltalk.send($rec, "_updateClassesList", []);return smalltalk.send($rec, "_updateSourceAndButtons", []);})(self);})]);
  1279. return self;},
  1280. source: unescape('renameClass%0A%20%20%20%20%7C%20newName%20%7C%0A%20%20%20%20newName%20%3A%3D%20self%20prompt%3A%20%27Rename%20class%20%27%2C%20selectedClass%20name.%0A%20%20%20%20newName%20notEmpty%20ifTrue%3A%20%5B%0A%09selectedClass%20rename%3A%20newName.%0A%09self%20%0A%09%09updateClassesList%3B%0A%09%09updateSourceAndButtons%5D'),
  1281. messageSends: ["prompt:", unescape("%2C"), "name", "ifTrue:", "notEmpty", "rename:", "updateClassesList", "updateSourceAndButtons"],
  1282. referencedClasses: []
  1283. }),
  1284. smalltalk.Browser);
  1285. smalltalk.addMethod(
  1286. '_addInstanceVariableNamed_toClass_',
  1287. smalltalk.method({
  1288. selector: 'addInstanceVariableNamed:toClass:',
  1289. category: 'actions',
  1290. fn: function (aString, aClass){
  1291. var self=this;
  1292. smalltalk.send(smalltalk.send(smalltalk.ClassBuilder, "_new", []), "_addSubclassOf_named_instanceVariableNames_", [smalltalk.send(aClass, "_superclass", []), smalltalk.send(aClass, "_name", []), (function($rec){smalltalk.send($rec, "_add_", [aString]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(smalltalk.send(aClass, "_instanceVariableNames", []), "_copy", []))]);
  1293. return self;},
  1294. source: unescape('addInstanceVariableNamed%3A%20aString%20toClass%3A%20aClass%0A%09ClassBuilder%20new%0A%09%09addSubclassOf%3A%20aClass%20superclass%20named%3A%20aClass%20name%20instanceVariableNames%3A%20%28aClass%20instanceVariableNames%20copy%20add%3A%20aString%3B%20yourself%29'),
  1295. messageSends: ["addSubclassOf:named:instanceVariableNames:", "new", "superclass", "name", "add:", "yourself", "copy", "instanceVariableNames"],
  1296. referencedClasses: [smalltalk.ClassBuilder]
  1297. }),
  1298. smalltalk.Browser);
  1299. smalltalk.addMethod(
  1300. '_searchReferencesOf_',
  1301. smalltalk.method({
  1302. selector: 'searchReferencesOf:',
  1303. category: 'actions',
  1304. fn: function (aString){
  1305. var self=this;
  1306. smalltalk.send(smalltalk.ReferencesBrowser, "_search_", [aString]);
  1307. return self;},
  1308. source: unescape('searchReferencesOf%3A%20aString%0A%09ReferencesBrowser%20search%3A%20aString'),
  1309. messageSends: ["search:"],
  1310. referencedClasses: []
  1311. }),
  1312. smalltalk.Browser);
  1313. smalltalk.addMethod(
  1314. '_searchClassReferences',
  1315. smalltalk.method({
  1316. selector: 'searchClassReferences',
  1317. category: 'actions',
  1318. fn: function (){
  1319. var self=this;
  1320. smalltalk.send(smalltalk.ReferencesBrowser, "_search_", [smalltalk.send(self['@selectedClass'], "_name", [])]);
  1321. return self;},
  1322. source: unescape('searchClassReferences%0A%09ReferencesBrowser%20search%3A%20selectedClass%20name'),
  1323. messageSends: ["search:", "name"],
  1324. referencedClasses: []
  1325. }),
  1326. smalltalk.Browser);
  1327. smalltalk.addMethod(
  1328. '_search_',
  1329. smalltalk.method({
  1330. selector: 'search:',
  1331. category: 'actions',
  1332. fn: function (aString){
  1333. var self=this;
  1334. smalltalk.send(smalltalk.send(self, "_cancelChanges", []), "_ifTrue_", [(function(){var searchedClass=nil;
  1335. searchedClass=smalltalk.send(smalltalk.send(smalltalk.Smalltalk, "_current", []), "_at_", [aString]);return smalltalk.send(smalltalk.send(searchedClass, "_isClass", []), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(smalltalk.send(self, "_class", []), "_openOn_", [searchedClass]);}), (function(){return smalltalk.send(self, "_searchReferencesOf_", [aString]);})]);})]);
  1336. return self;},
  1337. source: unescape('search%3A%20aString%0A%09self%20cancelChanges%20ifTrue%3A%20%5B%7C%20searchedClass%20%7C%0A%09%09searchedClass%20%3A%3D%20Smalltalk%20current%20at%3A%20aString.%0A%09%09searchedClass%20isClass%0A%09%09%09ifTrue%3A%20%5Bself%20class%20openOn%3A%20searchedClass%5D%0A%09%09%09ifFalse%3A%20%5Bself%20searchReferencesOf%3A%20aString%5D%5D'),
  1338. messageSends: ["ifTrue:", "cancelChanges", "at:", "current", "ifTrue:ifFalse:", "isClass", "openOn:", "class", "searchReferencesOf:"],
  1339. referencedClasses: [smalltalk.Smalltalk]
  1340. }),
  1341. smalltalk.Browser);
  1342. smalltalk.addMethod(
  1343. '_initialize',
  1344. smalltalk.method({
  1345. selector: 'initialize',
  1346. category: 'initialization',
  1347. fn: function (){
  1348. var self=this;
  1349. smalltalk.send(self, "_initialize", [], smalltalk.TabWidget);
  1350. self['@selectedTab']="instance";
  1351. self['@unsavedChanges']=false;
  1352. return self;},
  1353. source: unescape('initialize%0A%20%20%20%20super%20initialize.%0A%20%20%20%20selectedTab%20%3A%3D%20%23instance.%0A%20%20%20%20unsavedChanges%20%3A%3D%20false'),
  1354. messageSends: ["initialize"],
  1355. referencedClasses: []
  1356. }),
  1357. smalltalk.Browser);
  1358. smalltalk.addMethod(
  1359. '_renderBoxOn_',
  1360. smalltalk.method({
  1361. selector: 'renderBoxOn:',
  1362. category: 'rendering',
  1363. fn: function (html){
  1364. var self=this;
  1365. (function($rec){smalltalk.send($rec, "_renderTopPanelOn_", [html]);smalltalk.send($rec, "_renderTabsOn_", [html]);return smalltalk.send($rec, "_renderBottomPanelOn_", [html]);})(self);
  1366. return self;},
  1367. source: unescape('renderBoxOn%3A%20html%0A%20%20%20%20self%20%0A%09renderTopPanelOn%3A%20html%3B%0A%09renderTabsOn%3A%20html%3B%0A%09renderBottomPanelOn%3A%20html'),
  1368. messageSends: ["renderTopPanelOn:", "renderTabsOn:", "renderBottomPanelOn:"],
  1369. referencedClasses: []
  1370. }),
  1371. smalltalk.Browser);
  1372. smalltalk.addMethod(
  1373. '_renderTopPanelOn_',
  1374. smalltalk.method({
  1375. selector: 'renderTopPanelOn:',
  1376. category: 'rendering',
  1377. fn: function (html){
  1378. var self=this;
  1379. (function($rec){smalltalk.send($rec, "_class_", ["top"]);return smalltalk.send($rec, "_with_", [(function(){smalltalk.send(self, "_renderInputOn_", [html]);self['@categoriesList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_column browser categories"]);self['@commitButton']=(function($rec){smalltalk.send($rec, "_class_", ["jt_commit"]);smalltalk.send($rec, "_title_", ["Commit classes in this category to disk"]);smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_commitCategory", []);})]);return smalltalk.send($rec, "_with_", ["Commit category"]);})(smalltalk.send(html, "_button", []));self['@classesList']=smalltalk.send(smalltalk.ClassesList, "_on_", [self]);smalltalk.send(self['@classesList'], "_renderOn_", [html]);self['@protocolsList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_column browser protocols"]);self['@methodsList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_column browser methods"]);(function($rec){smalltalk.send($rec, "_updateCategoriesList", []);smalltalk.send($rec, "_updateClassesList", []);smalltalk.send($rec, "_updateProtocolsList", []);return smalltalk.send($rec, "_updateMethodsList", []);})(self);return smalltalk.send(smalltalk.send(html, "_div", []), "_class_", ["jt_clear"]);})]);})(smalltalk.send(html, "_div", []));
  1380. return self;},
  1381. source: unescape('renderTopPanelOn%3A%20html%0A%20%20%20%20html%20div%20%0A%09class%3A%20%27top%27%3B%20%0A%09with%3A%20%5B%0A%09%20%20%20%20self%20renderInputOn%3A%20html.%0A%09%20%20%20%20categoriesList%20%3A%3D%20html%20ul%20class%3A%20%27jt_column%20browser%20categories%27.%0A%09%20%20%20%20commitButton%20%3A%3D%20html%20button%20%0A%09%09class%3A%20%27jt_commit%27%3B%0A%09%09title%3A%20%27Commit%20classes%20in%20this%20category%20to%20disk%27%3B%0A%09%09onClick%3A%20%5Bself%20commitCategory%5D%3B%0A%09%09with%3A%20%27Commit%20category%27.%0A%09%20%20%20%20classesList%20%3A%3D%20ClassesList%20on%3A%20self.%0A%09%20%20%20%20classesList%20renderOn%3A%20html.%0A%09%20%20%20%20protocolsList%20%3A%3D%20html%20ul%20class%3A%20%27jt_column%20browser%20protocols%27.%0A%09%20%20%20%20methodsList%20%3A%3D%20html%20ul%20class%3A%20%27jt_column%20browser%20methods%27.%0A%09%20%20%20%20self%0A%09%09updateCategoriesList%3B%0A%09%09updateClassesList%3B%0A%09%09updateProtocolsList%3B%0A%09%09updateMethodsList.%0A%09%20%20%20%20html%20div%20class%3A%20%27jt_clear%27%5D'),
  1382. messageSends: ["class:", "with:", "renderInputOn:", "ul", "title:", "onClick:", "commitCategory", "button", "on:", "renderOn:", "updateCategoriesList", "updateClassesList", "updateProtocolsList", "updateMethodsList", "div"],
  1383. referencedClasses: [smalltalk.nil]
  1384. }),
  1385. smalltalk.Browser);
  1386. smalltalk.addMethod(
  1387. '_renderTabsOn_',
  1388. smalltalk.method({
  1389. selector: 'renderTabsOn:',
  1390. category: 'rendering',
  1391. fn: function (html){
  1392. var self=this;
  1393. self['@tabsList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_tabs"]);
  1394. smalltalk.send(self, "_updateTabsList", []);
  1395. return self;},
  1396. source: unescape('renderTabsOn%3A%20html%0A%20%20%20%20tabsList%20%3A%3D%20html%20ul%20class%3A%20%27jt_tabs%27.%0A%20%20%20%20self%20updateTabsList.'),
  1397. messageSends: ["class:", "ul", "updateTabsList"],
  1398. referencedClasses: []
  1399. }),
  1400. smalltalk.Browser);
  1401. smalltalk.addMethod(
  1402. '_renderBottomPanelOn_',
  1403. smalltalk.method({
  1404. selector: 'renderBottomPanelOn:',
  1405. category: 'rendering',
  1406. fn: function (html){
  1407. var self=this;
  1408. (function($rec){smalltalk.send($rec, "_class_", ["jt_sourceCode"]);return smalltalk.send($rec, "_with_", [(function(){self['@sourceArea']=smalltalk.send(smalltalk.SourceArea, "_new", []);smalltalk.send(self['@sourceArea'], "_renderOn_", [html]);return smalltalk.send(smalltalk.send(self['@sourceArea'], "_textarea", []), "_onKeyUp_", [(function(){return smalltalk.send(self, "_updateStatus", []);})]);})]);})(smalltalk.send(html, "_div", []));
  1409. return self;},
  1410. source: unescape('renderBottomPanelOn%3A%20html%0A%20%20%20%20html%20div%0A%09class%3A%20%27jt_sourceCode%27%3B%0A%09with%3A%20%5B%0A%09%20%20%20%20sourceArea%20%3A%3D%20SourceArea%20new.%0A%09%20%20%20%20sourceArea%20renderOn%3A%20html.%0A%09%20%20%20%20sourceArea%20textarea%0A%09%09onKeyUp%3A%20%5Bself%20updateStatus%5D%5D'),
  1411. messageSends: ["class:", "with:", "new", "renderOn:", "onKeyUp:", "textarea", "updateStatus", "div"],
  1412. referencedClasses: [smalltalk.nil]
  1413. }),
  1414. smalltalk.Browser);
  1415. smalltalk.addMethod(
  1416. '_renderButtonsOn_',
  1417. smalltalk.method({
  1418. selector: 'renderButtonsOn:',
  1419. category: 'rendering',
  1420. fn: function (html){
  1421. var self=this;
  1422. self['@saveButton']=smalltalk.send(html, "_button", []);
  1423. (function($rec){smalltalk.send($rec, "_with_", ["Save"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_compile", []);})]);})(self['@saveButton']);
  1424. self['@methodButtons']=smalltalk.send(html, "_span", []);
  1425. self['@classButtons']=smalltalk.send(html, "_span", []);
  1426. (function($rec){smalltalk.send($rec, "_class_", ["right"]);return smalltalk.send($rec, "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", ["DoIt"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self['@sourceArea'], "_doIt", []);})]);})(smalltalk.send(html, "_button", []));(function($rec){smalltalk.send($rec, "_with_", ["PrintIt"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self['@sourceArea'], "_printIt", []);})]);})(smalltalk.send(html, "_button", []));return (function($rec){smalltalk.send($rec, "_with_", ["InspectIt"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self['@sourceArea'], "_inspectit", []);})]);})(smalltalk.send(html, "_button", []));})]);})(smalltalk.send(html, "_div", []));
  1427. smalltalk.send(self, "_updateSourceAndButtons", []);
  1428. return self;},
  1429. source: unescape('renderButtonsOn%3A%20html%0A%20%20%20%20saveButton%20%3A%3D%20html%20button.%0A%20%20%20%20saveButton%20%0A%09with%3A%20%27Save%27%3B%0A%09onClick%3A%20%5Bself%20compile%5D.%0A%20%20%20%20methodButtons%20%3A%3D%20html%20span.%0A%20%20%20%20classButtons%20%3A%3D%20html%20span.%0A%20%20%20%20html%20div%20%0A%09class%3A%20%27right%27%3B%0A%09with%3A%20%5B%0A%09%09html%20button%0A%09%09%09with%3A%20%27DoIt%27%3B%0A%09%09%09onClick%3A%20%5BsourceArea%20doIt%5D.%0A%09%09html%20button%0A%09%09%09with%3A%20%27PrintIt%27%3B%0A%09%09%09onClick%3A%20%5BsourceArea%20printIt%5D.%0A%09%09html%20button%20with%3A%20%27InspectIt%27%3B%0A%09%09%09onClick%3A%20%5BsourceArea%20inspectit%5D%5D.%20%0A%20%20%20%20self%20updateSourceAndButtons'),
  1430. messageSends: ["button", "with:", "onClick:", "compile", "span", "class:", "doIt", "printIt", "inspectit", "div", "updateSourceAndButtons"],
  1431. referencedClasses: []
  1432. }),
  1433. smalltalk.Browser);
  1434. smalltalk.addMethod(
  1435. '_renderInputOn_',
  1436. smalltalk.method({
  1437. selector: 'renderInputOn:',
  1438. category: 'rendering',
  1439. fn: function (html){
  1440. var self=this;
  1441. self['@input']=(function($rec){smalltalk.send($rec, "_class_", ["implementors"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_input", []));
  1442. smalltalk.send(self['@input'], "_onKeyPress_", [(function(event){return smalltalk.send(smalltalk.send(smalltalk.send(event, "_keyCode", []), "__eq", [(13)]), "_ifTrue_", [(function(){return smalltalk.send(self, "_search_", [smalltalk.send(smalltalk.send(self['@input'], "_asJQuery", []), "_val", [])]);})]);})]);
  1443. return self;},
  1444. source: unescape('renderInputOn%3A%20html%20%0A%09input%20%3A%3D%20html%20input%20%0A%09%09class%3A%20%27implementors%27%3B%0A%09%09yourself.%0A%09input%20onKeyPress%3A%20%5B%3Aevent%20%7C%0A%09%09event%20keyCode%20%3D%2013%20ifTrue%3A%20%5B%0A%09%09%09self%20search%3A%20input%20asJQuery%20val%5D%5D'),
  1445. messageSends: ["class:", "yourself", "input", "onKeyPress:", "ifTrue:", unescape("%3D"), "keyCode", "search:", "val", "asJQuery"],
  1446. referencedClasses: []
  1447. }),
  1448. smalltalk.Browser);
  1449. smalltalk.addMethod(
  1450. '_canBeClosed',
  1451. smalltalk.method({
  1452. selector: 'canBeClosed',
  1453. category: 'testing',
  1454. fn: function (){
  1455. var self=this;
  1456. return true;
  1457. return self;},
  1458. source: unescape('canBeClosed%0A%09%5Etrue'),
  1459. messageSends: [],
  1460. referencedClasses: []
  1461. }),
  1462. smalltalk.Browser);
  1463. smalltalk.addMethod(
  1464. '_updateCategoriesList',
  1465. smalltalk.method({
  1466. selector: 'updateCategoriesList',
  1467. category: 'updating',
  1468. fn: function (){
  1469. var self=this;
  1470. smalltalk.send(self['@categoriesList'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(self, "_categories", []), "_do_", [(function(each){var li=nil;
  1471. var label=nil;
  1472. smalltalk.send(smalltalk.send(each, "_isEmpty", []), "_ifTrue_ifFalse_", [(function(){return label="Unclassified";}), (function(){return label=each;})]);li=smalltalk.send(html, "_li", []);smalltalk.send(smalltalk.send(self['@selectedCategory'], "__eq", [each]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);return (function($rec){smalltalk.send($rec, "_with_", [label]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectCategory_", [each]);})]);})(li);})]);})]);
  1473. return self;},
  1474. source: unescape('updateCategoriesList%0A%20%20%20%20categoriesList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09self%20categories%20do%3A%20%5B%3Aeach%20%7C%7C%20li%20label%20%7C%0A%09%20%20%20%20each%20isEmpty%20%0A%09%09ifTrue%3A%20%5Blabel%20%3A%3D%20%27Unclassified%27%5D%0A%09%09ifFalse%3A%20%5Blabel%20%3A%3D%20each%5D.%0A%09%20%20%20%20li%20%3A%3D%20html%20li.%0A%09%20%20%20%20selectedCategory%20%3D%20each%20ifTrue%3A%20%5B%0A%09%09li%20class%3A%20%27selected%27%5D.%0A%09%20%20%20%20li%0A%09%09with%3A%20label%3B%0A%09%09onClick%3A%20%5Bself%20selectCategory%3A%20each%5D%5D%5D'),
  1475. messageSends: ["contents:", "do:", "categories", "ifTrue:ifFalse:", "isEmpty", "li", "ifTrue:", unescape("%3D"), "class:", "with:", "onClick:", "selectCategory:"],
  1476. referencedClasses: []
  1477. }),
  1478. smalltalk.Browser);
  1479. smalltalk.addMethod(
  1480. '_updateClassesList',
  1481. smalltalk.method({
  1482. selector: 'updateClassesList',
  1483. category: 'updating',
  1484. fn: function (){
  1485. var self=this;
  1486. smalltalk.send(smalltalk.send(smalltalk.TabManager, "_current", []), "_update", []);
  1487. smalltalk.send(self['@classesList'], "_updateNodes", []);
  1488. return self;},
  1489. source: unescape('updateClassesList%0A%20%20%20%20TabManager%20current%20update.%0A%20%20%20%20classesList%20updateNodes.%0A%20%20%20%20%22classesList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09self%20classes%20do%3A%20%5B%3Aeach%20%7C%7C%20li%20%7C%0A%09%20%20%20%20li%20%3A%3D%20html%20li.%0A%09%20%20%20%20selectedClass%20%3D%20each%20ifTrue%3A%20%5B%0A%09%09li%20class%3A%20%27selected%27%5D.%0A%09%20%20%20%20li%0A%09%09with%3A%20each%20name%3B%0A%09%09onClick%3A%20%5Bself%20selectClass%3A%20each%5D%5D%5D%22'),
  1490. messageSends: ["update", "current", "updateNodes"],
  1491. referencedClasses: [smalltalk.TabManager]
  1492. }),
  1493. smalltalk.Browser);
  1494. smalltalk.addMethod(
  1495. '_updateProtocolsList',
  1496. smalltalk.method({
  1497. selector: 'updateProtocolsList',
  1498. category: 'updating',
  1499. fn: function (){
  1500. var self=this;
  1501. smalltalk.send(self['@protocolsList'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(self, "_protocols", []), "_do_", [(function(each){var li=nil;
  1502. li=smalltalk.send(html, "_li", []);smalltalk.send(smalltalk.send(self['@selectedProtocol'], "__eq", [each]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);return (function($rec){smalltalk.send($rec, "_with_", [each]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectProtocol_", [each]);})]);})(li);})]);})]);
  1503. return self;},
  1504. source: unescape('updateProtocolsList%0A%20%20%20%20protocolsList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09self%20protocols%20do%3A%20%5B%3Aeach%20%7C%7C%20li%20%7C%0A%09%20%20%20%20li%20%3A%3D%20html%20li.%0A%09%20%20%20%20selectedProtocol%20%3D%20each%20ifTrue%3A%20%5B%0A%09%09li%20class%3A%20%27selected%27%5D.%0A%09%20%20%20%20li%20%0A%09%09with%3A%20each%3B%0A%09%09onClick%3A%20%5Bself%20selectProtocol%3A%20each%5D%5D%5D'),
  1505. messageSends: ["contents:", "do:", "protocols", "li", "ifTrue:", unescape("%3D"), "class:", "with:", "onClick:", "selectProtocol:"],
  1506. referencedClasses: []
  1507. }),
  1508. smalltalk.Browser);
  1509. smalltalk.addMethod(
  1510. '_updateMethodsList',
  1511. smalltalk.method({
  1512. selector: 'updateMethodsList',
  1513. category: 'updating',
  1514. fn: function (){
  1515. var self=this;
  1516. smalltalk.send(self['@methodsList'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(self, "_methods", []), "_do_", [(function(each){var li=nil;
  1517. li=smalltalk.send(html, "_li", []);smalltalk.send(smalltalk.send(self['@selectedMethod'], "__eq", [each]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);return (function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(each, "_selector", [])]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectMethod_", [each]);})]);})(li);})]);})]);
  1518. return self;},
  1519. source: unescape('updateMethodsList%0A%20%20%20%20methodsList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09self%20methods%20do%3A%20%5B%3Aeach%20%7C%7C%20li%20%7C%0A%09%20%20%20%20li%20%3A%3D%20html%20li.%0A%09%20%20%20%20selectedMethod%20%3D%20each%20ifTrue%3A%20%5B%0A%09%09li%20class%3A%20%27selected%27%5D.%0A%09%20%20%20%20li%0A%09%09with%3A%20each%20selector%3B%0A%09%09onClick%3A%20%5Bself%20selectMethod%3A%20each%5D%5D%5D'),
  1520. messageSends: ["contents:", "do:", "methods", "li", "ifTrue:", unescape("%3D"), "class:", "with:", "selector", "onClick:", "selectMethod:"],
  1521. referencedClasses: []
  1522. }),
  1523. smalltalk.Browser);
  1524. smalltalk.addMethod(
  1525. '_updateTabsList',
  1526. smalltalk.method({
  1527. selector: 'updateTabsList',
  1528. category: 'updating',
  1529. fn: function (){
  1530. var self=this;
  1531. smalltalk.send(self['@tabsList'], "_contents_", [(function(html){var li=nil;
  1532. li=smalltalk.send(html, "_li", []);smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["instance"]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);(function($rec){smalltalk.send($rec, "_with_", ["Instance"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectTab_", ["instance"]);})]);})(li);li=smalltalk.send(html, "_li", []);smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["class"]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);(function($rec){smalltalk.send($rec, "_with_", ["Class"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectTab_", ["class"]);})]);})(li);li=smalltalk.send(html, "_li", []);smalltalk.send(smalltalk.send(self['@selectedTab'], "__eq", ["comment"]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);return (function($rec){smalltalk.send($rec, "_with_", ["Comment"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectTab_", ["comment"]);})]);})(li);})]);
  1533. return self;},
  1534. source: unescape('updateTabsList%0A%20%20%20%20tabsList%20contents%3A%20%5B%3Ahtml%20%7C%7C%20li%20%7C%0A%09li%20%3A%3D%20html%20li.%0A%09selectedTab%20%3D%20%23instance%20ifTrue%3A%20%5Bli%20class%3A%20%27selected%27%5D.%0A%09li%0A%09%20%20%20%20with%3A%20%27Instance%27%3B%0A%09%20%20%20%20onClick%3A%20%5Bself%20selectTab%3A%20%23instance%5D.%0A%09li%20%3A%3D%20html%20li.%0A%09selectedTab%20%3D%20%23class%20ifTrue%3A%20%5Bli%20class%3A%20%27selected%27%5D.%0A%09li%0A%09%20%20%20%20with%3A%20%27Class%27%3B%0A%09%20%20%20%20onClick%3A%20%5Bself%20selectTab%3A%20%23class%5D.%0A%09li%20%3A%3D%20html%20li.%0A%09selectedTab%20%3D%20%23comment%20ifTrue%3A%20%5Bli%20class%3A%20%27selected%27%5D.%0A%09li%0A%09%20%20%20%20with%3A%20%27Comment%27%3B%0A%09%20%20%20%20onClick%3A%20%5Bself%20selectTab%3A%20%23comment%5D%5D'),
  1535. messageSends: ["contents:", "li", "ifTrue:", unescape("%3D"), "class:", "with:", "onClick:", "selectTab:"],
  1536. referencedClasses: []
  1537. }),
  1538. smalltalk.Browser);
  1539. smalltalk.addMethod(
  1540. '_updateSourceAndButtons',
  1541. smalltalk.method({
  1542. selector: 'updateSourceAndButtons',
  1543. category: 'updating',
  1544. fn: function (){
  1545. var self=this;
  1546. smalltalk.send(self, "_disableSaveButton", []);
  1547. smalltalk.send(self['@classButtons'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_with_", ["Rename class"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_renameClass", []);})]);})(smalltalk.send(html, "_button", []));(function($rec){smalltalk.send($rec, "_with_", ["Remove class"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_removeClass", []);})]);})(smalltalk.send(html, "_button", []));return (function($rec){smalltalk.send($rec, "_with_", ["References"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_searchClassReferences", []);})]);})(smalltalk.send(html, "_button", []));})]);
  1548. smalltalk.send(self['@methodButtons'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_with_", ["Remove method"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_removeMethod", []);})]);})(smalltalk.send(html, "_button", []));(function($rec){smalltalk.send($rec, "_onChange_", [(function(e, select){return smalltalk.send(self, "_setMethodProtocol_", [smalltalk.send(select, "_val", [])]);})]);return smalltalk.send($rec, "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", ["Method protocol"]);return smalltalk.send($rec, "_at_put_", ["disabled", "disabled"]);})(smalltalk.send(html, "_option", []));(function($rec){smalltalk.send($rec, "_class_", ["important"]);return smalltalk.send($rec, "_with_", ["New..."]);})(smalltalk.send(html, "_option", []));return smalltalk.send(smalltalk.send(self, "_protocols", []), "_do_", [(function(each){return smalltalk.send(smalltalk.send(html, "_option", []), "_with_", [each]);})]);})]);})(smalltalk.send(html, "_select", []));return smalltalk.send(smalltalk.send(self['@selectedMethod'], "_isNil", []), "_ifFalse_", [(function(){return (function($rec){smalltalk.send($rec, "_onChange_", [(function(e, select){return smalltalk.send(self, "_searchReferencesOf_", [smalltalk.send(select, "_val", [])]);})]);return smalltalk.send($rec, "_with_", [(function(){(function($rec){smalltalk.send($rec, "_with_", ["References"]);return smalltalk.send($rec, "_at_put_", ["disabled", "disabled"]);})(smalltalk.send(html, "_option", []));(function($rec){smalltalk.send($rec, "_class_", ["important"]);return smalltalk.send($rec, "_with_", [smalltalk.send(self['@selectedMethod'], "_selector", [])]);})(smalltalk.send(html, "_option", []));return smalltalk.send(smalltalk.send(smalltalk.send(self['@selectedMethod'], "_messageSends", []), "_sorted", []), "_do_", [(function(each){return smalltalk.send(smalltalk.send(html, "_option", []), "_with_", [each]);})]);})]);})(smalltalk.send(html, "_select", []));})]);})]);
  1549. smalltalk.send(smalltalk.send(self['@selectedMethod'], "_isNil", []), "_ifTrue_ifFalse_", [(function(){smalltalk.send(self, "_hideMethodButtons", []);return smalltalk.send(smalltalk.send(smalltalk.send(self['@selectedClass'], "_isNil", []), "_or_", [(function(){return smalltalk.send(self['@selectedProtocol'], "_notNil", []);})]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self, "_hideClassButtons", []);}), (function(){return smalltalk.send(self, "_showClassButtons", []);})]);}), (function(){smalltalk.send(self, "_hideClassButtons", []);return smalltalk.send(self, "_showMethodButtons", []);})]);
  1550. smalltalk.send(self['@sourceArea'], "_val_", [smalltalk.send(self, "_source", [])]);
  1551. return self;},
  1552. source: unescape('updateSourceAndButtons%0A%09self%20disableSaveButton.%0A%09classButtons%20contents%3A%20%5B%3Ahtml%20%7C%0A%09%09html%20button%0A%09%09%09with%3A%20%27Rename%20class%27%3B%0A%09%09%09onClick%3A%20%5Bself%20renameClass%5D.%0A%09%09html%20button%0A%09%09%09with%3A%20%27Remove%20class%27%3B%0A%09%09%09onClick%3A%20%5Bself%20removeClass%5D.%0A%09%09html%20button%0A%09%09%09with%3A%20%27References%27%3B%0A%09%09%09onClick%3A%20%5Bself%20searchClassReferences%5D%5D.%0A%09methodButtons%20contents%3A%20%5B%3Ahtml%20%7C%0A%09%09html%20button%0A%09%09%09with%3A%20%27Remove%20method%27%3B%0A%09%09%09onClick%3A%20%5Bself%20removeMethod%5D.%0A%09%09html%20select%20%0A%09%20%20%20%20%09%09onChange%3A%20%5B%3Ae%20%3Aselect%20%7C%20self%20setMethodProtocol%3A%20select%20val%5D%3B%0A%09%20%20%20%20%09%09with%3A%20%5B%0A%09%09%09%09html%20option%0A%09%09%20%20%20%20%09%09%09with%3A%20%27Method%20protocol%27%3B%0A%09%09%09%09%09at%3A%20%27disabled%27%20put%3A%20%27disabled%27.%0A%09%09%09%09html%20option%0A%09%09%20%20%20%20%09%09%09class%3A%20%27important%27%3B%0A%09%09%20%20%20%20%09%09%09with%3A%20%27New...%27.%0A%09%09%09%09self%20protocols%20do%3A%20%5B%3Aeach%20%7C%0A%09%09%20%20%20%20%09%09%09html%20option%20with%3A%20each%5D%5D.%0A%09%09selectedMethod%20isNil%20ifFalse%3A%20%5B%0A%09%09%09html%20select%20%0A%09%20%20%20%20%09%09%09onChange%3A%20%5B%3Ae%20%3Aselect%20%7C%20self%20searchReferencesOf%3A%20select%20val%5D%3B%0A%09%20%20%20%20%09%09%09with%3A%20%5B%0A%09%09%09%09%09html%20option%0A%09%09%20%20%20%20%09%09%09%09with%3A%20%27References%27%3B%0A%09%09%09%09%09%09at%3A%20%27disabled%27%20put%3A%20%27disabled%27.%0A%09%09%09%09%09html%20option%0A%09%09%20%20%20%20%09%09%09%09class%3A%20%27important%27%3B%0A%09%09%20%20%20%20%09%09%09%09with%3A%20selectedMethod%20selector.%0A%09%09%09%09%09selectedMethod%20messageSends%20sorted%20do%3A%20%5B%3Aeach%20%7C%0A%09%09%20%20%20%20%09%09%09%09html%20option%20with%3A%20each%5D%5D%5D%5D.%0A%20%20%20%20%09selectedMethod%20isNil%0A%09%09ifTrue%3A%20%5B%0A%09%20%20%20%20%09%09self%20hideMethodButtons.%0A%09%20%20%20%20%09%09%09%28selectedClass%20isNil%20or%3A%20%5BselectedProtocol%20notNil%5D%29%0A%09%09%09%09%09ifTrue%3A%20%5Bself%20hideClassButtons%5D%0A%09%20%20%20%20%09%09%09%09ifFalse%3A%20%5Bself%20showClassButtons%5D%5D%0A%09%09ifFalse%3A%20%5B%0A%09%20%20%20%20%09%09self%20hideClassButtons.%0A%09%20%20%20%20%09%09self%20showMethodButtons%5D.%0A%20%20%20%20%09sourceArea%20val%3A%20self%20source'),
  1553. messageSends: ["disableSaveButton", "contents:", "with:", "onClick:", "renameClass", "button", "removeClass", "searchClassReferences", "removeMethod", "onChange:", "setMethodProtocol:", "val", "at:put:", "option", "class:", "do:", "protocols", "select", "ifFalse:", "isNil", "searchReferencesOf:", "selector", "sorted", "messageSends", "ifTrue:ifFalse:", "hideMethodButtons", "or:", "notNil", "hideClassButtons", "showClassButtons", "showMethodButtons", "val:", "source"],
  1554. referencedClasses: []
  1555. }),
  1556. smalltalk.Browser);
  1557. smalltalk.addMethod(
  1558. '_updateStatus',
  1559. smalltalk.method({
  1560. selector: 'updateStatus',
  1561. category: 'updating',
  1562. fn: function (){
  1563. var self=this;
  1564. smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self['@sourceArea'], "_textarea", []), "_asJQuery", []), "_val", []), "__eq", [smalltalk.send(self, "_source", [])]), "_ifTrue_ifFalse_", [(function(){smalltalk.send(self['@saveButton'], "_ifNotNil_", [(function(){return smalltalk.send(self['@saveButton'], "_at_put_", ["disabled", true]);})]);return self['@unsavedChanges']=false;}), (function(){smalltalk.send(self['@saveButton'], "_ifNotNil_", [(function(){return smalltalk.send(self['@saveButton'], "_removeAt_", ["disabled"]);})]);return self['@unsavedChanges']=true;})]);
  1565. return self;},
  1566. source: unescape('updateStatus%0A%09sourceArea%20textarea%20asJQuery%20val%20%3D%20self%20source%0A%09%09ifTrue%3A%20%5B%0A%09%09%09saveButton%20ifNotNil%3A%20%5B%0A%09%09%09%09saveButton%20at%3A%20%27disabled%27%20put%3A%20true%5D.%0A%20%20%20%20%09%09%09unsavedChanges%20%3A%3D%20false%5D%0A%09%09ifFalse%3A%20%5B%0A%09%09%09saveButton%20ifNotNil%3A%20%5B%0A%20%20%20%20%09%09%09%09saveButton%20removeAt%3A%20%27disabled%27%5D.%0A%20%20%20%20%09%09%09unsavedChanges%20%3A%3D%20true%5D'),
  1567. messageSends: ["ifTrue:ifFalse:", unescape("%3D"), "val", "asJQuery", "textarea", "source", "ifNotNil:", "at:put:", "removeAt:"],
  1568. referencedClasses: []
  1569. }),
  1570. smalltalk.Browser);
  1571. smalltalk.addMethod(
  1572. '_selectedClass',
  1573. smalltalk.method({
  1574. selector: 'selectedClass',
  1575. category: 'accessing',
  1576. fn: function (){
  1577. var self=this;
  1578. return self['@selectedClass'];
  1579. return self;},
  1580. source: unescape('selectedClass%0A%09%5EselectedClass'),
  1581. messageSends: [],
  1582. referencedClasses: []
  1583. }),
  1584. smalltalk.Browser);
  1585. smalltalk.addMethod(
  1586. '_resetClassesList',
  1587. smalltalk.method({
  1588. selector: 'resetClassesList',
  1589. category: 'updating',
  1590. fn: function (){
  1591. var self=this;
  1592. smalltalk.send(self['@classesList'], "_resetNodes", []);
  1593. return self;},
  1594. source: unescape('resetClassesList%0A%09classesList%20resetNodes'),
  1595. messageSends: ["resetNodes"],
  1596. referencedClasses: []
  1597. }),
  1598. smalltalk.Browser);
  1599. smalltalk.addMethod(
  1600. '_commitPathJs',
  1601. smalltalk.method({
  1602. selector: 'commitPathJs',
  1603. category: 'accessing',
  1604. fn: function (){
  1605. var self=this;
  1606. return "js";
  1607. return self;},
  1608. source: unescape('commitPathJs%0A%09%5E%27js%27'),
  1609. messageSends: [],
  1610. referencedClasses: []
  1611. }),
  1612. smalltalk.Browser.klass);
  1613. smalltalk.addMethod(
  1614. '_commitPathSt',
  1615. smalltalk.method({
  1616. selector: 'commitPathSt',
  1617. category: 'accessing',
  1618. fn: function (){
  1619. var self=this;
  1620. return "st";
  1621. return self;},
  1622. source: unescape('commitPathSt%0A%09%5E%27st%27'),
  1623. messageSends: [],
  1624. referencedClasses: []
  1625. }),
  1626. smalltalk.Browser.klass);
  1627. smalltalk.addMethod(
  1628. '_openOn_',
  1629. smalltalk.method({
  1630. selector: 'openOn:',
  1631. category: 'convenience',
  1632. fn: function (aClass){
  1633. var self=this;
  1634. return (function($rec){smalltalk.send($rec, "_open", []);smalltalk.send($rec, "_selectCategory_", [smalltalk.send(aClass, "_category", [])]);return smalltalk.send($rec, "_selectClass_", [aClass]);})(smalltalk.send(self, "_new", []));
  1635. return self;},
  1636. source: unescape('openOn%3A%20aClass%0A%20%20%20%20%5Eself%20new%0A%09open%3B%0A%09selectCategory%3A%20aClass%20category%3B%0A%09selectClass%3A%20aClass'),
  1637. messageSends: ["open", "selectCategory:", "category", "selectClass:", "new"],
  1638. referencedClasses: []
  1639. }),
  1640. smalltalk.Browser.klass);
  1641. smalltalk.addMethod(
  1642. '_open',
  1643. smalltalk.method({
  1644. selector: 'open',
  1645. category: 'convenience',
  1646. fn: function (){
  1647. var self=this;
  1648. smalltalk.send(smalltalk.send(self, "_new", []), "_open", []);
  1649. return self;},
  1650. source: unescape('open%0A%20%20%20%20self%20new%20open'),
  1651. messageSends: ["open", "new"],
  1652. referencedClasses: []
  1653. }),
  1654. smalltalk.Browser.klass);
  1655. smalltalk.addClass('Inspector', smalltalk.TabWidget, ['label', 'variables', 'object', 'selectedVariable', 'variablesList', 'valueTextarea', 'workspaceTextarea', 'diveButton'], 'IDE');
  1656. smalltalk.addMethod(
  1657. '_label',
  1658. smalltalk.method({
  1659. selector: 'label',
  1660. category: 'accessing',
  1661. fn: function (){
  1662. var self=this;
  1663. return smalltalk.send(self['@label'], "_ifNil_", [(function(){return unescape("Inspector%20%28nil%29");})]);
  1664. return self;},
  1665. source: unescape('label%0A%09%5Elabel%20ifNil%3A%20%5B%27Inspector%20%28nil%29%27%5D'),
  1666. messageSends: ["ifNil:"],
  1667. referencedClasses: []
  1668. }),
  1669. smalltalk.Inspector);
  1670. smalltalk.addMethod(
  1671. '_variables',
  1672. smalltalk.method({
  1673. selector: 'variables',
  1674. category: 'accessing',
  1675. fn: function (){
  1676. var self=this;
  1677. return self['@variables'];
  1678. return self;},
  1679. source: unescape('variables%0A%09%5Evariables'),
  1680. messageSends: [],
  1681. referencedClasses: []
  1682. }),
  1683. smalltalk.Inspector);
  1684. smalltalk.addMethod(
  1685. '_setVariables_',
  1686. smalltalk.method({
  1687. selector: 'setVariables:',
  1688. category: 'accessing',
  1689. fn: function (aCollection){
  1690. var self=this;
  1691. self['@variables']=aCollection;
  1692. return self;},
  1693. source: unescape('setVariables%3A%20aCollection%0A%09variables%20%3A%3D%20aCollection'),
  1694. messageSends: [],
  1695. referencedClasses: []
  1696. }),
  1697. smalltalk.Inspector);
  1698. smalltalk.addMethod(
  1699. '_setLabel_',
  1700. smalltalk.method({
  1701. selector: 'setLabel:',
  1702. category: 'accessing',
  1703. fn: function (aString){
  1704. var self=this;
  1705. self['@label']=aString;
  1706. return self;},
  1707. source: unescape('setLabel%3A%20aString%0A%09label%20%3A%3D%20aString'),
  1708. messageSends: [],
  1709. referencedClasses: []
  1710. }),
  1711. smalltalk.Inspector);
  1712. smalltalk.addMethod(
  1713. '_selectedVariable',
  1714. smalltalk.method({
  1715. selector: 'selectedVariable',
  1716. category: 'accessing',
  1717. fn: function (){
  1718. var self=this;
  1719. return self['@selectedVariable'];
  1720. return self;},
  1721. source: unescape('selectedVariable%0A%09%5EselectedVariable'),
  1722. messageSends: [],
  1723. referencedClasses: []
  1724. }),
  1725. smalltalk.Inspector);
  1726. smalltalk.addMethod(
  1727. '_selectedVariable_',
  1728. smalltalk.method({
  1729. selector: 'selectedVariable:',
  1730. category: 'accessing',
  1731. fn: function (aString){
  1732. var self=this;
  1733. self['@selectedVariable']=aString;
  1734. return self;},
  1735. source: unescape('selectedVariable%3A%20aString%0A%09selectedVariable%20%3A%3D%20aString'),
  1736. messageSends: [],
  1737. referencedClasses: []
  1738. }),
  1739. smalltalk.Inspector);
  1740. smalltalk.addMethod(
  1741. '_inspect_',
  1742. smalltalk.method({
  1743. selector: 'inspect:',
  1744. category: 'actions',
  1745. fn: function (anObject){
  1746. var self=this;
  1747. self['@object']=anObject;
  1748. self['@variables']=[];
  1749. smalltalk.send(self['@object'], "_inspectOn_", [self]);
  1750. return self;},
  1751. source: unescape('inspect%3A%20anObject%0A%09object%20%3A%3D%20anObject.%0A%09variables%20%3A%3D%20%23%28%29.%0A%09object%20inspectOn%3A%20self'),
  1752. messageSends: ["inspectOn:"],
  1753. referencedClasses: []
  1754. }),
  1755. smalltalk.Inspector);
  1756. smalltalk.addMethod(
  1757. '_dive',
  1758. smalltalk.method({
  1759. selector: 'dive',
  1760. category: 'actions',
  1761. fn: function (){
  1762. var self=this;
  1763. smalltalk.send(smalltalk.send(smalltalk.send(self, "_variables", []), "_at_", [smalltalk.send(self, "_selectedVariable", [])]), "_inspect", []);
  1764. return self;},
  1765. source: unescape('dive%0A%09%28self%20variables%20at%3A%20self%20selectedVariable%29%20inspect'),
  1766. messageSends: ["inspect", "at:", "variables", "selectedVariable"],
  1767. referencedClasses: []
  1768. }),
  1769. smalltalk.Inspector);
  1770. smalltalk.addMethod(
  1771. '_refresh',
  1772. smalltalk.method({
  1773. selector: 'refresh',
  1774. category: 'actions',
  1775. fn: function (){
  1776. var self=this;
  1777. (function($rec){smalltalk.send($rec, "_inspect_", [self['@object']]);smalltalk.send($rec, "_updateVariablesList", []);return smalltalk.send($rec, "_updateValueTextarea", []);})(self);
  1778. return self;},
  1779. source: unescape('refresh%0A%09self%20%0A%09%09inspect%3A%20object%3B%20%0A%09%09updateVariablesList%3B%0A%09%09updateValueTextarea'),
  1780. messageSends: ["inspect:", "updateVariablesList", "updateValueTextarea"],
  1781. referencedClasses: []
  1782. }),
  1783. smalltalk.Inspector);
  1784. smalltalk.addMethod(
  1785. '_renderBoxOn_',
  1786. smalltalk.method({
  1787. selector: 'renderBoxOn:',
  1788. category: 'rendering',
  1789. fn: function (html){
  1790. var self=this;
  1791. (function($rec){smalltalk.send($rec, "_renderTopPanelOn_", [html]);return smalltalk.send($rec, "_renderBottomPanelOn_", [html]);})(self);
  1792. return self;},
  1793. source: unescape('renderBoxOn%3A%20html%0A%09self%20%0A%09%09renderTopPanelOn%3A%20html%3B%0A%09%09renderBottomPanelOn%3A%20html'),
  1794. messageSends: ["renderTopPanelOn:", "renderBottomPanelOn:"],
  1795. referencedClasses: []
  1796. }),
  1797. smalltalk.Inspector);
  1798. smalltalk.addMethod(
  1799. '_renderTopPanelOn_',
  1800. smalltalk.method({
  1801. selector: 'renderTopPanelOn:',
  1802. category: 'rendering',
  1803. fn: function (html){
  1804. var self=this;
  1805. (function($rec){smalltalk.send($rec, "_class_", ["top"]);return smalltalk.send($rec, "_with_", [(function(){self['@variablesList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_column variables"]);self['@valueTextarea']=(function($rec){smalltalk.send($rec, "_class_", ["jt_column value"]);return smalltalk.send($rec, "_at_put_", ["readonly", "readonly"]);})(smalltalk.send(html, "_textarea", []));(function($rec){smalltalk.send($rec, "_updateVariablesList", []);return smalltalk.send($rec, "_updateValueTextarea", []);})(self);return smalltalk.send(smalltalk.send(html, "_div", []), "_class_", ["jt_clear"]);})]);})(smalltalk.send(html, "_div", []));
  1806. return self;},
  1807. source: unescape('renderTopPanelOn%3A%20html%0A%20%20%20%20html%20div%20%0A%09class%3A%20%27top%27%3B%20%0A%09with%3A%20%5B%0A%09%20%20%20%20variablesList%20%3A%3D%20html%20ul%20class%3A%20%27jt_column%20variables%27.%0A%09%20%20%20%20valueTextarea%20%3A%3D%20html%20textarea%20class%3A%20%27jt_column%20value%27%3B%20at%3A%20%27readonly%27%20put%3A%20%27readonly%27.%0A%09%20%20%20%20self%0A%09%09updateVariablesList%3B%0A%09%09updateValueTextarea.%0A%09%20%20%20%20html%20div%20class%3A%20%27jt_clear%27%5D'),
  1808. messageSends: ["class:", "with:", "ul", "at:put:", "textarea", "updateVariablesList", "updateValueTextarea", "div"],
  1809. referencedClasses: []
  1810. }),
  1811. smalltalk.Inspector);
  1812. smalltalk.addMethod(
  1813. '_renderBottomPanelOn_',
  1814. smalltalk.method({
  1815. selector: 'renderBottomPanelOn:',
  1816. category: 'rendering',
  1817. fn: function (html){
  1818. var self=this;
  1819. (function($rec){smalltalk.send($rec, "_class_", ["jt_sourceCode"]);return smalltalk.send($rec, "_with_", [(function(){self['@workspaceTextarea']=(function($rec){smalltalk.send($rec, "_class_", ["source"]);return smalltalk.send($rec, "_at_put_", ["spellcheck", "false"]);})(smalltalk.send(html, "_textarea", []));return smalltalk.send(smalltalk.send(self['@workspaceTextarea'], "_asJQuery", []), "_call_", ["tabby"]);})]);})(smalltalk.send(html, "_div", []));
  1820. return self;},
  1821. source: unescape('renderBottomPanelOn%3A%20html%0A%20%20%20%20html%20div%0A%09class%3A%20%27jt_sourceCode%27%3B%0A%09with%3A%20%5B%0A%09%20%20%20%20workspaceTextarea%20%3A%3D%20html%20textarea%20%0A%09%09class%3A%20%27source%27%3B%0A%09%09at%3A%20%27spellcheck%27%20put%3A%20%27false%27.%0A%09%20%20%20%20workspaceTextarea%20asJQuery%20call%3A%20%27tabby%27%5D'),
  1822. messageSends: ["class:", "with:", "at:put:", "textarea", "call:", "asJQuery", "div"],
  1823. referencedClasses: []
  1824. }),
  1825. smalltalk.Inspector);
  1826. smalltalk.addMethod(
  1827. '_renderButtonsOn_',
  1828. smalltalk.method({
  1829. selector: 'renderButtonsOn:',
  1830. category: 'rendering',
  1831. fn: function (html){
  1832. var self=this;
  1833. (function($rec){smalltalk.send($rec, "_with_", ["Refresh"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_refresh", []);})]);})(smalltalk.send(html, "_button", []));
  1834. self['@diveButton']=(function($rec){smalltalk.send($rec, "_with_", ["Dive"]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_dive", []);})]);})(smalltalk.send(html, "_button", []));
  1835. smalltalk.send(self, "_updateButtons", []);
  1836. return self;},
  1837. source: unescape('renderButtonsOn%3A%20html%0A%09html%20button%0A%09%09with%3A%20%27Refresh%27%3B%0A%09%09onClick%3A%20%5Bself%20refresh%5D.%0A%09diveButton%20%3A%3D%20html%20button%20%0A%09%09with%3A%20%27Dive%27%3B%20%0A%09%09onClick%3A%20%5Bself%20dive%5D.%0A%09self%20updateButtons'),
  1838. messageSends: ["with:", "onClick:", "refresh", "button", "dive", "updateButtons"],
  1839. referencedClasses: []
  1840. }),
  1841. smalltalk.Inspector);
  1842. smalltalk.addMethod(
  1843. '_canBeClosed',
  1844. smalltalk.method({
  1845. selector: 'canBeClosed',
  1846. category: 'testing',
  1847. fn: function (){
  1848. var self=this;
  1849. return true;
  1850. return self;},
  1851. source: unescape('canBeClosed%0A%09%5Etrue'),
  1852. messageSends: [],
  1853. referencedClasses: []
  1854. }),
  1855. smalltalk.Inspector);
  1856. smalltalk.addMethod(
  1857. '_updateVariablesList',
  1858. smalltalk.method({
  1859. selector: 'updateVariablesList',
  1860. category: 'updating',
  1861. fn: function (){
  1862. var self=this;
  1863. smalltalk.send(self['@variablesList'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(smalltalk.send(self, "_variables", []), "_keys", []), "_do_", [(function(each){var li=nil;
  1864. li=smalltalk.send(html, "_li", []);(function($rec){smalltalk.send($rec, "_with_", [each]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectVariable_", [each]);})]);})(li);return smalltalk.send(smalltalk.send(smalltalk.send(self, "_selectedVariable", []), "__eq", [each]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);})]);})]);
  1865. return self;},
  1866. source: unescape('updateVariablesList%0A%09variablesList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09%09self%20variables%20keys%20do%3A%20%5B%3Aeach%20%7C%7C%20li%20%7C%0A%09%09%09li%20%3A%3D%20html%20li.%0A%09%09%09li%0A%09%09%09%09with%3A%20each%3B%0A%09%09%09%09onClick%3A%20%5Bself%20selectVariable%3A%20each%5D.%0A%09%09%09self%20selectedVariable%20%3D%20each%20ifTrue%3A%20%5B%0A%09%09%09%09li%20class%3A%20%27selected%27%5D%5D%5D'),
  1867. messageSends: ["contents:", "do:", "keys", "variables", "li", "with:", "onClick:", "selectVariable:", "ifTrue:", unescape("%3D"), "selectedVariable", "class:"],
  1868. referencedClasses: []
  1869. }),
  1870. smalltalk.Inspector);
  1871. smalltalk.addMethod(
  1872. '_selectVariable_',
  1873. smalltalk.method({
  1874. selector: 'selectVariable:',
  1875. category: 'updating',
  1876. fn: function (aString){
  1877. var self=this;
  1878. smalltalk.send(self, "_selectedVariable_", [aString]);
  1879. (function($rec){smalltalk.send($rec, "_updateVariablesList", []);smalltalk.send($rec, "_updateValueTextarea", []);return smalltalk.send($rec, "_updateButtons", []);})(self);
  1880. return self;},
  1881. source: unescape('selectVariable%3A%20aString%0A%09self%20selectedVariable%3A%20aString.%0A%09self%20%0A%09%09updateVariablesList%3B%0A%09%09updateValueTextarea%3B%0A%09%09updateButtons'),
  1882. messageSends: ["selectedVariable:", "updateVariablesList", "updateValueTextarea", "updateButtons"],
  1883. referencedClasses: []
  1884. }),
  1885. smalltalk.Inspector);
  1886. smalltalk.addMethod(
  1887. '_updateValueTextarea',
  1888. smalltalk.method({
  1889. selector: 'updateValueTextarea',
  1890. category: 'updating',
  1891. fn: function (){
  1892. var self=this;
  1893. smalltalk.send(smalltalk.send(self['@valueTextarea'], "_asJQuery", []), "_val_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_selectedVariable", []), "_isNil", []), "_ifTrue_ifFalse_", [(function(){return "";}), (function(){return smalltalk.send(smalltalk.send(smalltalk.send(self, "_variables", []), "_at_", [smalltalk.send(self, "_selectedVariable", [])]), "_printString", []);})])]);
  1894. return self;},
  1895. source: unescape('updateValueTextarea%0A%09valueTextarea%20asJQuery%20val%3A%20%28self%20selectedVariable%20isNil%0A%09%09ifTrue%3A%20%5B%27%27%5D%0A%09%09ifFalse%3A%20%5B%28self%20variables%20at%3A%20self%20selectedVariable%29%20printString%5D%29'),
  1896. messageSends: ["val:", "asJQuery", "ifTrue:ifFalse:", "isNil", "selectedVariable", "printString", "at:", "variables"],
  1897. referencedClasses: []
  1898. }),
  1899. smalltalk.Inspector);
  1900. smalltalk.addMethod(
  1901. '_updateButtons',
  1902. smalltalk.method({
  1903. selector: 'updateButtons',
  1904. category: 'updating',
  1905. fn: function (){
  1906. var self=this;
  1907. smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_selectedVariable", []), "_notNil", []), "_and_", [(function(){return smalltalk.send(smalltalk.send(smalltalk.send(self, "_variables", []), "_at_", [smalltalk.send(self, "_selectedVariable", [])]), "_notNil", []);})]), "_ifFalse_ifTrue_", [(function(){return smalltalk.send(self['@diveButton'], "_at_put_", ["disabled", true]);}), (function(){return smalltalk.send(self['@diveButton'], "_removeAt_", ["disabled"]);})]);
  1908. return self;},
  1909. source: unescape('updateButtons%0A%09%28self%20selectedVariable%20notNil%20and%3A%20%5B%28self%20variables%20at%3A%20self%20selectedVariable%29%20notNil%5D%29%0A%09%09ifFalse%3A%20%5BdiveButton%20at%3A%20%27disabled%27%20put%3A%20true%5D%20%0A%09%09ifTrue%3A%20%5BdiveButton%20removeAt%3A%20%27disabled%27%5D'),
  1910. messageSends: ["ifFalse:ifTrue:", "and:", "notNil", "selectedVariable", "at:", "variables", "at:put:", "removeAt:"],
  1911. referencedClasses: []
  1912. }),
  1913. smalltalk.Inspector);
  1914. smalltalk.addMethod(
  1915. '_on_',
  1916. smalltalk.method({
  1917. selector: 'on:',
  1918. category: 'instance creation',
  1919. fn: function (anObject){
  1920. var self=this;
  1921. return (function($rec){smalltalk.send($rec, "_inspect_", [anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  1922. return self;},
  1923. source: unescape('on%3A%20anObject%0A%09%5Eself%20new%0A%09%09inspect%3A%20anObject%3B%0A%09%09yourself'),
  1924. messageSends: ["inspect:", "yourself", "new"],
  1925. referencedClasses: []
  1926. }),
  1927. smalltalk.Inspector.klass);
  1928. smalltalk.addClass('ReferencesBrowser', smalltalk.TabWidget, ['implementors', 'senders', 'implementorsList', 'input', 'timer', 'selector', 'sendersList', 'referencedClasses', 'referencedClassesList'], 'IDE');
  1929. smalltalk.addMethod(
  1930. '_implementors',
  1931. smalltalk.method({
  1932. selector: 'implementors',
  1933. category: 'accessing',
  1934. fn: function (){
  1935. var self=this;
  1936. return smalltalk.send(self['@implementors'], "_ifNil_", [(function(){return self['@implementors']=smalltalk.send(smalltalk.Array, "_new", []);})]);
  1937. return self;},
  1938. source: unescape('implementors%0A%09%5Eimplementors%20ifNil%3A%20%5Bimplementors%20%3A%3D%20Array%20new%5D'),
  1939. messageSends: ["ifNil:", "new"],
  1940. referencedClasses: [smalltalk.Array]
  1941. }),
  1942. smalltalk.ReferencesBrowser);
  1943. smalltalk.addMethod(
  1944. '_label',
  1945. smalltalk.method({
  1946. selector: 'label',
  1947. category: 'accessing',
  1948. fn: function (){
  1949. var self=this;
  1950. return unescape("%5BReferencesBrowser%5D");
  1951. return self;},
  1952. source: unescape('label%0A%09%5E%27%5BReferencesBrowser%5D%27'),
  1953. messageSends: [],
  1954. referencedClasses: []
  1955. }),
  1956. smalltalk.ReferencesBrowser);
  1957. smalltalk.addMethod(
  1958. '_selector',
  1959. smalltalk.method({
  1960. selector: 'selector',
  1961. category: 'accessing',
  1962. fn: function (){
  1963. var self=this;
  1964. return self['@selector'];
  1965. return self;},
  1966. source: unescape('selector%0A%09%5Eselector'),
  1967. messageSends: [],
  1968. referencedClasses: []
  1969. }),
  1970. smalltalk.ReferencesBrowser);
  1971. smalltalk.addMethod(
  1972. '_senders',
  1973. smalltalk.method({
  1974. selector: 'senders',
  1975. category: 'accessing',
  1976. fn: function (){
  1977. var self=this;
  1978. return smalltalk.send(self['@senders'], "_ifNil_", [(function(){return self['@senders']=smalltalk.send(smalltalk.Array, "_new", []);})]);
  1979. return self;},
  1980. source: unescape('senders%0A%09%5Esenders%20ifNil%3A%20%5Bsenders%20%3A%3D%20Array%20new%5D'),
  1981. messageSends: ["ifNil:", "new"],
  1982. referencedClasses: [smalltalk.Array]
  1983. }),
  1984. smalltalk.ReferencesBrowser);
  1985. smalltalk.addMethod(
  1986. '_classesAndMetaclasses',
  1987. smalltalk.method({
  1988. selector: 'classesAndMetaclasses',
  1989. category: 'accessing',
  1990. fn: function (){
  1991. var self=this;
  1992. return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.Smalltalk, "_current", []), "_classes", []), "__comma", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.Smalltalk, "_current", []), "_classes", []), "_collect_", [(function(each){return smalltalk.send(each, "_class", []);})])]);
  1993. return self;},
  1994. source: unescape('classesAndMetaclasses%0A%09%5ESmalltalk%20current%20classes%2C%20%28Smalltalk%20current%20classes%20collect%3A%20%5B%3Aeach%20%7C%20each%20class%5D%29'),
  1995. messageSends: [unescape("%2C"), "classes", "current", "collect:", "class"],
  1996. referencedClasses: [smalltalk.Smalltalk]
  1997. }),
  1998. smalltalk.ReferencesBrowser);
  1999. smalltalk.addMethod(
  2000. '_referencedClasses',
  2001. smalltalk.method({
  2002. selector: 'referencedClasses',
  2003. category: 'accessing',
  2004. fn: function (){
  2005. var self=this;
  2006. return smalltalk.send(self['@referencedClasses'], "_ifNil_", [(function(){return self['@referencedClasses']=smalltalk.send(smalltalk.Array, "_new", []);})]);
  2007. return self;},
  2008. source: unescape('referencedClasses%0A%09%5EreferencedClasses%20ifNil%3A%20%5BreferencedClasses%20%3A%3D%20Array%20new%5D'),
  2009. messageSends: ["ifNil:", "new"],
  2010. referencedClasses: [smalltalk.Array]
  2011. }),
  2012. smalltalk.ReferencesBrowser);
  2013. smalltalk.addMethod(
  2014. '_openBrowserOn_',
  2015. smalltalk.method({
  2016. selector: 'openBrowserOn:',
  2017. category: 'actions',
  2018. fn: function (aMethod){
  2019. var self=this;
  2020. var browser=nil;
  2021. browser=smalltalk.send(smalltalk.Browser, "_openOn_", [smalltalk.send(smalltalk.send(smalltalk.send(aMethod, "_class", []), "_isMetaclass", []), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(smalltalk.send(aMethod, "_methodClass", []), "_instanceClass", []);}), (function(){return smalltalk.send(aMethod, "_methodClass", []);})])]);
  2022. smalltalk.send(smalltalk.send(smalltalk.send(aMethod, "_methodClass", []), "_isMetaclass", []), "_ifTrue_", [(function(){return smalltalk.send(browser, "_selectTab_", ["class"]);})]);
  2023. (function($rec){smalltalk.send($rec, "_selectProtocol_", [smalltalk.send(aMethod, "_category", [])]);return smalltalk.send($rec, "_selectMethod_", [aMethod]);})(browser);
  2024. return self;},
  2025. source: unescape('openBrowserOn%3A%20aMethod%0A%20%20%20%20%20%20%20%7C%20browser%20%7C%0A%20%20%20%20%20%20%20browser%20%3A%3D%20Browser%20openOn%3A%20%28aMethod%20class%20isMetaclass%20%0A%09%09ifTrue%3A%20%5BaMethod%20methodClass%20instanceClass%5D%20ifFalse%3A%20%5BaMethod%20methodClass%5D%29.%0A%20%20%20%20%20%20%20aMethod%20methodClass%20isMetaclass%20ifTrue%3A%20%5Bbrowser%20selectTab%3A%20%23class%5D.%0A%20%20%20%20%20%20%20browser%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20selectProtocol%3A%20aMethod%20category%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20selectMethod%3A%20aMethod'),
  2026. messageSends: ["openOn:", "ifTrue:ifFalse:", "isMetaclass", "class", "instanceClass", "methodClass", "ifTrue:", "selectTab:", "selectProtocol:", "category", "selectMethod:"],
  2027. referencedClasses: [smalltalk.Browser]
  2028. }),
  2029. smalltalk.ReferencesBrowser);
  2030. smalltalk.addMethod(
  2031. '_searchReferencesFor_',
  2032. smalltalk.method({
  2033. selector: 'searchReferencesFor:',
  2034. category: 'actions',
  2035. fn: function (aString){
  2036. var self=this;
  2037. self['@selector']=aString;
  2038. self['@implementors']=smalltalk.send(smalltalk.Array, "_new", []);
  2039. self['@senders']=smalltalk.send(smalltalk.Array, "_new", []);
  2040. self['@referencedClasses']=smalltalk.send(smalltalk.Array, "_new", []);
  2041. smalltalk.send(smalltalk.send(self['@selector'], "_match_", [unescape("%5E%5BA-Z%5D")]), "_ifFalse_ifTrue_", [(function(){return smalltalk.send(self, "_searchSelectorReferencesFor_", [self['@selector']]);}), (function(){return smalltalk.send(self, "_searchReferencedClassesFor_", [self['@selector']]);})]);
  2042. return self;},
  2043. source: unescape('searchReferencesFor%3A%20aString%0A%09selector%20%3A%3D%20aString.%0A%09implementors%20%3A%3D%20Array%20new.%0A%09senders%20%3A%3D%20Array%20new.%0A%09referencedClasses%20%3A%3D%20Array%20new.%0A%09%28selector%20match%3A%20%27%5E%5BA-Z%5D%27%29%20%0A%09%09ifFalse%3A%20%5Bself%20searchSelectorReferencesFor%3A%20selector%5D%0A%09%09ifTrue%3A%20%5Bself%20searchReferencedClassesFor%3A%20selector%5D'),
  2044. messageSends: ["new", "ifFalse:ifTrue:", "match:", "searchSelectorReferencesFor:", "searchReferencedClassesFor:"],
  2045. referencedClasses: [smalltalk.Array]
  2046. }),
  2047. smalltalk.ReferencesBrowser);
  2048. smalltalk.addMethod(
  2049. '_search_',
  2050. smalltalk.method({
  2051. selector: 'search:',
  2052. category: 'actions',
  2053. fn: function (aString){
  2054. var self=this;
  2055. (function($rec){smalltalk.send($rec, "_searchReferencesFor_", [aString]);smalltalk.send($rec, "_updateImplementorsList", []);smalltalk.send($rec, "_updateSendersList", []);return smalltalk.send($rec, "_updateReferencedClassesList", []);})(self);
  2056. return self;},
  2057. source: unescape('search%3A%20aString%0A%09self%20%0A%09%09searchReferencesFor%3A%20aString%3B%0A%09%09updateImplementorsList%3B%0A%09%09updateSendersList%3B%0A%09%09updateReferencedClassesList'),
  2058. messageSends: ["searchReferencesFor:", "updateImplementorsList", "updateSendersList", "updateReferencedClassesList"],
  2059. referencedClasses: []
  2060. }),
  2061. smalltalk.ReferencesBrowser);
  2062. smalltalk.addMethod(
  2063. '_searchReferencedClassesFor_',
  2064. smalltalk.method({
  2065. selector: 'searchReferencedClassesFor:',
  2066. category: 'actions',
  2067. fn: function (aString){
  2068. var self=this;
  2069. smalltalk.send(smalltalk.send(self, "_classesAndMetaclasses", []), "_do_", [(function(each){return smalltalk.send(smalltalk.send(smalltalk.send(each, "_methodDictionary", []), "_values", []), "_do_", [(function(value){return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(value, "_referencedClasses", []), "_select_", [(function(each){return smalltalk.send(each, "_notNil", []);})]), "_collect_", [(function(each){return smalltalk.send(each, "_name", []);})]), "_includes_", [self['@selector']]), "_ifTrue_", [(function(){return smalltalk.send(smalltalk.send(self, "_referencedClasses", []), "_add_", [value]);})]);})]);})]);
  2070. return self;},
  2071. source: unescape('searchReferencedClassesFor%3A%20aString%0A%09self%20classesAndMetaclasses%20do%3A%20%5B%3Aeach%20%7C%0A%09%09each%20methodDictionary%20values%20do%3A%20%5B%3Avalue%20%7C%0A%09%09%09%28%28%28value%20referencedClasses%20select%3A%20%5B%3Aeach%20%7C%20each%20notNil%5D%29collect%3A%20%5B%3Aeach%20%7C%20each%20name%5D%29%20includes%3A%20selector%29%20ifTrue%3A%20%5B%0A%09%09%09%09self%20referencedClasses%20add%3A%20value%5D%5D%5D'),
  2072. messageSends: ["do:", "classesAndMetaclasses", "values", "methodDictionary", "ifTrue:", "includes:", "collect:", "select:", "referencedClasses", "notNil", "name", "add:"],
  2073. referencedClasses: []
  2074. }),
  2075. smalltalk.ReferencesBrowser);
  2076. smalltalk.addMethod(
  2077. '_searchSelectorReferencesFor_',
  2078. smalltalk.method({
  2079. selector: 'searchSelectorReferencesFor:',
  2080. category: 'actions',
  2081. fn: function (aString){
  2082. var self=this;
  2083. smalltalk.send(smalltalk.send(self, "_classesAndMetaclasses", []), "_do_", [(function(each){smalltalk.send(smalltalk.send(each, "_methodDictionary", []), "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(smalltalk.send(key, "__eq", [self['@selector']]), "_ifTrue_", [(function(){return smalltalk.send(smalltalk.send(self, "_implementors", []), "_add_", [value]);})]);})]);return smalltalk.send(smalltalk.send(each, "_methodDictionary", []), "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(smalltalk.send(smalltalk.send(value, "_messageSends", []), "_includes_", [self['@selector']]), "_ifTrue_", [(function(){return smalltalk.send(smalltalk.send(self, "_senders", []), "_add_", [value]);})]);})]);})]);
  2084. return self;},
  2085. source: unescape('searchSelectorReferencesFor%3A%20aString%0A%09self%20classesAndMetaclasses%20do%3A%20%5B%3Aeach%20%7C%20%0A%09%09each%20methodDictionary%20keysAndValuesDo%3A%20%5B%3Akey%20%3Avalue%20%7C%20%0A%09%09%09key%20%3D%20selector%20ifTrue%3A%20%5Bself%20implementors%20add%3A%20value%5D%5D.%0A%09%09each%20methodDictionary%20keysAndValuesDo%3A%20%5B%3Akey%20%3Avalue%20%7C%20%0A%09%09%09%28value%20messageSends%20includes%3A%20selector%29%20ifTrue%3A%20%5B%0A%09%09%09%09self%20senders%20add%3A%20value%5D%5D%5D'),
  2086. messageSends: ["do:", "classesAndMetaclasses", "keysAndValuesDo:", "methodDictionary", "ifTrue:", unescape("%3D"), "add:", "implementors", "includes:", "messageSends", "senders"],
  2087. referencedClasses: []
  2088. }),
  2089. smalltalk.ReferencesBrowser);
  2090. smalltalk.addMethod(
  2091. '_initialize',
  2092. smalltalk.method({
  2093. selector: 'initialize',
  2094. category: 'initialization',
  2095. fn: function (){
  2096. var self=this;
  2097. smalltalk.send(self, "_initialize", [], smalltalk.TabWidget);
  2098. self['@selector']="";
  2099. return self;},
  2100. source: unescape('initialize%0A%09super%20initialize.%0A%09selector%20%3A%3D%20%27%27'),
  2101. messageSends: ["initialize"],
  2102. referencedClasses: []
  2103. }),
  2104. smalltalk.ReferencesBrowser);
  2105. smalltalk.addMethod(
  2106. '_setInputEvents',
  2107. smalltalk.method({
  2108. selector: 'setInputEvents',
  2109. category: 'private',
  2110. fn: function (){
  2111. var self=this;
  2112. (function($rec){smalltalk.send($rec, "_onKeyUp_", [(function(){return self['@timer']=smalltalk.send((function(){return smalltalk.send(self, "_search_", [smalltalk.send(smalltalk.send(self['@input'], "_asJQuery", []), "_val", [])]);}), "_valueWithTimeout_", [(100)]);})]);return smalltalk.send($rec, "_onKeyDown_", [(function(){return smalltalk.send(self['@timer'], "_ifNotNil_", [(function(){return smalltalk.send(self['@timer'], "_clearTimeout", []);})]);})]);})(self['@input']);
  2113. return self;},
  2114. source: unescape('setInputEvents%0A%09input%0A%09%09onKeyUp%3A%20%5Btimer%20%3A%3D%20%5Bself%20search%3A%20input%20asJQuery%20val%5D%20valueWithTimeout%3A%20100%5D%3B%0A%09%09onKeyDown%3A%20%5Btimer%20ifNotNil%3A%20%5Btimer%20clearTimeout%5D%5D'),
  2115. messageSends: ["onKeyUp:", "valueWithTimeout:", "search:", "val", "asJQuery", "onKeyDown:", "ifNotNil:", "clearTimeout"],
  2116. referencedClasses: []
  2117. }),
  2118. smalltalk.ReferencesBrowser);
  2119. smalltalk.addMethod(
  2120. '_renderBoxOn_',
  2121. smalltalk.method({
  2122. selector: 'renderBoxOn:',
  2123. category: 'rendering',
  2124. fn: function (html){
  2125. var self=this;
  2126. (function($rec){smalltalk.send($rec, "_renderInputOn_", [html]);smalltalk.send($rec, "_renderImplementorsOn_", [html]);smalltalk.send($rec, "_renderSendersOn_", [html]);return smalltalk.send($rec, "_renderReferencedClassesOn_", [html]);})(self);
  2127. return self;},
  2128. source: unescape('renderBoxOn%3A%20html%0A%09self%20%0A%09%09renderInputOn%3A%20html%3B%0A%09%09renderImplementorsOn%3A%20html%3B%0A%09%09renderSendersOn%3A%20html%3B%0A%09%09renderReferencedClassesOn%3A%20html'),
  2129. messageSends: ["renderInputOn:", "renderImplementorsOn:", "renderSendersOn:", "renderReferencedClassesOn:"],
  2130. referencedClasses: []
  2131. }),
  2132. smalltalk.ReferencesBrowser);
  2133. smalltalk.addMethod(
  2134. '_renderInputOn_',
  2135. smalltalk.method({
  2136. selector: 'renderInputOn:',
  2137. category: 'rendering',
  2138. fn: function (html){
  2139. var self=this;
  2140. self['@input']=(function($rec){smalltalk.send($rec, "_class_", ["implementors"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_input", []));
  2141. smalltalk.send(smalltalk.send(self['@input'], "_asJQuery", []), "_val_", [self['@selector']]);
  2142. smalltalk.send(self, "_setInputEvents", []);
  2143. return self;},
  2144. source: unescape('renderInputOn%3A%20html%0A%09input%20%3A%3D%20html%20input%20%0A%09%09class%3A%20%27implementors%27%3B%0A%09%09yourself.%0A%09input%20asJQuery%20val%3A%20selector.%0A%09self%20setInputEvents'),
  2145. messageSends: ["class:", "yourself", "input", "val:", "asJQuery", "setInputEvents"],
  2146. referencedClasses: []
  2147. }),
  2148. smalltalk.ReferencesBrowser);
  2149. smalltalk.addMethod(
  2150. '_renderImplementorsOn_',
  2151. smalltalk.method({
  2152. selector: 'renderImplementorsOn:',
  2153. category: 'rendering',
  2154. fn: function (html){
  2155. var self=this;
  2156. self['@implementorsList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_column implementors"]);
  2157. smalltalk.send(self, "_updateImplementorsList", []);
  2158. return self;},
  2159. source: unescape('renderImplementorsOn%3A%20html%0A%20%20%20%20%09implementorsList%20%3A%3D%20html%20ul%20class%3A%20%27jt_column%20implementors%27.%0A%09self%20updateImplementorsList'),
  2160. messageSends: ["class:", "ul", "updateImplementorsList"],
  2161. referencedClasses: []
  2162. }),
  2163. smalltalk.ReferencesBrowser);
  2164. smalltalk.addMethod(
  2165. '_renderSendersOn_',
  2166. smalltalk.method({
  2167. selector: 'renderSendersOn:',
  2168. category: 'rendering',
  2169. fn: function (html){
  2170. var self=this;
  2171. self['@sendersList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_column senders"]);
  2172. smalltalk.send(self, "_updateSendersList", []);
  2173. return self;},
  2174. source: unescape('renderSendersOn%3A%20html%0A%20%20%20%20%09sendersList%20%3A%3D%20html%20ul%20class%3A%20%27jt_column%20senders%27.%0A%09self%20updateSendersList'),
  2175. messageSends: ["class:", "ul", "updateSendersList"],
  2176. referencedClasses: []
  2177. }),
  2178. smalltalk.ReferencesBrowser);
  2179. smalltalk.addMethod(
  2180. '_renderReferencedClassesOn_',
  2181. smalltalk.method({
  2182. selector: 'renderReferencedClassesOn:',
  2183. category: 'rendering',
  2184. fn: function (html){
  2185. var self=this;
  2186. self['@referencedClassesList']=smalltalk.send(smalltalk.send(html, "_ul", []), "_class_", ["jt_column referenced_classes"]);
  2187. smalltalk.send(self, "_updateReferencedClassesList", []);
  2188. return self;},
  2189. source: unescape('renderReferencedClassesOn%3A%20html%0A%20%20%20%20%09referencedClassesList%20%3A%3D%20html%20ul%20class%3A%20%27jt_column%20referenced_classes%27.%0A%09self%20updateReferencedClassesList'),
  2190. messageSends: ["class:", "ul", "updateReferencedClassesList"],
  2191. referencedClasses: []
  2192. }),
  2193. smalltalk.ReferencesBrowser);
  2194. smalltalk.addMethod(
  2195. '_canBeClosed',
  2196. smalltalk.method({
  2197. selector: 'canBeClosed',
  2198. category: 'testing',
  2199. fn: function (){
  2200. var self=this;
  2201. return true;
  2202. return self;},
  2203. source: unescape('canBeClosed%0A%09%5Etrue'),
  2204. messageSends: [],
  2205. referencedClasses: []
  2206. }),
  2207. smalltalk.ReferencesBrowser);
  2208. smalltalk.addMethod(
  2209. '_updateImplementorsList',
  2210. smalltalk.method({
  2211. selector: 'updateImplementorsList',
  2212. category: 'updating',
  2213. fn: function (){
  2214. var self=this;
  2215. smalltalk.send(self['@implementorsList'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["column_label"]);smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(unescape("Implementors%20%28"), "__comma", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_implementors", []), "_size", []), "_asString", [])]), "__comma", [unescape("%29")])]);return smalltalk.send($rec, "_style_", [unescape("font-weight%3A%20bold")]);})(smalltalk.send(html, "_li", []));return smalltalk.send(smalltalk.send(self, "_implementors", []), "_do_", [(function(each){var li=nil;
  2216. li=smalltalk.send(html, "_li", []);return (function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(each, "_methodClass", []), "_asString", []), "__comma", [unescape("%20%3E%3E%20")]), "__comma", [smalltalk.send(self, "_selector", [])])]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_openBrowserOn_", [each]);})]);})(li);})]);})]);
  2217. return self;},
  2218. source: unescape('updateImplementorsList%0A%20%20%20%20implementorsList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09html%20li%0A%09%09class%3A%20%27column_label%27%3B%20%0A%09%09with%3A%20%27Implementors%20%28%27%2C%20self%20implementors%20size%20asString%2C%20%27%29%27%3B%0A%09%09style%3A%20%27font-weight%3A%20bold%27.%0A%09self%20implementors%20do%3A%20%5B%3Aeach%20%7C%7C%20li%20%7C%0A%09%20%20%20%20li%20%3A%3D%20html%20li.%0A%09%20%20%20%20li%0A%09%09with%3A%20%28each%20methodClass%20asString%2C%20%27%20%3E%3E%20%27%2C%20self%20selector%29%3B%0A%09%09onClick%3A%20%5Bself%20openBrowserOn%3A%20each%5D%5D%5D'),
  2219. messageSends: ["contents:", "class:", "with:", unescape("%2C"), "asString", "size", "implementors", "style:", "li", "do:", "methodClass", "selector", "onClick:", "openBrowserOn:"],
  2220. referencedClasses: []
  2221. }),
  2222. smalltalk.ReferencesBrowser);
  2223. smalltalk.addMethod(
  2224. '_updateSendersList',
  2225. smalltalk.method({
  2226. selector: 'updateSendersList',
  2227. category: 'updating',
  2228. fn: function (){
  2229. var self=this;
  2230. smalltalk.send(self['@sendersList'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["column_label"]);smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(unescape("Senders%20%28"), "__comma", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_senders", []), "_size", []), "_asString", [])]), "__comma", [unescape("%29")])]);return smalltalk.send($rec, "_style_", [unescape("font-weight%3A%20bold")]);})(smalltalk.send(html, "_li", []));return smalltalk.send(smalltalk.send(self, "_senders", []), "_do_", [(function(each){return (function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(each, "_methodClass", []), "_asString", []), "__comma", [unescape("%20%3E%3E%20")]), "__comma", [smalltalk.send(each, "_selector", [])])]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_openBrowserOn_", [each]);})]);})(smalltalk.send(html, "_li", []));})]);})]);
  2231. return self;},
  2232. source: unescape('updateSendersList%0A%20%20%20%20%09sendersList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09html%20li%0A%09%09class%3A%20%27column_label%27%3B%20%0A%09%09with%3A%20%27Senders%20%28%27%2C%20self%20senders%20size%20asString%2C%20%27%29%27%3B%0A%09%09style%3A%20%27font-weight%3A%20bold%27.%0A%09self%20senders%20do%3A%20%5B%3Aeach%20%7C%0A%09%09html%20li%0A%09%20%20%20%20%09%09with%3A%20%28each%20methodClass%20asString%2C%20%27%20%3E%3E%20%27%2C%20each%20selector%29%3B%0A%09%09%09onClick%3A%20%5Bself%20openBrowserOn%3A%20each%5D%5D%5D'),
  2233. messageSends: ["contents:", "class:", "with:", unescape("%2C"), "asString", "size", "senders", "style:", "li", "do:", "methodClass", "selector", "onClick:", "openBrowserOn:"],
  2234. referencedClasses: []
  2235. }),
  2236. smalltalk.ReferencesBrowser);
  2237. smalltalk.addMethod(
  2238. '_updateReferencedClassesList',
  2239. smalltalk.method({
  2240. selector: 'updateReferencedClassesList',
  2241. category: 'updating',
  2242. fn: function (){
  2243. var self=this;
  2244. smalltalk.send(self['@referencedClassesList'], "_contents_", [(function(html){(function($rec){smalltalk.send($rec, "_class_", ["column_label"]);smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(unescape("Class%20references%20%28"), "__comma", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_referencedClasses", []), "_size", []), "_asString", [])]), "__comma", [unescape("%29")])]);return smalltalk.send($rec, "_style_", [unescape("font-weight%3A%20bold")]);})(smalltalk.send(html, "_li", []));return smalltalk.send(smalltalk.send(self, "_referencedClasses", []), "_do_", [(function(each){return (function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(each, "_methodClass", []), "_asString", []), "__comma", [unescape("%20%3E%3E%20")]), "__comma", [smalltalk.send(each, "_selector", [])])]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_openBrowserOn_", [each]);})]);})(smalltalk.send(html, "_li", []));})]);})]);
  2245. return self;},
  2246. source: unescape('updateReferencedClassesList%0A%20%20%20%20%09referencedClassesList%20contents%3A%20%5B%3Ahtml%20%7C%0A%09html%20li%0A%09%09class%3A%20%27column_label%27%3B%20%0A%09%09with%3A%20%27Class%20references%20%28%27%2C%20self%20referencedClasses%20size%20asString%2C%20%27%29%27%3B%0A%09%09style%3A%20%27font-weight%3A%20bold%27.%0A%09self%20referencedClasses%20do%3A%20%5B%3Aeach%20%7C%0A%09%09html%20li%0A%09%20%20%20%20%09%09with%3A%20%28each%20methodClass%20asString%2C%20%27%20%3E%3E%20%27%2C%20each%20selector%29%3B%0A%09%09%09onClick%3A%20%5Bself%20openBrowserOn%3A%20each%5D%5D%5D'),
  2247. messageSends: ["contents:", "class:", "with:", unescape("%2C"), "asString", "size", "referencedClasses", "style:", "li", "do:", "methodClass", "selector", "onClick:", "openBrowserOn:"],
  2248. referencedClasses: []
  2249. }),
  2250. smalltalk.ReferencesBrowser);
  2251. smalltalk.addMethod(
  2252. '_search_',
  2253. smalltalk.method({
  2254. selector: 'search:',
  2255. category: 'instance creation',
  2256. fn: function (aString){
  2257. var self=this;
  2258. return (function($rec){smalltalk.send($rec, "_searchReferencesFor_", [aString]);return smalltalk.send($rec, "_open", []);})(smalltalk.send(self, "_new", []));
  2259. return self;},
  2260. source: unescape('search%3A%20aString%0A%09%5Eself%20new%0A%09%09searchReferencesFor%3A%20aString%3B%0A%09%09open'),
  2261. messageSends: ["searchReferencesFor:", "open", "new"],
  2262. referencedClasses: []
  2263. }),
  2264. smalltalk.ReferencesBrowser.klass);
  2265. smalltalk.addClass('SourceArea', smalltalk.Widget, ['textarea'], 'IDE');
  2266. smalltalk.addMethod(
  2267. '_val',
  2268. smalltalk.method({
  2269. selector: 'val',
  2270. category: 'accessing',
  2271. fn: function (){
  2272. var self=this;
  2273. return smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []);
  2274. return self;},
  2275. source: unescape('val%0A%20%20%20%20%5Etextarea%20asJQuery%20val'),
  2276. messageSends: ["val", "asJQuery"],
  2277. referencedClasses: []
  2278. }),
  2279. smalltalk.SourceArea);
  2280. smalltalk.addMethod(
  2281. '_val_',
  2282. smalltalk.method({
  2283. selector: 'val:',
  2284. category: 'accessing',
  2285. fn: function (aString){
  2286. var self=this;
  2287. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val_", [aString]);
  2288. return self;},
  2289. source: unescape('val%3A%20aString%0A%20%20%20%20textarea%20asJQuery%20val%3A%20aString'),
  2290. messageSends: ["val:", "asJQuery"],
  2291. referencedClasses: []
  2292. }),
  2293. smalltalk.SourceArea);
  2294. smalltalk.addMethod(
  2295. '_currentLine',
  2296. smalltalk.method({
  2297. selector: 'currentLine',
  2298. category: 'accessing',
  2299. fn: function (){
  2300. var self=this;
  2301. try{var lines=nil;
  2302. var startLine=nil;
  2303. var endLine=nil;
  2304. lines=smalltalk.send(smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []), "_tokenize_", [smalltalk.send(smalltalk.String, "_lf", [])]);
  2305. startLine=endLine=(0);
  2306. smalltalk.send(lines, "_do_", [(function(each){endLine=smalltalk.send(startLine, "__plus", [smalltalk.send(each, "_size", [])]);startLine=smalltalk.send(endLine, "__plus", [(1)]);return smalltalk.send(smalltalk.send(endLine, "__gt_eq", [smalltalk.send(self, "_selectionStart", [])]), "_ifTrue_", [(function(){smalltalk.send(self, "_selectionEnd_", [endLine]);return (function(){throw({name: 'stReturn', selector: '_currentLine', fn: function(){return each}})})();})]);})]);
  2307. return self;
  2308. } catch(e) {if(e.name === 'stReturn' && e.selector === '_currentLine'){return e.fn()} throw(e)}},
  2309. source: unescape('currentLine%0A%20%20%20%20%7C%20lines%20startLine%20endLine%7C%0A%20%20%20%20lines%20%3A%3D%20textarea%20asJQuery%20val%20tokenize%3A%20String%20lf.%0A%20%20%20%20startLine%20%3A%3D%20endLine%20%3A%3D%200.%0A%20%20%20%20lines%20do%3A%20%5B%3Aeach%20%7C%0A%09endLine%20%3A%3D%20startLine%20+%20each%20size.%0A%09startLine%20%3A%3D%20endLine%20+%201.%0A%09endLine%20%3E%3D%20self%20selectionStart%20ifTrue%3A%20%5B%0A%09%20%20%20%20self%20selectionEnd%3A%20endLine.%0A%09%20%20%20%20%5Eeach%5D%5D'),
  2310. messageSends: ["tokenize:", "val", "asJQuery", "lf", "do:", unescape("+"), "size", "ifTrue:", unescape("%3E%3D"), "selectionStart", "selectionEnd:"],
  2311. referencedClasses: [smalltalk.String]
  2312. }),
  2313. smalltalk.SourceArea);
  2314. smalltalk.addMethod(
  2315. '_selection',
  2316. smalltalk.method({
  2317. selector: 'selection',
  2318. category: 'accessing',
  2319. fn: function (){
  2320. var self=this;
  2321. return document.selection;
  2322. return self;},
  2323. source: unescape('selection%0A%20%20%20%20%3Creturn%20document.selection%3E'),
  2324. messageSends: [],
  2325. referencedClasses: []
  2326. }),
  2327. smalltalk.SourceArea);
  2328. smalltalk.addMethod(
  2329. '_selectionEnd',
  2330. smalltalk.method({
  2331. selector: 'selectionEnd',
  2332. category: 'accessing',
  2333. fn: function (){
  2334. var self=this;
  2335. return smalltalk.send(smalltalk.send(self['@textarea'], "_element", []), "_selectionEnd", []);
  2336. return self;},
  2337. source: unescape('selectionEnd%0A%20%20%20%5Etextarea%20element%20selectionEnd'),
  2338. messageSends: ["selectionEnd", "element"],
  2339. referencedClasses: []
  2340. }),
  2341. smalltalk.SourceArea);
  2342. smalltalk.addMethod(
  2343. '_selectionStart',
  2344. smalltalk.method({
  2345. selector: 'selectionStart',
  2346. category: 'accessing',
  2347. fn: function (){
  2348. var self=this;
  2349. return smalltalk.send(smalltalk.send(self['@textarea'], "_element", []), "_selectionStart", []);
  2350. return self;},
  2351. source: unescape('selectionStart%0A%20%20%20%5Etextarea%20element%20selectionStart'),
  2352. messageSends: ["selectionStart", "element"],
  2353. referencedClasses: []
  2354. }),
  2355. smalltalk.SourceArea);
  2356. smalltalk.addMethod(
  2357. '_selectionStart_',
  2358. smalltalk.method({
  2359. selector: 'selectionStart:',
  2360. category: 'accessing',
  2361. fn: function (anInteger){
  2362. var self=this;
  2363. smalltalk.send(smalltalk.send(self['@textarea'], "_element", []), "_selectionStart_", [anInteger]);
  2364. return self;},
  2365. source: unescape('selectionStart%3A%20anInteger%0A%20%20%20textarea%20element%20selectionStart%3A%20anInteger'),
  2366. messageSends: ["selectionStart:", "element"],
  2367. referencedClasses: []
  2368. }),
  2369. smalltalk.SourceArea);
  2370. smalltalk.addMethod(
  2371. '_selectionEnd_',
  2372. smalltalk.method({
  2373. selector: 'selectionEnd:',
  2374. category: 'accessing',
  2375. fn: function (anInteger){
  2376. var self=this;
  2377. smalltalk.send(smalltalk.send(self['@textarea'], "_element", []), "_selectionEnd_", [anInteger]);
  2378. return self;},
  2379. source: unescape('selectionEnd%3A%20anInteger%0A%20%20%20textarea%20element%20selectionEnd%3A%20anInteger'),
  2380. messageSends: ["selectionEnd:", "element"],
  2381. referencedClasses: []
  2382. }),
  2383. smalltalk.SourceArea);
  2384. smalltalk.addMethod(
  2385. '_textarea',
  2386. smalltalk.method({
  2387. selector: 'textarea',
  2388. category: 'accessing',
  2389. fn: function (){
  2390. var self=this;
  2391. return self['@textarea'];
  2392. return self;},
  2393. source: unescape('textarea%0A%09%5Etextarea'),
  2394. messageSends: [],
  2395. referencedClasses: []
  2396. }),
  2397. smalltalk.SourceArea);
  2398. smalltalk.addMethod(
  2399. '_clear',
  2400. smalltalk.method({
  2401. selector: 'clear',
  2402. category: 'actions',
  2403. fn: function (){
  2404. var self=this;
  2405. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val_", [""]);
  2406. return self;},
  2407. source: unescape('clear%0A%20%20%20%20textarea%20asJQuery%20val%3A%20%27%27'),
  2408. messageSends: ["val:", "asJQuery"],
  2409. referencedClasses: []
  2410. }),
  2411. smalltalk.SourceArea);
  2412. smalltalk.addMethod(
  2413. '_doIt',
  2414. smalltalk.method({
  2415. selector: 'doIt',
  2416. category: 'actions',
  2417. fn: function (){
  2418. var self=this;
  2419. var selection=nil;
  2420. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_focus", []);
  2421. smalltalk.send(smalltalk.send(smalltalk.send(self, "_selectionStart", []), "__eq", [smalltalk.send(self, "_selectionEnd", [])]), "_ifTrue_ifFalse_", [(function(){return selection=smalltalk.send(self, "_currentLine", []);}), (function(){return selection=smalltalk.send(smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []), "_copyFrom_to_", [smalltalk.send(smalltalk.send(self, "_selectionStart", []), "__plus", [(1)]), smalltalk.send(smalltalk.send(self, "_selectionEnd", []), "__plus", [(1)])]);})]);
  2422. return smalltalk.send(self, "_eval_", [selection]);
  2423. return self;},
  2424. source: unescape('doIt%0A%20%20%20%20%7C%20selection%20%7C%0A%20%20%20%20textarea%20asJQuery%20focus.%0A%20%20%20%20self%20selectionStart%20%3D%20self%20selectionEnd%0A%09ifTrue%3A%20%5Bselection%20%3A%3D%20self%20currentLine%5D%0A%09ifFalse%3A%20%5B%0A%09%20%20%20%20selection%20%3A%3D%20textarea%20asJQuery%20val%20copyFrom%3A%20self%20selectionStart%20+%201%20to%3A%20self%20selectionEnd%20+%201%5D.%0A%20%20%20%20%5Eself%20eval%3A%20selection'),
  2425. messageSends: ["focus", "asJQuery", "ifTrue:ifFalse:", unescape("%3D"), "selectionStart", "selectionEnd", "currentLine", "copyFrom:to:", "val", unescape("+"), "eval:"],
  2426. referencedClasses: []
  2427. }),
  2428. smalltalk.SourceArea);
  2429. smalltalk.addMethod(
  2430. '_eval_',
  2431. smalltalk.method({
  2432. selector: 'eval:',
  2433. category: 'actions',
  2434. fn: function (aString){
  2435. var self=this;
  2436. try{var compiler=nil;
  2437. var node=nil;
  2438. compiler=smalltalk.send(smalltalk.Compiler, "_new", []);
  2439. node=smalltalk.send(compiler, "_parseExpression_", [aString]);
  2440. smalltalk.send(smalltalk.send(node, "_isParseFailure", []), "_ifTrue_", [(function(){return (function(){throw({name: 'stReturn', selector: '_eval_', fn: function(){return smalltalk.send(self, "_alert_", [smalltalk.send(smalltalk.send(smalltalk.send(node, "_reason", []), "__comma", [unescape("%2C%20position%3A%20")]), "__comma", [smalltalk.send(node, "_position", [])])])}})})();})]);
  2441. (function(){throw({name: 'stReturn', selector: '_eval_', fn: function(){return smalltalk.send(compiler, "_loadExpression_", [aString])}})})();
  2442. return self;
  2443. } catch(e) {if(e.name === 'stReturn' && e.selector === '_eval_'){return e.fn()} throw(e)}},
  2444. source: unescape('eval%3A%20aString%0A%20%20%20%20%7C%20compiler%20node%20%7C%0A%20%20%20%20compiler%20%3A%3D%20Compiler%20new.%0A%20%20%20%20node%20%3A%3D%20compiler%20parseExpression%3A%20aString.%0A%20%20%20%20node%20isParseFailure%20ifTrue%3A%20%5B%0A%09%5Eself%20alert%3A%20node%20reason%2C%20%27%2C%20position%3A%20%27%2C%20node%20position%5D.%0A%20%20%20%20%5Ecompiler%20loadExpression%3A%20aString'),
  2445. messageSends: ["new", "parseExpression:", "ifTrue:", "isParseFailure", "alert:", unescape("%2C"), "reason", "position", "loadExpression:"],
  2446. referencedClasses: [smalltalk.Compiler]
  2447. }),
  2448. smalltalk.SourceArea);
  2449. smalltalk.addMethod(
  2450. '_handleKeyDown_',
  2451. smalltalk.method({
  2452. selector: 'handleKeyDown:',
  2453. category: 'actions',
  2454. fn: function (anEvent){
  2455. var self=this;
  2456. if(anEvent.ctrlKey) {
  2457. if(anEvent.keyCode === 80) { //ctrl+p
  2458. self._printIt();
  2459. anEvent.preventDefault();
  2460. return false;
  2461. }
  2462. if(anEvent.keyCode === 68) { //ctrl+d
  2463. self._doIt();
  2464. anEvent.preventDefault();
  2465. return false;
  2466. }
  2467. if(anEvent.keyCode === 73) { //ctrl+i
  2468. self._inspectIt();
  2469. anEvent.preventDefault();
  2470. return false;
  2471. }
  2472. };
  2473. return self;},
  2474. source: unescape('handleKeyDown%3A%20anEvent%0A%20%20%20%20%3Cif%28anEvent.ctrlKey%29%20%7B%0A%09%09if%28anEvent.keyCode%20%3D%3D%3D%2080%29%20%7B%20//ctrl+p%0A%09%09%09self._printIt%28%29%3B%0A%09%09%09anEvent.preventDefault%28%29%3B%0A%09%09%09return%20false%3B%0A%09%09%7D%0A%09%09if%28anEvent.keyCode%20%3D%3D%3D%2068%29%20%7B%20//ctrl+d%0A%09%09%09self._doIt%28%29%3B%0A%09%09%09anEvent.preventDefault%28%29%3B%0A%09%09%09return%20false%3B%0A%09%09%7D%0A%09%09if%28anEvent.keyCode%20%3D%3D%3D%2073%29%20%7B%20//ctrl+i%0A%09%09%09self._inspectIt%28%29%3B%0A%09%09%09anEvent.preventDefault%28%29%3B%0A%09%09%09return%20false%3B%0A%09%09%7D%0A%09%7D%3E'),
  2475. messageSends: [],
  2476. referencedClasses: []
  2477. }),
  2478. smalltalk.SourceArea);
  2479. smalltalk.addMethod(
  2480. '_inspectIt',
  2481. smalltalk.method({
  2482. selector: 'inspectIt',
  2483. category: 'actions',
  2484. fn: function (){
  2485. var self=this;
  2486. smalltalk.send(smalltalk.send(self, "_doIt", []), "_inspect", []);
  2487. return self;},
  2488. source: unescape('inspectIt%0A%20%20%20%20self%20doIt%20inspect'),
  2489. messageSends: ["inspect", "doIt"],
  2490. referencedClasses: []
  2491. }),
  2492. smalltalk.SourceArea);
  2493. smalltalk.addMethod(
  2494. '_print_',
  2495. smalltalk.method({
  2496. selector: 'print:',
  2497. category: 'actions',
  2498. fn: function (aString){
  2499. var self=this;
  2500. var start=nil;
  2501. start=smalltalk.send(self, "_selectionEnd", []);
  2502. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []), "_copyFrom_to_", [(1), start]), "__comma", [" "]), "__comma", [aString]), "__comma", [" "]), "__comma", [smalltalk.send(smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []), "_copyFrom_to_", [smalltalk.send(start, "__plus", [(1)]), smalltalk.send(smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_val", []), "_size", [])])])]);
  2503. smalltalk.send(self, "_selectionStart_", [start]);
  2504. smalltalk.send(self, "_selectionEnd_", [smalltalk.send(smalltalk.send(start, "__plus", [smalltalk.send(aString, "_size", [])]), "__plus", [(2)])]);
  2505. return self;},
  2506. source: unescape('print%3A%20aString%0A%20%20%20%20%7C%20start%20%7C%0A%20%20%20%20start%20%3A%3D%20self%20selectionEnd.%0A%20%20%20%20textarea%20asJQuery%20val%3A%20%28%0A%09%28textarea%20asJQuery%20val%20copyFrom%3A%201%20to%3A%20start%29%2C%0A%09%27%20%27%2C%20aString%2C%20%27%20%27%2C%0A%09%28textarea%20asJQuery%20val%20copyFrom%3A%20start%20+%201%20to%3A%20textarea%20asJQuery%20val%20size%29%29.%0A%20%20%20%20self%20selectionStart%3A%20start.%0A%20%20%20%20self%20selectionEnd%3A%20start%20+%20aString%20size%20+%202'),
  2507. messageSends: ["selectionEnd", "val:", "asJQuery", unescape("%2C"), "copyFrom:to:", "val", unescape("+"), "size", "selectionStart:", "selectionEnd:"],
  2508. referencedClasses: []
  2509. }),
  2510. smalltalk.SourceArea);
  2511. smalltalk.addMethod(
  2512. '_printIt',
  2513. smalltalk.method({
  2514. selector: 'printIt',
  2515. category: 'actions',
  2516. fn: function (){
  2517. var self=this;
  2518. smalltalk.send(self, "_print_", [smalltalk.send(smalltalk.send(self, "_doIt", []), "_printString", [])]);
  2519. return self;},
  2520. source: unescape('printIt%0A%20%20%20%20self%20print%3A%20self%20doIt%20printString'),
  2521. messageSends: ["print:", "printString", "doIt"],
  2522. referencedClasses: []
  2523. }),
  2524. smalltalk.SourceArea);
  2525. smalltalk.addMethod(
  2526. '_renderOn_',
  2527. smalltalk.method({
  2528. selector: 'renderOn:',
  2529. category: 'rendering',
  2530. fn: function (html){
  2531. var self=this;
  2532. self['@textarea']=smalltalk.send(html, "_textarea", []);
  2533. smalltalk.send(smalltalk.send(self['@textarea'], "_asJQuery", []), "_call_", ["tabby"]);
  2534. smalltalk.send(self['@textarea'], "_onKeyDown_", [(function(e){return smalltalk.send(self, "_handleKeyDown_", [e]);})]);
  2535. (function($rec){smalltalk.send($rec, "_class_", ["jt_workspace"]);return smalltalk.send($rec, "_at_put_", ["spellcheck", "false"]);})(self['@textarea']);
  2536. return self;},
  2537. source: unescape('renderOn%3A%20html%0A%20%20%20%20textarea%20%3A%3D%20html%20textarea.%0A%20%20%20%20textarea%20asJQuery%20call%3A%20%27tabby%27.%0A%20%20%20%20textarea%20onKeyDown%3A%20%5B%3Ae%20%7C%20self%20handleKeyDown%3A%20e%5D.%0A%20%20%20%20textarea%20%0A%09class%3A%20%27jt_workspace%27%3B%0A%09at%3A%20%27spellcheck%27%20put%3A%20%27false%27'),
  2538. messageSends: ["textarea", "call:", "asJQuery", "onKeyDown:", "handleKeyDown:", "class:", "at:put:"],
  2539. referencedClasses: []
  2540. }),
  2541. smalltalk.SourceArea);
  2542. smalltalk.addClass('ClassesList', smalltalk.Widget, ['browser', 'ul', 'nodes'], 'IDE');
  2543. smalltalk.addMethod(
  2544. '_category',
  2545. smalltalk.method({
  2546. selector: 'category',
  2547. category: 'accessing',
  2548. fn: function (){
  2549. var self=this;
  2550. return smalltalk.send(smalltalk.send(self, "_browser", []), "_selectedCategory", []);
  2551. return self;},
  2552. source: unescape('category%0A%09%5Eself%20browser%20selectedCategory'),
  2553. messageSends: ["selectedCategory", "browser"],
  2554. referencedClasses: []
  2555. }),
  2556. smalltalk.ClassesList);
  2557. smalltalk.addMethod(
  2558. '_nodes',
  2559. smalltalk.method({
  2560. selector: 'nodes',
  2561. category: 'accessing',
  2562. fn: function (){
  2563. var self=this;
  2564. smalltalk.send(self['@nodes'], "_ifNil_", [(function(){return self['@nodes']=smalltalk.send(self, "_getNodes", []);})]);
  2565. return self['@nodes'];
  2566. return self;},
  2567. source: unescape('nodes%0A%09nodes%20ifNil%3A%20%5Bnodes%20%3A%3D%20self%20getNodes%5D.%0A%09%5Enodes'),
  2568. messageSends: ["ifNil:", "getNodes"],
  2569. referencedClasses: []
  2570. }),
  2571. smalltalk.ClassesList);
  2572. smalltalk.addMethod(
  2573. '_renderOn_',
  2574. smalltalk.method({
  2575. selector: 'renderOn:',
  2576. category: 'rendering',
  2577. fn: function (html){
  2578. var self=this;
  2579. self['@ul']=(function($rec){smalltalk.send($rec, "_class_", ["jt_column browser classes"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(html, "_ul", []));
  2580. smalltalk.send(self, "_updateNodes", []);
  2581. return self;},
  2582. source: unescape('renderOn%3A%20html%0A%09ul%20%3A%3D%20html%20ul%0A%09%09class%3A%20%27jt_column%20browser%20classes%27%3B%0A%09%09yourself.%0A%09self%20updateNodes'),
  2583. messageSends: ["class:", "yourself", "ul", "updateNodes"],
  2584. referencedClasses: []
  2585. }),
  2586. smalltalk.ClassesList);
  2587. smalltalk.addMethod(
  2588. '_browser',
  2589. smalltalk.method({
  2590. selector: 'browser',
  2591. category: 'accessing',
  2592. fn: function (){
  2593. var self=this;
  2594. return self['@browser'];
  2595. return self;},
  2596. source: unescape('browser%0A%09%5Ebrowser'),
  2597. messageSends: [],
  2598. referencedClasses: []
  2599. }),
  2600. smalltalk.ClassesList);
  2601. smalltalk.addMethod(
  2602. '_browser_',
  2603. smalltalk.method({
  2604. selector: 'browser:',
  2605. category: 'accessing',
  2606. fn: function (aBrowser){
  2607. var self=this;
  2608. self['@browser']=aBrowser;
  2609. return self;},
  2610. source: unescape('browser%3A%20aBrowser%0A%09browser%20%3A%3D%20aBrowser'),
  2611. messageSends: [],
  2612. referencedClasses: []
  2613. }),
  2614. smalltalk.ClassesList);
  2615. smalltalk.addMethod(
  2616. '_updateNodes',
  2617. smalltalk.method({
  2618. selector: 'updateNodes',
  2619. category: 'rendering',
  2620. fn: function (){
  2621. var self=this;
  2622. smalltalk.send(self['@ul'], "_contents_", [(function(html){return smalltalk.send(smalltalk.send(self, "_nodes", []), "_do_", [(function(each){return smalltalk.send(each, "_renderOn_", [html]);})]);})]);
  2623. return self;},
  2624. source: unescape('updateNodes%0A%09ul%20contents%3A%20%5B%3Ahtml%20%7C%0A%09%09self%20nodes%20do%3A%20%5B%3Aeach%20%7C%0A%09%09%09each%20renderOn%3A%20html%5D%5D'),
  2625. messageSends: ["contents:", "do:", "nodes", "renderOn:"],
  2626. referencedClasses: []
  2627. }),
  2628. smalltalk.ClassesList);
  2629. smalltalk.addMethod(
  2630. '_getNodes',
  2631. smalltalk.method({
  2632. selector: 'getNodes',
  2633. category: 'accessing',
  2634. fn: function (){
  2635. var self=this;
  2636. var classes=nil;
  2637. var children=nil;
  2638. var others=nil;
  2639. classes=smalltalk.send(smalltalk.send(self, "_browser", []), "_classes", []);
  2640. children=[];
  2641. others=[];
  2642. smalltalk.send(classes, "_do_", [(function(each){return smalltalk.send(smalltalk.send(classes, "_includes_", [smalltalk.send(each, "_superclass", [])]), "_ifFalse_ifTrue_", [(function(){return smalltalk.send(children, "_add_", [each]);}), (function(){return smalltalk.send(others, "_add_", [each]);})]);})]);
  2643. return smalltalk.send(children, "_collect_", [(function(each){return smalltalk.send(smalltalk.ClassesListNode, "_on_browser_classes_level_", [each, smalltalk.send(self, "_browser", []), others, (0)]);})]);
  2644. return self;},
  2645. source: unescape('getNodes%0A%09%7C%20classes%20children%20others%20%7C%0A%09classes%20%3A%3D%20self%20browser%20classes.%0A%09children%20%3A%3D%20%23%28%29.%0A%09others%20%3A%3D%20%23%28%29.%0A%09classes%20do%3A%20%5B%3Aeach%20%7C%0A%09%09%28classes%20includes%3A%20each%20superclass%29%0A%09%09%09ifFalse%3A%20%5Bchildren%20add%3A%20each%5D%0A%09%09%09ifTrue%3A%20%5Bothers%20add%3A%20each%5D%5D.%0A%09%5Echildren%20collect%3A%20%5B%3Aeach%20%7C%0A%09%09ClassesListNode%20on%3A%20each%20browser%3A%20self%20browser%20classes%3A%20others%20level%3A%200%5D'),
  2646. messageSends: ["classes", "browser", "do:", "ifFalse:ifTrue:", "includes:", "superclass", "add:", "collect:", "on:browser:classes:level:"],
  2647. referencedClasses: [smalltalk.nil]
  2648. }),
  2649. smalltalk.ClassesList);
  2650. smalltalk.addMethod(
  2651. '_resetNodes',
  2652. smalltalk.method({
  2653. selector: 'resetNodes',
  2654. category: 'accessing',
  2655. fn: function (){
  2656. var self=this;
  2657. self['@nodes']=nil;
  2658. return self;},
  2659. source: unescape('resetNodes%0A%09nodes%20%3A%3D%20nil'),
  2660. messageSends: [],
  2661. referencedClasses: []
  2662. }),
  2663. smalltalk.ClassesList);
  2664. smalltalk.addMethod(
  2665. '_on_',
  2666. smalltalk.method({
  2667. selector: 'on:',
  2668. category: 'instance creation',
  2669. fn: function (aBrowser){
  2670. var self=this;
  2671. return (function($rec){smalltalk.send($rec, "_browser_", [aBrowser]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2672. return self;},
  2673. source: unescape('on%3A%20aBrowser%0A%09%5Eself%20new%20%0A%09%09browser%3A%20aBrowser%3B%20%0A%09%09yourself'),
  2674. messageSends: ["browser:", "yourself", "new"],
  2675. referencedClasses: []
  2676. }),
  2677. smalltalk.ClassesList.klass);
  2678. smalltalk.addClass('ClassesListNode', smalltalk.Widget, ['browser', 'theClass', 'level', 'nodes'], 'IDE');
  2679. smalltalk.addMethod(
  2680. '_nodes',
  2681. smalltalk.method({
  2682. selector: 'nodes',
  2683. category: 'accessing',
  2684. fn: function (){
  2685. var self=this;
  2686. return self['@nodes'];
  2687. return self;},
  2688. source: unescape('nodes%0A%09%5Enodes'),
  2689. messageSends: [],
  2690. referencedClasses: []
  2691. }),
  2692. smalltalk.ClassesListNode);
  2693. smalltalk.addMethod(
  2694. '_renderOn_',
  2695. smalltalk.method({
  2696. selector: 'renderOn:',
  2697. category: 'rendering',
  2698. fn: function (html){
  2699. var self=this;
  2700. var li=nil;
  2701. li=smalltalk.send(smalltalk.send(html, "_li", []), "_onClick_", [(function(){return smalltalk.send(smalltalk.send(self, "_browser", []), "_selectClass_", [smalltalk.send(self, "_theClass", [])]);})]);
  2702. smalltalk.send(smalltalk.send(li, "_asJQuery", []), "_contents_", [smalltalk.send(self, "_label", [])]);
  2703. smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_browser", []), "_selectedClass", []), "__eq", [smalltalk.send(self, "_theClass", [])]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);
  2704. smalltalk.send(smalltalk.send(self, "_nodes", []), "_do_", [(function(each){return smalltalk.send(each, "_renderOn_", [html]);})]);
  2705. return self;},
  2706. source: unescape('renderOn%3A%20html%0A%09%7C%20li%20%7C%0A%09li%20%3A%3D%20html%20li%20%0A%09%09onClick%3A%20%5Bself%20browser%20selectClass%3A%20self%20theClass%5D.%0A%09li%20asJQuery%20contents%3A%20self%20label.%0A%09self%20browser%20selectedClass%20%3D%20self%20theClass%20ifTrue%3A%20%20%5B%0A%09%09li%20class%3A%20%27selected%27%5D.%0A%09self%20nodes%20do%3A%20%5B%3Aeach%20%7C%0A%09%09each%20renderOn%3A%20html%5D'),
  2707. messageSends: ["onClick:", "li", "selectClass:", "browser", "theClass", "contents:", "asJQuery", "label", "ifTrue:", unescape("%3D"), "selectedClass", "class:", "do:", "nodes", "renderOn:"],
  2708. referencedClasses: []
  2709. }),
  2710. smalltalk.ClassesListNode);
  2711. smalltalk.addMethod(
  2712. '_theClass',
  2713. smalltalk.method({
  2714. selector: 'theClass',
  2715. category: 'accessing',
  2716. fn: function (){
  2717. var self=this;
  2718. return self['@theClass'];
  2719. return self;},
  2720. source: unescape('theClass%0A%09%5EtheClass'),
  2721. messageSends: [],
  2722. referencedClasses: []
  2723. }),
  2724. smalltalk.ClassesListNode);
  2725. smalltalk.addMethod(
  2726. '_theClass_',
  2727. smalltalk.method({
  2728. selector: 'theClass:',
  2729. category: 'accessing',
  2730. fn: function (aClass){
  2731. var self=this;
  2732. self['@theClass']=aClass;
  2733. return self;},
  2734. source: unescape('theClass%3A%20aClass%0A%09theClass%20%3A%3D%20aClass'),
  2735. messageSends: [],
  2736. referencedClasses: []
  2737. }),
  2738. smalltalk.ClassesListNode);
  2739. smalltalk.addMethod(
  2740. '_browser',
  2741. smalltalk.method({
  2742. selector: 'browser',
  2743. category: 'accessing',
  2744. fn: function (){
  2745. var self=this;
  2746. return self['@browser'];
  2747. return self;},
  2748. source: unescape('browser%0A%09%5Ebrowser'),
  2749. messageSends: [],
  2750. referencedClasses: []
  2751. }),
  2752. smalltalk.ClassesListNode);
  2753. smalltalk.addMethod(
  2754. '_browser_',
  2755. smalltalk.method({
  2756. selector: 'browser:',
  2757. category: 'accessing',
  2758. fn: function (aBrowser){
  2759. var self=this;
  2760. self['@browser']=aBrowser;
  2761. return self;},
  2762. source: unescape('browser%3A%20aBrowser%0A%09browser%20%3A%3D%20aBrowser'),
  2763. messageSends: [],
  2764. referencedClasses: []
  2765. }),
  2766. smalltalk.ClassesListNode);
  2767. smalltalk.addMethod(
  2768. '_level',
  2769. smalltalk.method({
  2770. selector: 'level',
  2771. category: 'accessing',
  2772. fn: function (){
  2773. var self=this;
  2774. return self['@level'];
  2775. return self;},
  2776. source: unescape('level%0A%09%5Elevel'),
  2777. messageSends: [],
  2778. referencedClasses: []
  2779. }),
  2780. smalltalk.ClassesListNode);
  2781. smalltalk.addMethod(
  2782. '_level_',
  2783. smalltalk.method({
  2784. selector: 'level:',
  2785. category: 'accessing',
  2786. fn: function (anInteger){
  2787. var self=this;
  2788. self['@level']=anInteger;
  2789. return self;},
  2790. source: unescape('level%3A%20anInteger%0A%09level%20%3A%3D%20anInteger'),
  2791. messageSends: [],
  2792. referencedClasses: []
  2793. }),
  2794. smalltalk.ClassesListNode);
  2795. smalltalk.addMethod(
  2796. '_label',
  2797. smalltalk.method({
  2798. selector: 'label',
  2799. category: 'accessing',
  2800. fn: function (){
  2801. var self=this;
  2802. var str=nil;
  2803. str=smalltalk.send(smalltalk.send(smalltalk.String, "_new", []), "_writeStream", []);
  2804. smalltalk.send(smalltalk.send(self, "_level", []), "_timesRepeat_", [(function(){return smalltalk.send(str, "_nextPutAll_", [unescape("%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B")]);})]);
  2805. smalltalk.send(str, "_nextPutAll_", [smalltalk.send(smalltalk.send(self, "_theClass", []), "_name", [])]);
  2806. return smalltalk.send(str, "_contents", []);
  2807. return self;},
  2808. source: unescape('label%0A%09%7C%20str%20%7C%0A%09str%20%3A%3D%20String%20new%20writeStream.%0A%09self%20level%20timesRepeat%3A%20%5B%0A%09%09str%20nextPutAll%3A%20%27%26nbsp%3B%26nbsp%3B%26nbsp%3B%26nbsp%3B%27%5D.%0A%09str%20nextPutAll%3A%20self%20theClass%20name.%0A%09%5Estr%20contents'),
  2809. messageSends: ["writeStream", "new", "timesRepeat:", "level", "nextPutAll:", "name", "theClass", "contents"],
  2810. referencedClasses: [smalltalk.String]
  2811. }),
  2812. smalltalk.ClassesListNode);
  2813. smalltalk.addMethod(
  2814. '_getNodesFrom_',
  2815. smalltalk.method({
  2816. selector: 'getNodesFrom:',
  2817. category: 'accessing',
  2818. fn: function (aCollection){
  2819. var self=this;
  2820. var children=nil;
  2821. var others=nil;
  2822. children=[];
  2823. others=[];
  2824. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(smalltalk.send(smalltalk.send(each, "_superclass", []), "__eq", [smalltalk.send(self, "_theClass", [])]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(children, "_add_", [each]);}), (function(){return smalltalk.send(others, "_add_", [each]);})]);})]);
  2825. self['@nodes']=smalltalk.send(children, "_collect_", [(function(each){return smalltalk.send(smalltalk.ClassesListNode, "_on_browser_classes_level_", [each, smalltalk.send(self, "_browser", []), others, smalltalk.send(smalltalk.send(self, "_level", []), "__plus", [(1)])]);})]);
  2826. return self;},
  2827. source: unescape('getNodesFrom%3A%20aCollection%0A%09%7C%20children%20others%20%7C%0A%09children%20%3A%3D%20%23%28%29.%0A%09others%20%3A%3D%20%23%28%29.%0A%09aCollection%20do%3A%20%5B%3Aeach%20%7C%0A%09%09%28each%20superclass%20%3D%20self%20theClass%29%0A%09%09%09ifTrue%3A%20%5Bchildren%20add%3A%20each%5D%0A%09%09%09ifFalse%3A%20%5Bothers%20add%3A%20each%5D%5D.%0A%09nodes%3A%3D%20children%20collect%3A%20%5B%3Aeach%20%7C%0A%09%09ClassesListNode%20on%3A%20each%20browser%3A%20self%20browser%20classes%3A%20others%20level%3A%20self%20level%20+%201%5D'),
  2828. messageSends: ["do:", "ifTrue:ifFalse:", unescape("%3D"), "superclass", "theClass", "add:", "collect:", "on:browser:classes:level:", "browser", unescape("+"), "level"],
  2829. referencedClasses: [smalltalk.ClassesListNode]
  2830. }),
  2831. smalltalk.ClassesListNode);
  2832. smalltalk.addMethod(
  2833. '_on_browser_classes_level_',
  2834. smalltalk.method({
  2835. selector: 'on:browser:classes:level:',
  2836. category: 'instance creation',
  2837. fn: function (aClass, aBrowser, aCollection, anInteger){
  2838. var self=this;
  2839. return (function($rec){smalltalk.send($rec, "_theClass_", [aClass]);smalltalk.send($rec, "_browser_", [aBrowser]);smalltalk.send($rec, "_level_", [anInteger]);smalltalk.send($rec, "_getNodesFrom_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2840. return self;},
  2841. source: unescape('on%3A%20aClass%20browser%3A%20aBrowser%20classes%3A%20aCollection%20level%3A%20anInteger%0A%09%5Eself%20new%0A%09%09theClass%3A%20aClass%3B%0A%09%09browser%3A%20aBrowser%3B%0A%09%09level%3A%20anInteger%3B%0A%09%09getNodesFrom%3A%20aCollection%3B%0A%09%09yourself'),
  2842. messageSends: ["theClass:", "browser:", "level:", "getNodesFrom:", "yourself", "new"],
  2843. referencedClasses: []
  2844. }),
  2845. smalltalk.ClassesListNode.klass);
  2846. smalltalk.addClass('Debugger', smalltalk.TabWidget, ['error', 'selectedContext', 'sourceArea', 'ul'], 'IDE');
  2847. smalltalk.addMethod(
  2848. '_renderBoxOn_',
  2849. smalltalk.method({
  2850. selector: 'renderBoxOn:',
  2851. category: 'rendering',
  2852. fn: function (html){
  2853. var self=this;
  2854. (function($rec){smalltalk.send($rec, "_renderTopPanelOn_", [html]);return smalltalk.send($rec, "_renderBottomPanelOn_", [html]);})(self);
  2855. return self;},
  2856. source: unescape('renderBoxOn%3A%20html%0A%20%20%20%20self%20%0A%09renderTopPanelOn%3A%20html%3B%0A%09renderBottomPanelOn%3A%20html'),
  2857. messageSends: ["renderTopPanelOn:", "renderBottomPanelOn:"],
  2858. referencedClasses: []
  2859. }),
  2860. smalltalk.Debugger);
  2861. smalltalk.addMethod(
  2862. '_renderTopPanelOn_',
  2863. smalltalk.method({
  2864. selector: 'renderTopPanelOn:',
  2865. category: 'rendering',
  2866. fn: function (html){
  2867. var self=this;
  2868. self['@selectedContext']=smalltalk.send(smalltalk.send(self, "_error", []), "_context", []);
  2869. (function($rec){smalltalk.send($rec, "_class_", ["top"]);return smalltalk.send($rec, "_with_", [(function(){(function($rec){smalltalk.send($rec, "_class_", ["label"]);return smalltalk.send($rec, "_with_", [smalltalk.send(smalltalk.send(self, "_error", []), "_messageText", [])]);})(smalltalk.send(html, "_div", []));return self['@ul']=(function($rec){smalltalk.send($rec, "_class_", ["jt_column debugger contexts"]);return smalltalk.send($rec, "_with_", [(function(){return smalltalk.send(self, "_renderContext_on_", [smalltalk.send(smalltalk.send(self, "_error", []), "_context", []), html]);})]);})(smalltalk.send(html, "_ul", []));})]);})(smalltalk.send(html, "_div", []));
  2870. return self;},
  2871. source: unescape('renderTopPanelOn%3A%20html%0A%09selectedContext%20%3A%3D%20self%20error%20context.%0A%09html%20div%20%0A%09%09class%3A%20%27top%27%3B%20%0A%09%09with%3A%20%5B%0A%09%09%09html%20div%20%0A%09%09%09%09class%3A%20%27label%27%3B%0A%09%09%09%09with%3A%20self%20error%20messageText.%0A%09%20%20%20%20%09%09ul%20%3A%3D%20html%20ul%20%0A%09%09%09class%3A%20%27jt_column%20debugger%20contexts%27%3B%0A%09%09%09with%3A%20%5Bself%20renderContext%3A%20self%20error%20context%20on%3A%20html%5D%5D'),
  2872. messageSends: ["context", "error", "class:", "with:", "messageText", "div", "renderContext:on:", "ul"],
  2873. referencedClasses: []
  2874. }),
  2875. smalltalk.Debugger);
  2876. smalltalk.addMethod(
  2877. '_renderContext_on_',
  2878. smalltalk.method({
  2879. selector: 'renderContext:on:',
  2880. category: 'rendering',
  2881. fn: function (aContext, html){
  2882. var self=this;
  2883. var li=nil;
  2884. li=smalltalk.send(html, "_li", []);
  2885. smalltalk.send(smalltalk.send(self['@selectedContext'], "__eq", [aContext]), "_ifTrue_", [(function(){return smalltalk.send(li, "_class_", ["selected"]);})]);
  2886. (function($rec){smalltalk.send($rec, "_with_", [smalltalk.send(aContext, "_asString", [])]);return smalltalk.send($rec, "_onClick_", [(function(){return smalltalk.send(self, "_selectContext_", [aContext]);})]);})(li);
  2887. smalltalk.send(smalltalk.send(aContext, "_home", []), "_ifNotNil_", [(function(){return smalltalk.send(self, "_renderContext_on_", [smalltalk.send(aContext, "_home", []), html]);})]);
  2888. return self;},
  2889. source: unescape('renderContext%3A%20aContext%20on%3A%20html%0A%09%7C%20li%20%7C%0A%09li%20%3A%3D%20html%20li.%0A%09selectedContext%20%3D%20aContext%20ifTrue%3A%20%5B%0A%09%09li%20class%3A%20%27selected%27%5D.%0A%09li%20%0A%09%09with%3A%20aContext%20asString%3B%0A%09%09onClick%3A%20%5Bself%20selectContext%3A%20aContext%5D.%0A%09aContext%20home%20ifNotNil%3A%20%5Bself%20renderContext%3A%20aContext%20home%20on%3A%20html%5D'),
  2890. messageSends: ["li", "ifTrue:", unescape("%3D"), "class:", "with:", "asString", "onClick:", "selectContext:", "ifNotNil:", "home", "renderContext:on:"],
  2891. referencedClasses: []
  2892. }),
  2893. smalltalk.Debugger);
  2894. smalltalk.addMethod(
  2895. '_renderBottomPanelOn_',
  2896. smalltalk.method({
  2897. selector: 'renderBottomPanelOn:',
  2898. category: 'rendering',
  2899. fn: function (html){
  2900. var self=this;
  2901. (function($rec){smalltalk.send($rec, "_class_", ["jt_sourceCode"]);return smalltalk.send($rec, "_with_", [(function(){self['@sourceArea']=smalltalk.send(smalltalk.SourceArea, "_new", []);return smalltalk.send(self['@sourceArea'], "_renderOn_", [html]);})]);})(smalltalk.send(html, "_div", []));
  2902. smalltalk.send(self, "_updateSourceArea", []);
  2903. return self;},
  2904. source: unescape('renderBottomPanelOn%3A%20html%0A%20%20%20%20html%20div%0A%09class%3A%20%27jt_sourceCode%27%3B%0A%09with%3A%20%5B%0A%09%20%20%20%20sourceArea%20%3A%3D%20SourceArea%20new.%0A%09%20%20%20%20sourceArea%20renderOn%3A%20html%5D.%0A%20%20%20%20self%20updateSourceArea'),
  2905. messageSends: ["class:", "with:", "new", "renderOn:", "div", "updateSourceArea"],
  2906. referencedClasses: [smalltalk.SourceArea]
  2907. }),
  2908. smalltalk.Debugger);
  2909. smalltalk.addMethod(
  2910. '_error',
  2911. smalltalk.method({
  2912. selector: 'error',
  2913. category: 'accessing',
  2914. fn: function (){
  2915. var self=this;
  2916. return self['@error'];
  2917. return self;},
  2918. source: unescape('error%0A%09%5Eerror'),
  2919. messageSends: [],
  2920. referencedClasses: []
  2921. }),
  2922. smalltalk.Debugger);
  2923. smalltalk.addMethod(
  2924. '_error_',
  2925. smalltalk.method({
  2926. selector: 'error:',
  2927. category: 'accessing',
  2928. fn: function (anError){
  2929. var self=this;
  2930. self['@error']=anError;
  2931. return self;},
  2932. source: unescape('error%3A%20anError%0A%09error%20%3A%3D%20anError'),
  2933. messageSends: [],
  2934. referencedClasses: []
  2935. }),
  2936. smalltalk.Debugger);
  2937. smalltalk.addMethod(
  2938. '_updateContextsList',
  2939. smalltalk.method({
  2940. selector: 'updateContextsList',
  2941. category: 'updating',
  2942. fn: function (){
  2943. var self=this;
  2944. smalltalk.send(self['@ul'], "_contents_", [(function(html){return smalltalk.send(self, "_renderContext_on_", [smalltalk.send(smalltalk.send(self, "_error", []), "_context", []), html]);})]);
  2945. return self;},
  2946. source: unescape('updateContextsList%0A%09ul%20contents%3A%20%5B%3Ahtml%20%7C%0A%09%09self%20renderContext%3A%20self%20error%20context%20on%3A%20html%5D'),
  2947. messageSends: ["contents:", "renderContext:on:", "context", "error"],
  2948. referencedClasses: []
  2949. }),
  2950. smalltalk.Debugger);
  2951. smalltalk.addMethod(
  2952. '_selectContext_',
  2953. smalltalk.method({
  2954. selector: 'selectContext:',
  2955. category: 'actions',
  2956. fn: function (aContext){
  2957. var self=this;
  2958. self['@selectedContext']=aContext;
  2959. smalltalk.send(self, "_updateContextsList", []);
  2960. smalltalk.send(self, "_updateSourceArea", []);
  2961. return self;},
  2962. source: unescape('selectContext%3A%20aContext%0A%09selectedContext%20%3A%3D%20aContext.%0A%09self%20updateContextsList.%0A%09self%20updateSourceArea'),
  2963. messageSends: ["updateContextsList", "updateSourceArea"],
  2964. referencedClasses: []
  2965. }),
  2966. smalltalk.Debugger);
  2967. smalltalk.addMethod(
  2968. '_label',
  2969. smalltalk.method({
  2970. selector: 'label',
  2971. category: 'accessing',
  2972. fn: function (){
  2973. var self=this;
  2974. return unescape("%5BDebugger%5D");
  2975. return self;},
  2976. source: unescape('label%0A%09%5E%27%5BDebugger%5D%27'),
  2977. messageSends: [],
  2978. referencedClasses: []
  2979. }),
  2980. smalltalk.Debugger);
  2981. smalltalk.addMethod(
  2982. '_canBeClosed',
  2983. smalltalk.method({
  2984. selector: 'canBeClosed',
  2985. category: 'testing',
  2986. fn: function (){
  2987. var self=this;
  2988. return true;
  2989. return self;},
  2990. source: unescape('canBeClosed%0A%20%20%20%20%5Etrue'),
  2991. messageSends: [],
  2992. referencedClasses: []
  2993. }),
  2994. smalltalk.Debugger);
  2995. smalltalk.addMethod(
  2996. '_updateSourceArea',
  2997. smalltalk.method({
  2998. selector: 'updateSourceArea',
  2999. category: 'updating',
  3000. fn: function (){
  3001. var self=this;
  3002. smalltalk.send(self['@sourceArea'], "_val_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self['@selectedContext'], "_receiver", []), "_class", []), "_methodAt_", [smalltalk.send(self['@selectedContext'], "_selector", [])]), "_source", [])]);
  3003. return self;},
  3004. source: unescape('updateSourceArea%0A%09%20sourceArea%20val%3A%20%28selectedContext%20receiver%20class%20methodAt%3A%20selectedContext%20selector%29%20source'),
  3005. messageSends: ["val:", "source", "methodAt:", "class", "receiver", "selector"],
  3006. referencedClasses: []
  3007. }),
  3008. smalltalk.Debugger);
  3009. smalltalk.addClass('DebugErrorHandler', smalltalk.ErrorHandler, [], 'IDE');
  3010. smalltalk.addMethod(
  3011. '_handleError_',
  3012. smalltalk.method({
  3013. selector: 'handleError:',
  3014. category: 'error handling',
  3015. fn: function (anError){
  3016. var self=this;
  3017. smalltalk.send((function(){return (function($rec){smalltalk.send($rec, "_error_", [anError]);return smalltalk.send($rec, "_open", []);})(smalltalk.send(smalltalk.Debugger, "_new", []));}), "_on_do_", [smalltalk.Error, (function(error){return smalltalk.send(smalltalk.send(smalltalk.ErrorHandler, "_new", []), "_handleError_", [error]);})]);
  3018. return self;},
  3019. source: unescape('handleError%3A%20anError%0A%09%5BDebugger%20new%0A%09%09error%3A%20anError%3B%0A%09%09open%5D%20on%3A%20Error%20do%3A%20%5B%3Aerror%20%7C%0A%09%09%09ErrorHandler%20new%20handleError%3A%20error%5D'),
  3020. messageSends: ["on:do:", "error:", "open", "new", "handleError:"],
  3021. referencedClasses: [smalltalk.Debugger,smalltalk.Error,smalltalk.ErrorHandler]
  3022. }),
  3023. smalltalk.DebugErrorHandler);
  3024. smalltalk.addMethod(
  3025. '_initialize',
  3026. smalltalk.method({
  3027. selector: 'initialize',
  3028. category: 'initialization',
  3029. fn: function (){
  3030. var self=this;
  3031. smalltalk.send(self, "_register", []);
  3032. return self;},
  3033. source: unescape('initialize%0A%09self%20register'),
  3034. messageSends: ["register"],
  3035. referencedClasses: []
  3036. }),
  3037. smalltalk.DebugErrorHandler.klass);
  3038. smalltalk.addMethod(
  3039. '_inspect',
  3040. smalltalk.method({
  3041. selector: 'inspect',
  3042. category: '*IDE',
  3043. fn: function (){
  3044. var self=this;
  3045. (function($rec){smalltalk.send($rec, "_inspect_", [self]);return smalltalk.send($rec, "_open", []);})(smalltalk.send(smalltalk.Inspector, "_new", []));
  3046. return self;},
  3047. source: unescape('inspect%0A%09Inspector%20new%20%0A%09%09inspect%3A%20self%3B%0A%09%09open'),
  3048. messageSends: ["inspect:", "open", "new"],
  3049. referencedClasses: [smalltalk.Inspector]
  3050. }),
  3051. smalltalk.Object);
  3052. smalltalk.addMethod(
  3053. '_inspectOn_',
  3054. smalltalk.method({
  3055. selector: 'inspectOn:',
  3056. category: '*IDE',
  3057. fn: function (anInspector){
  3058. var self=this;
  3059. var variables=nil;
  3060. variables=smalltalk.send(smalltalk.Dictionary, "_new", []);
  3061. smalltalk.send(variables, "_at_put_", [unescape("%23self"), self]);
  3062. smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_allInstanceVariableNames", []), "_do_", [(function(each){return smalltalk.send(variables, "_at_put_", [each, smalltalk.send(self, "_instVarAt_", [each])]);})]);
  3063. (function($rec){smalltalk.send($rec, "_setLabel_", [smalltalk.send(self, "_printString", [])]);return smalltalk.send($rec, "_setVariables_", [variables]);})(anInspector);
  3064. return self;},
  3065. source: unescape('inspectOn%3A%20anInspector%0A%09%7C%20variables%20%7C%0A%09variables%20%3A%3D%20Dictionary%20new.%0A%09variables%20at%3A%20%27%23self%27%20put%3A%20self.%0A%09self%20class%20allInstanceVariableNames%20do%3A%20%5B%3Aeach%20%7C%0A%09%09variables%20at%3A%20each%20put%3A%20%28self%20instVarAt%3A%20each%29%5D.%0A%09anInspector%20%0A%09%09setLabel%3A%20self%20printString%3B%0A%09%09setVariables%3A%20variables'),
  3066. messageSends: ["new", "at:put:", "do:", "allInstanceVariableNames", "class", "instVarAt:", "setLabel:", "printString", "setVariables:"],
  3067. referencedClasses: [smalltalk.Dictionary]
  3068. }),
  3069. smalltalk.Object);
  3070. smalltalk.addMethod(
  3071. '_inspectOn_',
  3072. smalltalk.method({
  3073. selector: 'inspectOn:',
  3074. category: '*IDE',
  3075. fn: function (anInspector){
  3076. var self=this;
  3077. var variables=nil;
  3078. variables=smalltalk.send(smalltalk.Dictionary, "_new", []);
  3079. smalltalk.send(variables, "_at_put_", [unescape("%23self"), self]);
  3080. smalltalk.send(variables, "_at_put_", [unescape("%23year"), smalltalk.send(self, "_year", [])]);
  3081. smalltalk.send(variables, "_at_put_", [unescape("%23month"), smalltalk.send(self, "_month", [])]);
  3082. smalltalk.send(variables, "_at_put_", [unescape("%23day"), smalltalk.send(self, "_day", [])]);
  3083. smalltalk.send(variables, "_at_put_", [unescape("%23hours"), smalltalk.send(self, "_hours", [])]);
  3084. smalltalk.send(variables, "_at_put_", [unescape("%23minutes"), smalltalk.send(self, "_minutes", [])]);
  3085. smalltalk.send(variables, "_at_put_", [unescape("%23seconds"), smalltalk.send(self, "_seconds", [])]);
  3086. smalltalk.send(variables, "_at_put_", [unescape("%23milliseconds"), smalltalk.send(self, "_milliseconds", [])]);
  3087. (function($rec){smalltalk.send($rec, "_setLabel_", [smalltalk.send(self, "_printString", [])]);return smalltalk.send($rec, "_setVariables_", [variables]);})(anInspector);
  3088. return self;},
  3089. source: unescape('inspectOn%3A%20anInspector%0A%09%7C%20variables%20%7C%0A%09variables%20%3A%3D%20Dictionary%20new.%0A%09variables%20at%3A%20%27%23self%27%20put%3A%20self.%0A%09variables%20at%3A%20%27%23year%27%20put%3A%20self%20year.%0A%09variables%20at%3A%20%27%23month%27%20put%3A%20self%20month.%0A%09variables%20at%3A%20%27%23day%27%20put%3A%20self%20day.%0A%09variables%20at%3A%20%27%23hours%27%20put%3A%20self%20hours.%0A%09variables%20at%3A%20%27%23minutes%27%20put%3A%20self%20minutes.%0A%09variables%20at%3A%20%27%23seconds%27%20put%3A%20self%20seconds.%0A%09variables%20at%3A%20%27%23milliseconds%27%20put%3A%20self%20milliseconds.%0A%09anInspector%20%0A%09%09setLabel%3A%20self%20printString%3B%0A%09%09setVariables%3A%20variables'),
  3090. messageSends: ["new", "at:put:", "year", "month", "day", "hours", "minutes", "seconds", "milliseconds", "setLabel:", "printString", "setVariables:"],
  3091. referencedClasses: [smalltalk.Dictionary]
  3092. }),
  3093. smalltalk.Date);
  3094. smalltalk.addMethod(
  3095. '_inspectOn_',
  3096. smalltalk.method({
  3097. selector: 'inspectOn:',
  3098. category: '*IDE',
  3099. fn: function (anInspector){
  3100. var self=this;
  3101. var variables=nil;
  3102. variables=smalltalk.send(smalltalk.Dictionary, "_new", []);
  3103. smalltalk.send(variables, "_at_put_", [unescape("%23self"), self]);
  3104. smalltalk.send(self, "_withIndexDo_", [(function(each, i){return smalltalk.send(variables, "_at_put_", [i, each]);})]);
  3105. (function($rec){smalltalk.send($rec, "_setLabel_", [smalltalk.send(self, "_printString", [])]);return smalltalk.send($rec, "_setVariables_", [variables]);})(anInspector);
  3106. return self;},
  3107. source: unescape('inspectOn%3A%20anInspector%0A%09%7C%20variables%20%7C%0A%09variables%20%3A%3D%20Dictionary%20new.%0A%09variables%20at%3A%20%27%23self%27%20put%3A%20self.%0A%09self%20withIndexDo%3A%20%5B%3Aeach%20%3Ai%20%7C%0A%09%09variables%20at%3A%20i%20put%3A%20each%5D.%0A%09anInspector%20%0A%09%09setLabel%3A%20self%20printString%3B%0A%09%09setVariables%3A%20variables'),
  3108. messageSends: ["new", "at:put:", "withIndexDo:", "setLabel:", "printString", "setVariables:"],
  3109. referencedClasses: [smalltalk.Dictionary]
  3110. }),
  3111. smalltalk.Collection);
  3112. smalltalk.addMethod(
  3113. '_inspectOn_',
  3114. smalltalk.method({
  3115. selector: 'inspectOn:',
  3116. category: '*IDE',
  3117. fn: function (anInspector){
  3118. var self=this;
  3119. var label=nil;
  3120. smalltalk.send(self, "_inspectOn_", [anInspector], smalltalk.SequenceableCollection);
  3121. smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_printString", []), "_size", []), "__gt", [(30)]), "_ifTrue_ifFalse_", [(function(){return label=smalltalk.send(smalltalk.send(smalltalk.send(self, "_printString", []), "_copyFrom_to_", [(1), (30)]), "__comma", [unescape("...%27")]);}), (function(){return label=smalltalk.send(self, "_printString", []);})]);
  3122. smalltalk.send(anInspector, "_setLabel_", [label]);
  3123. return self;},
  3124. source: unescape('inspectOn%3A%20anInspector%0A%09%7C%20label%20%7C%0A%09super%20inspectOn%3A%20anInspector.%0A%09self%20printString%20size%20%3E%2030%20%0A%09%09ifTrue%3A%20%5Blabel%20%3A%3D%20%28self%20printString%20copyFrom%3A%201%20to%3A%2030%29%2C%20%27...%27%27%27%5D%0A%09%09ifFalse%3A%20%5Blabel%20%3A%3D%20self%20printString%5D.%20%0A%09anInspector%20setLabel%3A%20label'),
  3125. messageSends: ["inspectOn:", "ifTrue:ifFalse:", unescape("%3E"), "size", "printString", unescape("%2C"), "copyFrom:to:", "setLabel:"],
  3126. referencedClasses: []
  3127. }),
  3128. smalltalk.String);
  3129. smalltalk.addMethod(
  3130. '_inspectOn_',
  3131. smalltalk.method({
  3132. selector: 'inspectOn:',
  3133. category: '*IDE',
  3134. fn: function (anInspector){
  3135. var self=this;
  3136. var variables=nil;
  3137. variables=smalltalk.send(smalltalk.Dictionary, "_new", []);
  3138. smalltalk.send(variables, "_at_put_", [unescape("%23self"), self]);
  3139. smalltalk.send(variables, "_at_put_", [unescape("%23home"), smalltalk.send(self, "_home", [])]);
  3140. smalltalk.send(variables, "_at_put_", [unescape("%23receiver"), smalltalk.send(self, "_receiver", [])]);
  3141. smalltalk.send(variables, "_at_put_", [unescape("%23selector"), smalltalk.send(self, "_selector", [])]);
  3142. smalltalk.send(variables, "_at_put_", [unescape("%23temps"), smalltalk.send(self, "_temps", [])]);
  3143. smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_instanceVariableNames", []), "_do_", [(function(each){return smalltalk.send(variables, "_at_put_", [each, smalltalk.send(self, "_instVarAt_", [each])]);})]);
  3144. (function($rec){smalltalk.send($rec, "_setLabel_", [smalltalk.send(self, "_printString", [])]);return smalltalk.send($rec, "_setVariables_", [variables]);})(anInspector);
  3145. return self;},
  3146. source: unescape('inspectOn%3A%20anInspector%0A%09%7C%20variables%20%7C%0A%09variables%20%3A%3D%20Dictionary%20new.%0A%09variables%20at%3A%20%27%23self%27%20put%3A%20self.%0A%09variables%20at%3A%20%27%23home%27%20put%3A%20self%20home.%0A%09variables%20at%3A%20%27%23receiver%27%20put%3A%20self%20receiver.%0A%09variables%20at%3A%20%27%23selector%27%20put%3A%20self%20selector.%0A%09variables%20at%3A%20%27%23temps%27%20put%3A%20self%20temps.%0A%09self%20class%20instanceVariableNames%20do%3A%20%5B%3Aeach%20%7C%0A%09%09variables%20at%3A%20each%20put%3A%20%28self%20instVarAt%3A%20each%29%5D.%0A%09anInspector%20%0A%09%09setLabel%3A%20self%20printString%3B%0A%09%09setVariables%3A%20variables'),
  3147. messageSends: ["new", "at:put:", "home", "receiver", "selector", "temps", "do:", "instanceVariableNames", "class", "instVarAt:", "setLabel:", "printString", "setVariables:"],
  3148. referencedClasses: [smalltalk.Dictionary]
  3149. }),
  3150. smalltalk.MethodContext);
  3151. smalltalk.addMethod(
  3152. '_inspectOn_',
  3153. smalltalk.method({
  3154. selector: 'inspectOn:',
  3155. category: '*IDE',
  3156. fn: function (anInspector){
  3157. var self=this;
  3158. var variables=nil;
  3159. variables=smalltalk.send(smalltalk.Dictionary, "_new", []);
  3160. smalltalk.send(variables, "_at_put_", [unescape("%23self"), self]);
  3161. smalltalk.send(variables, "_at_put_", [unescape("%23keys"), smalltalk.send(self, "_keys", [])]);
  3162. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(variables, "_at_put_", [key, value]);})]);
  3163. (function($rec){smalltalk.send($rec, "_setLabel_", [smalltalk.send(self, "_printString", [])]);return smalltalk.send($rec, "_setVariables_", [variables]);})(anInspector);
  3164. return self;},
  3165. source: unescape('inspectOn%3A%20anInspector%0A%09%7C%20variables%20%7C%0A%09variables%20%3A%3D%20Dictionary%20new.%0A%09variables%20at%3A%20%27%23self%27%20put%3A%20self.%0A%09variables%20at%3A%20%27%23keys%27%20put%3A%20self%20keys.%0A%09self%20keysAndValuesDo%3A%20%5B%3Akey%20%3Avalue%20%7C%0A%09%09variables%20at%3A%20key%20put%3A%20value%5D.%0A%09anInspector%20%0A%09%09setLabel%3A%20self%20printString%3B%0A%09%09setVariables%3A%20variables'),
  3166. messageSends: ["new", "at:put:", "keys", "keysAndValuesDo:", "setLabel:", "printString", "setVariables:"],
  3167. referencedClasses: [smalltalk.Dictionary]
  3168. }),
  3169. smalltalk.Dictionary);