IDE.js 180 KB

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