Helios-Browser.js 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332
  1. define("amber_core/Helios-Browser", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_vm/globals", "amber_core/Helios-Core", "amber_core/Kernel-Objects"], function(smalltalk,nil,_st, globals){
  2. smalltalk.addPackage('Helios-Browser');
  3. smalltalk.packages["Helios-Browser"].transport = {"type":"amd","amdNamespace":"amber_core"};
  4. smalltalk.addClass('HLBrowser', globals.HLWidget, ['model', 'packagesListWidget', 'classesListWidget', 'protocolsListWidget', 'methodsListWidget', 'sourceWidget', 'bottomDiv'], 'Helios-Browser');
  5. globals.HLBrowser.comment="I render a system browser with 4 panes (Packages, Classes, Protocols, Methods) and a source area.";
  6. smalltalk.addMethod(
  7. smalltalk.method({
  8. selector: "canHaveFocus",
  9. protocol: 'testing',
  10. fn: function () {
  11. var self=this;
  12. return true;
  13. },
  14. args: [],
  15. source: "canHaveFocus\x0a\x09^ true",
  16. messageSends: [],
  17. referencedClasses: []
  18. }),
  19. globals.HLBrowser);
  20. smalltalk.addMethod(
  21. smalltalk.method({
  22. selector: "classesListWidget",
  23. protocol: 'widgets',
  24. fn: function () {
  25. var self=this;
  26. function $HLClassesListWidget(){return globals.HLClassesListWidget||(typeof HLClassesListWidget=="undefined"?nil:HLClassesListWidget)}
  27. return smalltalk.withContext(function($ctx1) {
  28. var $2,$1;
  29. $2=self["@classesListWidget"];
  30. if(($receiver = $2) == nil || $receiver == null){
  31. self["@classesListWidget"]=_st($HLClassesListWidget())._on_(self._model());
  32. self["@classesListWidget"];
  33. $1=_st(self["@classesListWidget"])._next_(self._protocolsListWidget());
  34. } else {
  35. $1=$2;
  36. };
  37. return $1;
  38. }, function($ctx1) {$ctx1.fill(self,"classesListWidget",{},globals.HLBrowser)});},
  39. args: [],
  40. source: "classesListWidget\x0a\x09^ classesListWidget ifNil: [\x0a \x09classesListWidget := HLClassesListWidget on: self model.\x0a\x09\x09classesListWidget next: self protocolsListWidget ]",
  41. messageSends: ["ifNil:", "on:", "model", "next:", "protocolsListWidget"],
  42. referencedClasses: ["HLClassesListWidget"]
  43. }),
  44. globals.HLBrowser);
  45. smalltalk.addMethod(
  46. smalltalk.method({
  47. selector: "environment",
  48. protocol: 'accessing',
  49. fn: function () {
  50. var self=this;
  51. return smalltalk.withContext(function($ctx1) {
  52. var $1;
  53. $1=_st(self._model())._environment();
  54. return $1;
  55. }, function($ctx1) {$ctx1.fill(self,"environment",{},globals.HLBrowser)});},
  56. args: [],
  57. source: "environment\x0a\x09^ self model environment",
  58. messageSends: ["environment", "model"],
  59. referencedClasses: []
  60. }),
  61. globals.HLBrowser);
  62. smalltalk.addMethod(
  63. smalltalk.method({
  64. selector: "focus",
  65. protocol: 'actions',
  66. fn: function () {
  67. var self=this;
  68. return smalltalk.withContext(function($ctx1) {
  69. var $1;
  70. $1=_st(self._packagesListWidget())._focus();
  71. return $1;
  72. }, function($ctx1) {$ctx1.fill(self,"focus",{},globals.HLBrowser)});},
  73. args: [],
  74. source: "focus\x0a\x09^ self packagesListWidget focus",
  75. messageSends: ["focus", "packagesListWidget"],
  76. referencedClasses: []
  77. }),
  78. globals.HLBrowser);
  79. smalltalk.addMethod(
  80. smalltalk.method({
  81. selector: "methodsListWidget",
  82. protocol: 'widgets',
  83. fn: function () {
  84. var self=this;
  85. function $HLMethodsListWidget(){return globals.HLMethodsListWidget||(typeof HLMethodsListWidget=="undefined"?nil:HLMethodsListWidget)}
  86. return smalltalk.withContext(function($ctx1) {
  87. var $2,$1;
  88. $2=self["@methodsListWidget"];
  89. if(($receiver = $2) == nil || $receiver == null){
  90. self["@methodsListWidget"]=_st($HLMethodsListWidget())._on_(self._model());
  91. self["@methodsListWidget"];
  92. $1=_st(self["@methodsListWidget"])._next_(self._sourceWidget());
  93. } else {
  94. $1=$2;
  95. };
  96. return $1;
  97. }, function($ctx1) {$ctx1.fill(self,"methodsListWidget",{},globals.HLBrowser)});},
  98. args: [],
  99. source: "methodsListWidget\x0a\x09^ methodsListWidget ifNil: [\x0a \x09methodsListWidget := HLMethodsListWidget on: self model.\x0a\x09\x09methodsListWidget next: self sourceWidget ]",
  100. messageSends: ["ifNil:", "on:", "model", "next:", "sourceWidget"],
  101. referencedClasses: ["HLMethodsListWidget"]
  102. }),
  103. globals.HLBrowser);
  104. smalltalk.addMethod(
  105. smalltalk.method({
  106. selector: "model",
  107. protocol: 'accessing',
  108. fn: function (){
  109. var self=this;
  110. function $HLBrowserModel(){return globals.HLBrowserModel||(typeof HLBrowserModel=="undefined"?nil:HLBrowserModel)}
  111. return smalltalk.withContext(function($ctx1) {
  112. var $2,$1;
  113. $2=self["@model"];
  114. if(($receiver = $2) == nil || $receiver == null){
  115. self._model_(_st($HLBrowserModel())._new());
  116. $1=self["@model"];
  117. } else {
  118. $1=$2;
  119. };
  120. return $1;
  121. }, function($ctx1) {$ctx1.fill(self,"model",{},globals.HLBrowser)})},
  122. args: [],
  123. source: "model\x0a\x09^ model ifNil: [ self model: HLBrowserModel new. model ]",
  124. messageSends: ["ifNil:", "model:", "new"],
  125. referencedClasses: ["HLBrowserModel"]
  126. }),
  127. globals.HLBrowser);
  128. smalltalk.addMethod(
  129. smalltalk.method({
  130. selector: "model:",
  131. protocol: 'accessing',
  132. fn: function (aModel){
  133. var self=this;
  134. return smalltalk.withContext(function($ctx1) {
  135. self["@model"]=aModel;
  136. self._observeModel();
  137. return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},globals.HLBrowser)})},
  138. args: ["aModel"],
  139. source: "model: aModel\x0a\x09model := aModel.\x0a\x09self observeModel",
  140. messageSends: ["observeModel"],
  141. referencedClasses: []
  142. }),
  143. globals.HLBrowser);
  144. smalltalk.addMethod(
  145. smalltalk.method({
  146. selector: "observeModel",
  147. protocol: 'actions',
  148. fn: function (){
  149. var self=this;
  150. function $HLPackageSelected(){return globals.HLPackageSelected||(typeof HLPackageSelected=="undefined"?nil:HLPackageSelected)}
  151. function $HLClassSelected(){return globals.HLClassSelected||(typeof HLClassSelected=="undefined"?nil:HLClassSelected)}
  152. return smalltalk.withContext(function($ctx1) {
  153. var $2,$1;
  154. $2=self._model();
  155. $ctx1.sendIdx["model"]=1;
  156. $1=_st($2)._announcer();
  157. $ctx1.sendIdx["announcer"]=1;
  158. _st($1)._on_send_to_($HLPackageSelected(),"onPackageSelected:",self);
  159. $ctx1.sendIdx["on:send:to:"]=1;
  160. _st(_st(self._model())._announcer())._on_send_to_($HLClassSelected(),"onClassSelected:",self);
  161. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},globals.HLBrowser)})},
  162. args: [],
  163. source: "observeModel\x0a\x09self model announcer\x0a\x09\x09on: HLPackageSelected\x0a\x09\x09send: #onPackageSelected:\x0a\x09\x09to: self.\x0a\x09\x09\x0a\x09self model announcer\x0a\x09\x09on: HLClassSelected\x0a\x09\x09send: #onClassSelected:\x0a\x09\x09to: self",
  164. messageSends: ["on:send:to:", "announcer", "model"],
  165. referencedClasses: ["HLPackageSelected", "HLClassSelected"]
  166. }),
  167. globals.HLBrowser);
  168. smalltalk.addMethod(
  169. smalltalk.method({
  170. selector: "onClassSelected:",
  171. protocol: 'reactions',
  172. fn: function (anAnnouncement){
  173. var self=this;
  174. return smalltalk.withContext(function($ctx1) {
  175. var $1,$3,$2;
  176. $1=_st(anAnnouncement)._item();
  177. if(($receiver = $1) == nil || $receiver == null){
  178. $3=_st(self._model())._selectedPackage();
  179. if(($receiver = $3) == nil || $receiver == null){
  180. $2=self._defaultTabLabel();
  181. } else {
  182. var package_;
  183. package_=$receiver;
  184. $2=_st(package_)._name();
  185. $ctx1.sendIdx["name"]=1;
  186. };
  187. self._setTabLabel_($2);
  188. $ctx1.sendIdx["setTabLabel:"]=1;
  189. } else {
  190. var item;
  191. item=$receiver;
  192. self._setTabLabel_(_st(item)._name());
  193. };
  194. return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{anAnnouncement:anAnnouncement},globals.HLBrowser)})},
  195. args: ["anAnnouncement"],
  196. source: "onClassSelected: anAnnouncement\x0a\x09anAnnouncement item \x0a\x09\x09ifNil: [ self setTabLabel: (self model selectedPackage \x0a\x09\x09\x09ifNil: [ self defaultTabLabel ]\x0a\x09\x09\x09ifNotNil: [ :package | package name ]) ] \x0a\x09\x09ifNotNil: [ :item | self setTabLabel: item name ]",
  197. messageSends: ["ifNil:ifNotNil:", "item", "setTabLabel:", "selectedPackage", "model", "defaultTabLabel", "name"],
  198. referencedClasses: []
  199. }),
  200. globals.HLBrowser);
  201. smalltalk.addMethod(
  202. smalltalk.method({
  203. selector: "onPackageSelected:",
  204. protocol: 'reactions',
  205. fn: function (anAnnouncement){
  206. var self=this;
  207. return smalltalk.withContext(function($ctx1) {
  208. var $1;
  209. $1=_st(anAnnouncement)._item();
  210. if(($receiver = $1) == nil || $receiver == null){
  211. $1;
  212. } else {
  213. var item;
  214. item=$receiver;
  215. self._setTabLabel_(_st(item)._name());
  216. };
  217. return self}, function($ctx1) {$ctx1.fill(self,"onPackageSelected:",{anAnnouncement:anAnnouncement},globals.HLBrowser)})},
  218. args: ["anAnnouncement"],
  219. source: "onPackageSelected: anAnnouncement\x0a\x09anAnnouncement item ifNotNil: [ :item |\x0a\x09self setTabLabel: item name ]",
  220. messageSends: ["ifNotNil:", "item", "setTabLabel:", "name"],
  221. referencedClasses: []
  222. }),
  223. globals.HLBrowser);
  224. smalltalk.addMethod(
  225. smalltalk.method({
  226. selector: "openClassNamed:",
  227. protocol: 'actions',
  228. fn: function (aString) {
  229. var self=this;
  230. return smalltalk.withContext(function($ctx1) {
  231. _st(self._model())._openClassNamed_(aString);
  232. return self}, function($ctx1) {$ctx1.fill(self,"openClassNamed:",{aString:aString},globals.HLBrowser)});},
  233. args: ["aString"],
  234. source: "openClassNamed: aString\x0a\x09self model openClassNamed: aString",
  235. messageSends: ["openClassNamed:", "model"],
  236. referencedClasses: []
  237. }),
  238. globals.HLBrowser);
  239. smalltalk.addMethod(
  240. smalltalk.method({
  241. selector: "openMethod:",
  242. protocol: 'actions',
  243. fn: function (aCompiledMethod){
  244. var self=this;
  245. return smalltalk.withContext(function($ctx1) {
  246. var $1,$2,$4,$3,$5;
  247. $1=self._model();
  248. _st($1)._focusOnSourceCode();
  249. $ctx1.sendIdx["focusOnSourceCode"]=1;
  250. $2=$1;
  251. $4=_st(aCompiledMethod)._methodClass();
  252. $ctx1.sendIdx["methodClass"]=1;
  253. $3=_st($4)._package();
  254. _st($2)._selectedPackage_($3);
  255. _st($1)._selectedClass_(_st(aCompiledMethod)._methodClass());
  256. _st($1)._selectedProtocol_(_st(aCompiledMethod)._protocol());
  257. _st($1)._selectedMethod_(aCompiledMethod);
  258. $5=_st($1)._focusOnSourceCode();
  259. return self}, function($ctx1) {$ctx1.fill(self,"openMethod:",{aCompiledMethod:aCompiledMethod},globals.HLBrowser)})},
  260. args: ["aCompiledMethod"],
  261. source: "openMethod: aCompiledMethod\x0a\x09self model\x0a\x09\x09\x22Workaround for the package selection announcement when the package list is focused\x22\x09\x0a\x09\x09focusOnSourceCode;\x0a\x09\x09selectedPackage: aCompiledMethod methodClass package;\x0a\x09\x09selectedClass: aCompiledMethod methodClass;\x0a\x09\x09selectedProtocol: aCompiledMethod protocol;\x0a\x09\x09selectedMethod: aCompiledMethod;\x0a\x09\x09focusOnSourceCode",
  262. messageSends: ["focusOnSourceCode", "model", "selectedPackage:", "package", "methodClass", "selectedClass:", "selectedProtocol:", "protocol", "selectedMethod:"],
  263. referencedClasses: []
  264. }),
  265. globals.HLBrowser);
  266. smalltalk.addMethod(
  267. smalltalk.method({
  268. selector: "packagesListWidget",
  269. protocol: 'widgets',
  270. fn: function () {
  271. var self=this;
  272. function $HLPackagesListWidget(){return globals.HLPackagesListWidget||(typeof HLPackagesListWidget=="undefined"?nil:HLPackagesListWidget)}
  273. return smalltalk.withContext(function($ctx1) {
  274. var $2,$1;
  275. $2=self["@packagesListWidget"];
  276. if(($receiver = $2) == nil || $receiver == null){
  277. self["@packagesListWidget"]=_st($HLPackagesListWidget())._on_(self._model());
  278. self["@packagesListWidget"];
  279. $1=_st(self["@packagesListWidget"])._next_(self._classesListWidget());
  280. } else {
  281. $1=$2;
  282. };
  283. return $1;
  284. }, function($ctx1) {$ctx1.fill(self,"packagesListWidget",{},globals.HLBrowser)});},
  285. args: [],
  286. source: "packagesListWidget\x0a\x09^ packagesListWidget ifNil: [\x0a \x09packagesListWidget := HLPackagesListWidget on: self model.\x0a\x09\x09packagesListWidget next: self classesListWidget ]",
  287. messageSends: ["ifNil:", "on:", "model", "next:", "classesListWidget"],
  288. referencedClasses: ["HLPackagesListWidget"]
  289. }),
  290. globals.HLBrowser);
  291. smalltalk.addMethod(
  292. smalltalk.method({
  293. selector: "protocolsListWidget",
  294. protocol: 'widgets',
  295. fn: function () {
  296. var self=this;
  297. function $HLProtocolsListWidget(){return globals.HLProtocolsListWidget||(typeof HLProtocolsListWidget=="undefined"?nil:HLProtocolsListWidget)}
  298. return smalltalk.withContext(function($ctx1) {
  299. var $2,$1;
  300. $2=self["@protocolsListWidget"];
  301. if(($receiver = $2) == nil || $receiver == null){
  302. self["@protocolsListWidget"]=_st($HLProtocolsListWidget())._on_(self._model());
  303. self["@protocolsListWidget"];
  304. $1=_st(self["@protocolsListWidget"])._next_(self._methodsListWidget());
  305. } else {
  306. $1=$2;
  307. };
  308. return $1;
  309. }, function($ctx1) {$ctx1.fill(self,"protocolsListWidget",{},globals.HLBrowser)});},
  310. args: [],
  311. source: "protocolsListWidget\x0a\x09^ protocolsListWidget ifNil: [\x0a \x09protocolsListWidget := HLProtocolsListWidget on: self model.\x0a\x09\x09protocolsListWidget next: self methodsListWidget ]",
  312. messageSends: ["ifNil:", "on:", "model", "next:", "methodsListWidget"],
  313. referencedClasses: ["HLProtocolsListWidget"]
  314. }),
  315. globals.HLBrowser);
  316. smalltalk.addMethod(
  317. smalltalk.method({
  318. selector: "registerBindingsOn:",
  319. protocol: 'keybindings',
  320. fn: function (aBindingGroup) {
  321. var self=this;
  322. function $HLToolCommand(){return globals.HLToolCommand||(typeof HLToolCommand=="undefined"?nil:HLToolCommand)}
  323. return smalltalk.withContext(function($ctx1) {
  324. _st($HLToolCommand())._registerConcreteClassesOn_for_(aBindingGroup,self._model());
  325. return self}, function($ctx1) {$ctx1.fill(self,"registerBindingsOn:",{aBindingGroup:aBindingGroup},globals.HLBrowser)});},
  326. args: ["aBindingGroup"],
  327. source: "registerBindingsOn: aBindingGroup\x0a\x09HLToolCommand \x0a\x09\x09registerConcreteClassesOn: aBindingGroup \x0a\x09\x09for: self model",
  328. messageSends: ["registerConcreteClassesOn:for:", "model"],
  329. referencedClasses: ["HLToolCommand"]
  330. }),
  331. globals.HLBrowser);
  332. smalltalk.addMethod(
  333. smalltalk.method({
  334. selector: "renderContentOn:",
  335. protocol: 'rendering',
  336. fn: function (html) {
  337. var self=this;
  338. function $HLContainer(){return globals.HLContainer||(typeof HLContainer=="undefined"?nil:HLContainer)}
  339. function $HLHorizontalSplitter(){return globals.HLHorizontalSplitter||(typeof HLHorizontalSplitter=="undefined"?nil:HLHorizontalSplitter)}
  340. function $HLVerticalSplitter(){return globals.HLVerticalSplitter||(typeof HLVerticalSplitter=="undefined"?nil:HLVerticalSplitter)}
  341. return smalltalk.withContext(function($ctx1) {
  342. var $5,$4,$3,$2,$1;
  343. $5=self._packagesListWidget();
  344. $ctx1.sendIdx["packagesListWidget"]=1;
  345. $4=_st($HLVerticalSplitter())._with_with_($5,self._classesListWidget());
  346. $ctx1.sendIdx["with:with:"]=3;
  347. $3=_st($HLVerticalSplitter())._with_with_($4,_st($HLVerticalSplitter())._with_with_(self._protocolsListWidget(),self._methodsListWidget()));
  348. $ctx1.sendIdx["with:with:"]=2;
  349. $2=_st($HLHorizontalSplitter())._with_with_($3,self._sourceWidget());
  350. $ctx1.sendIdx["with:with:"]=1;
  351. $1=_st($HLContainer())._with_($2);
  352. _st(html)._with_($1);
  353. $ctx1.sendIdx["with:"]=1;
  354. _st(self._packagesListWidget())._focus();
  355. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLBrowser)});},
  356. args: ["html"],
  357. source: "renderContentOn: html\x0a\x09html with: (HLContainer with: (HLHorizontalSplitter \x0a \x09with: (HLVerticalSplitter\x0a \x09with: (HLVerticalSplitter\x0a \x09with: self packagesListWidget\x0a with: self classesListWidget)\x0a with: (HLVerticalSplitter\x0a \x09with: self protocolsListWidget\x0a with: self methodsListWidget)) \x0a with: self sourceWidget)).\x0a\x09\x0a\x09self packagesListWidget focus",
  358. messageSends: ["with:", "with:with:", "packagesListWidget", "classesListWidget", "protocolsListWidget", "methodsListWidget", "sourceWidget", "focus"],
  359. referencedClasses: ["HLContainer", "HLHorizontalSplitter", "HLVerticalSplitter"]
  360. }),
  361. globals.HLBrowser);
  362. smalltalk.addMethod(
  363. smalltalk.method({
  364. selector: "sourceWidget",
  365. protocol: 'widgets',
  366. fn: function () {
  367. var self=this;
  368. function $HLBrowserBottomWidget(){return globals.HLBrowserBottomWidget||(typeof HLBrowserBottomWidget=="undefined"?nil:HLBrowserBottomWidget)}
  369. return smalltalk.withContext(function($ctx1) {
  370. var $2,$3,$4,$1;
  371. $2=self["@sourceWidget"];
  372. if(($receiver = $2) == nil || $receiver == null){
  373. $3=_st($HLBrowserBottomWidget())._new();
  374. _st($3)._model_(self._model());
  375. $4=_st($3)._yourself();
  376. self["@sourceWidget"]=$4;
  377. $1=self["@sourceWidget"];
  378. } else {
  379. $1=$2;
  380. };
  381. return $1;
  382. }, function($ctx1) {$ctx1.fill(self,"sourceWidget",{},globals.HLBrowser)});},
  383. args: [],
  384. source: "sourceWidget\x0a\x09^ sourceWidget ifNil: [\x0a \x09sourceWidget := HLBrowserBottomWidget new\x0a\x09\x09\x09model: self model;\x0a\x09\x09\x09yourself ]",
  385. messageSends: ["ifNil:", "model:", "new", "model", "yourself"],
  386. referencedClasses: ["HLBrowserBottomWidget"]
  387. }),
  388. globals.HLBrowser);
  389. smalltalk.addMethod(
  390. smalltalk.method({
  391. selector: "unregister",
  392. protocol: 'actions',
  393. fn: function () {
  394. var self=this;
  395. return smalltalk.withContext(function($ctx1) {
  396. globals.HLBrowser.superclass.fn.prototype._unregister.apply(_st(self), []);
  397. $ctx1.sendIdx["unregister"]=1;
  398. _st([self._packagesListWidget(),self._classesListWidget(),self._protocolsListWidget(),self._methodsListWidget(),self._sourceWidget()])._do_((function(each){
  399. return smalltalk.withContext(function($ctx2) {
  400. return _st(each)._unregister();
  401. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  402. return self}, function($ctx1) {$ctx1.fill(self,"unregister",{},globals.HLBrowser)});},
  403. args: [],
  404. source: "unregister\x0a\x09super unregister.\x0a\x0a\x09{ \x0a\x09\x09self packagesListWidget.\x0a\x09\x09self classesListWidget.\x0a\x09\x09self protocolsListWidget.\x0a\x09\x09self methodsListWidget.\x0a\x09\x09self sourceWidget\x0a\x09} \x0a\x09\x09do: [ :each | each unregister ]",
  405. messageSends: ["unregister", "do:", "packagesListWidget", "classesListWidget", "protocolsListWidget", "methodsListWidget", "sourceWidget"],
  406. referencedClasses: []
  407. }),
  408. globals.HLBrowser);
  409. globals.HLBrowser.klass.iVarNames = ['nextId'];
  410. smalltalk.addMethod(
  411. smalltalk.method({
  412. selector: "canBeOpenAsTab",
  413. protocol: 'testing',
  414. fn: function () {
  415. var self=this;
  416. return true;
  417. },
  418. args: [],
  419. source: "canBeOpenAsTab\x0a\x09^ true",
  420. messageSends: [],
  421. referencedClasses: []
  422. }),
  423. globals.HLBrowser.klass);
  424. smalltalk.addMethod(
  425. smalltalk.method({
  426. selector: "nextId",
  427. protocol: 'accessing',
  428. fn: function () {
  429. var self=this;
  430. return smalltalk.withContext(function($ctx1) {
  431. var $1,$2;
  432. $1=self["@nextId"];
  433. if(($receiver = $1) == nil || $receiver == null){
  434. self["@nextId"]=(0);
  435. self["@nextId"];
  436. } else {
  437. $1;
  438. };
  439. $2="browser_".__comma(_st(_st(self["@nextId"]).__plus((1)))._asString());
  440. return $2;
  441. }, function($ctx1) {$ctx1.fill(self,"nextId",{},globals.HLBrowser.klass)});},
  442. args: [],
  443. source: "nextId\x0a\x09nextId ifNil: [ nextId := 0 ].\x0a ^ 'browser_', (nextId + 1) asString",
  444. messageSends: ["ifNil:", ",", "asString", "+"],
  445. referencedClasses: []
  446. }),
  447. globals.HLBrowser.klass);
  448. smalltalk.addMethod(
  449. smalltalk.method({
  450. selector: "tabClass",
  451. protocol: 'accessing',
  452. fn: function () {
  453. var self=this;
  454. return "browser";
  455. },
  456. args: [],
  457. source: "tabClass\x0a\x09^ 'browser'",
  458. messageSends: [],
  459. referencedClasses: []
  460. }),
  461. globals.HLBrowser.klass);
  462. smalltalk.addMethod(
  463. smalltalk.method({
  464. selector: "tabLabel",
  465. protocol: 'accessing',
  466. fn: function () {
  467. var self=this;
  468. return "Browser";
  469. },
  470. args: [],
  471. source: "tabLabel\x0a\x09^ 'Browser'",
  472. messageSends: [],
  473. referencedClasses: []
  474. }),
  475. globals.HLBrowser.klass);
  476. smalltalk.addMethod(
  477. smalltalk.method({
  478. selector: "tabPriority",
  479. protocol: 'accessing',
  480. fn: function () {
  481. var self=this;
  482. return (0);
  483. },
  484. args: [],
  485. source: "tabPriority\x0a\x09^ 0",
  486. messageSends: [],
  487. referencedClasses: []
  488. }),
  489. globals.HLBrowser.klass);
  490. smalltalk.addClass('HLBrowserBottomWidget', globals.HLWidget, ['model', 'codeWidget', 'documentationWidget'], 'Helios-Browser');
  491. globals.HLBrowserBottomWidget.comment="I render the code area of a browser and optionally the documentation for the selected class.";
  492. smalltalk.addMethod(
  493. smalltalk.method({
  494. selector: "canHaveFocus",
  495. protocol: 'testing',
  496. fn: function () {
  497. var self=this;
  498. return true;
  499. },
  500. args: [],
  501. source: "canHaveFocus\x0a\x09^ true",
  502. messageSends: [],
  503. referencedClasses: []
  504. }),
  505. globals.HLBrowserBottomWidget);
  506. smalltalk.addMethod(
  507. smalltalk.method({
  508. selector: "codeWidget",
  509. protocol: 'accessing',
  510. fn: function () {
  511. var self=this;
  512. function $HLBrowserCodeWidget(){return globals.HLBrowserCodeWidget||(typeof HLBrowserCodeWidget=="undefined"?nil:HLBrowserCodeWidget)}
  513. return smalltalk.withContext(function($ctx1) {
  514. var $2,$3,$4,$1;
  515. $2=self["@codeWidget"];
  516. if(($receiver = $2) == nil || $receiver == null){
  517. $3=_st($HLBrowserCodeWidget())._new();
  518. _st($3)._browserModel_(self._model());
  519. $4=_st($3)._yourself();
  520. self["@codeWidget"]=$4;
  521. $1=self["@codeWidget"];
  522. } else {
  523. $1=$2;
  524. };
  525. return $1;
  526. }, function($ctx1) {$ctx1.fill(self,"codeWidget",{},globals.HLBrowserBottomWidget)});},
  527. args: [],
  528. source: "codeWidget\x0a\x09^ codeWidget ifNil: [ codeWidget := HLBrowserCodeWidget new\x0a\x09\x09browserModel: self model;\x0a\x09\x09yourself ]",
  529. messageSends: ["ifNil:", "browserModel:", "new", "model", "yourself"],
  530. referencedClasses: ["HLBrowserCodeWidget"]
  531. }),
  532. globals.HLBrowserBottomWidget);
  533. smalltalk.addMethod(
  534. smalltalk.method({
  535. selector: "documentationWidget",
  536. protocol: 'accessing',
  537. fn: function () {
  538. var self=this;
  539. function $HLDocumentationWidget(){return globals.HLDocumentationWidget||(typeof HLDocumentationWidget=="undefined"?nil:HLDocumentationWidget)}
  540. return smalltalk.withContext(function($ctx1) {
  541. var $2,$3,$4,$1;
  542. $2=self["@documentationWidget"];
  543. if(($receiver = $2) == nil || $receiver == null){
  544. $3=_st($HLDocumentationWidget())._new();
  545. _st($3)._model_(self._model());
  546. $4=_st($3)._yourself();
  547. self["@documentationWidget"]=$4;
  548. $1=self["@documentationWidget"];
  549. } else {
  550. $1=$2;
  551. };
  552. return $1;
  553. }, function($ctx1) {$ctx1.fill(self,"documentationWidget",{},globals.HLBrowserBottomWidget)});},
  554. args: [],
  555. source: "documentationWidget\x0a\x09^ documentationWidget ifNil: [ documentationWidget := HLDocumentationWidget new\x0a\x09\x09model: self model;\x0a\x09\x09yourself ]",
  556. messageSends: ["ifNil:", "model:", "new", "model", "yourself"],
  557. referencedClasses: ["HLDocumentationWidget"]
  558. }),
  559. globals.HLBrowserBottomWidget);
  560. smalltalk.addMethod(
  561. smalltalk.method({
  562. selector: "focus",
  563. protocol: 'actions',
  564. fn: function () {
  565. var self=this;
  566. return smalltalk.withContext(function($ctx1) {
  567. _st(self._codeWidget())._focus();
  568. return self}, function($ctx1) {$ctx1.fill(self,"focus",{},globals.HLBrowserBottomWidget)});},
  569. args: [],
  570. source: "focus\x0a\x09self codeWidget focus",
  571. messageSends: ["focus", "codeWidget"],
  572. referencedClasses: []
  573. }),
  574. globals.HLBrowserBottomWidget);
  575. smalltalk.addMethod(
  576. smalltalk.method({
  577. selector: "model",
  578. protocol: 'accessing',
  579. fn: function () {
  580. var self=this;
  581. var $1;
  582. $1=self["@model"];
  583. return $1;
  584. },
  585. args: [],
  586. source: "model\x0a\x09^ model",
  587. messageSends: [],
  588. referencedClasses: []
  589. }),
  590. globals.HLBrowserBottomWidget);
  591. smalltalk.addMethod(
  592. smalltalk.method({
  593. selector: "model:",
  594. protocol: 'accessing',
  595. fn: function (aModel) {
  596. var self=this;
  597. return smalltalk.withContext(function($ctx1) {
  598. self["@model"]=aModel;
  599. self._observeModel();
  600. return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},globals.HLBrowserBottomWidget)});},
  601. args: ["aModel"],
  602. source: "model: aModel\x0a\x09model := aModel.\x0a\x09self observeModel",
  603. messageSends: ["observeModel"],
  604. referencedClasses: []
  605. }),
  606. globals.HLBrowserBottomWidget);
  607. smalltalk.addMethod(
  608. smalltalk.method({
  609. selector: "observeModel",
  610. protocol: 'actions',
  611. fn: function () {
  612. var self=this;
  613. function $HLShowInstanceToggled(){return globals.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
  614. function $HLShowCommentToggled(){return globals.HLShowCommentToggled||(typeof HLShowCommentToggled=="undefined"?nil:HLShowCommentToggled)}
  615. return smalltalk.withContext(function($ctx1) {
  616. var $1,$2;
  617. $1=_st(self._model())._announcer();
  618. _st($1)._on_send_to_($HLShowInstanceToggled(),"onShowInstanceToggled",self);
  619. $ctx1.sendIdx["on:send:to:"]=1;
  620. $2=_st($1)._on_send_to_($HLShowCommentToggled(),"onShowCommentToggled",self);
  621. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},globals.HLBrowserBottomWidget)});},
  622. args: [],
  623. source: "observeModel\x0a\x09self model announcer \x0a\x09\x09on: HLShowInstanceToggled\x0a\x09\x09send: #onShowInstanceToggled\x0a\x09\x09to: self;\x0a\x09\x09on: HLShowCommentToggled\x0a\x09\x09send: #onShowCommentToggled\x0a\x09\x09to: self",
  624. messageSends: ["on:send:to:", "announcer", "model"],
  625. referencedClasses: ["HLShowInstanceToggled", "HLShowCommentToggled"]
  626. }),
  627. globals.HLBrowserBottomWidget);
  628. smalltalk.addMethod(
  629. smalltalk.method({
  630. selector: "onShowCommentToggled",
  631. protocol: 'reactions',
  632. fn: function () {
  633. var self=this;
  634. return smalltalk.withContext(function($ctx1) {
  635. self._refresh();
  636. return self}, function($ctx1) {$ctx1.fill(self,"onShowCommentToggled",{},globals.HLBrowserBottomWidget)});},
  637. args: [],
  638. source: "onShowCommentToggled\x0a\x09self refresh",
  639. messageSends: ["refresh"],
  640. referencedClasses: []
  641. }),
  642. globals.HLBrowserBottomWidget);
  643. smalltalk.addMethod(
  644. smalltalk.method({
  645. selector: "onShowInstanceToggled",
  646. protocol: 'reactions',
  647. fn: function () {
  648. var self=this;
  649. return smalltalk.withContext(function($ctx1) {
  650. self._refresh();
  651. return self}, function($ctx1) {$ctx1.fill(self,"onShowInstanceToggled",{},globals.HLBrowserBottomWidget)});},
  652. args: [],
  653. source: "onShowInstanceToggled\x0a\x09self refresh",
  654. messageSends: ["refresh"],
  655. referencedClasses: []
  656. }),
  657. globals.HLBrowserBottomWidget);
  658. smalltalk.addMethod(
  659. smalltalk.method({
  660. selector: "previous",
  661. protocol: 'accessing',
  662. fn: function () {
  663. var self=this;
  664. return self;},
  665. args: [],
  666. source: "previous\x0a\x09\x22For navigation\x22",
  667. messageSends: [],
  668. referencedClasses: []
  669. }),
  670. globals.HLBrowserBottomWidget);
  671. smalltalk.addMethod(
  672. smalltalk.method({
  673. selector: "previous:",
  674. protocol: 'accessing',
  675. fn: function (aWidget) {
  676. var self=this;
  677. return self;},
  678. args: ["aWidget"],
  679. source: "previous: aWidget\x0a\x09\x22For navigation\x22",
  680. messageSends: [],
  681. referencedClasses: []
  682. }),
  683. globals.HLBrowserBottomWidget);
  684. smalltalk.addMethod(
  685. smalltalk.method({
  686. selector: "renderContentOn:",
  687. protocol: 'rendering',
  688. fn: function (html) {
  689. var self=this;
  690. return smalltalk.withContext(function($ctx1) {
  691. var $1;
  692. $1=_st(self._model())._showComment();
  693. if(smalltalk.assert($1)){
  694. self._renderPanesOn_(html);
  695. } else {
  696. _st(html)._with_(self._codeWidget());
  697. };
  698. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLBrowserBottomWidget)});},
  699. args: ["html"],
  700. source: "renderContentOn: html\x0a\x09self model showComment \x0a\x09\x09ifTrue: [ self renderPanesOn: html ]\x0a\x09\x09ifFalse: [ html with: self codeWidget ]",
  701. messageSends: ["ifTrue:ifFalse:", "showComment", "model", "renderPanesOn:", "with:", "codeWidget"],
  702. referencedClasses: []
  703. }),
  704. globals.HLBrowserBottomWidget);
  705. smalltalk.addMethod(
  706. smalltalk.method({
  707. selector: "renderPanesOn:",
  708. protocol: 'rendering',
  709. fn: function (html) {
  710. var self=this;
  711. function $HLVerticalSplitter(){return globals.HLVerticalSplitter||(typeof HLVerticalSplitter=="undefined"?nil:HLVerticalSplitter)}
  712. return smalltalk.withContext(function($ctx1) {
  713. _st(html)._with_(_st($HLVerticalSplitter())._with_with_(self._codeWidget(),self._documentationWidget()));
  714. return self}, function($ctx1) {$ctx1.fill(self,"renderPanesOn:",{html:html},globals.HLBrowserBottomWidget)});},
  715. args: ["html"],
  716. source: "renderPanesOn: html\x0a\x09html with: (HLVerticalSplitter\x0a\x09\x09with: self codeWidget\x0a\x09\x09with: self documentationWidget)",
  717. messageSends: ["with:", "with:with:", "codeWidget", "documentationWidget"],
  718. referencedClasses: ["HLVerticalSplitter"]
  719. }),
  720. globals.HLBrowserBottomWidget);
  721. smalltalk.addClass('HLBrowserModel', globals.HLToolModel, ['showInstance', 'showComment'], 'Helios-Browser');
  722. smalltalk.addMethod(
  723. smalltalk.method({
  724. selector: "editComment",
  725. protocol: 'commands actions',
  726. fn: function () {
  727. var self=this;
  728. function $HLEditComment(){return globals.HLEditComment||(typeof HLEditComment=="undefined"?nil:HLEditComment)}
  729. return smalltalk.withContext(function($ctx1) {
  730. _st(self._announcer())._announce_(_st($HLEditComment())._new());
  731. return self}, function($ctx1) {$ctx1.fill(self,"editComment",{},globals.HLBrowserModel)});},
  732. args: [],
  733. source: "editComment\x0a\x09self announcer announce: HLEditComment new",
  734. messageSends: ["announce:", "announcer", "new"],
  735. referencedClasses: ["HLEditComment"]
  736. }),
  737. globals.HLBrowserModel);
  738. smalltalk.addMethod(
  739. smalltalk.method({
  740. selector: "focusOnClasses",
  741. protocol: 'actions',
  742. fn: function () {
  743. var self=this;
  744. function $HLClassesFocusRequested(){return globals.HLClassesFocusRequested||(typeof HLClassesFocusRequested=="undefined"?nil:HLClassesFocusRequested)}
  745. return smalltalk.withContext(function($ctx1) {
  746. _st(self._announcer())._announce_(_st($HLClassesFocusRequested())._new());
  747. return self}, function($ctx1) {$ctx1.fill(self,"focusOnClasses",{},globals.HLBrowserModel)});},
  748. args: [],
  749. source: "focusOnClasses\x0a\x09self announcer announce: HLClassesFocusRequested new",
  750. messageSends: ["announce:", "announcer", "new"],
  751. referencedClasses: ["HLClassesFocusRequested"]
  752. }),
  753. globals.HLBrowserModel);
  754. smalltalk.addMethod(
  755. smalltalk.method({
  756. selector: "focusOnDocumentation",
  757. protocol: 'actions',
  758. fn: function () {
  759. var self=this;
  760. function $HLDocumentationFocusRequested(){return globals.HLDocumentationFocusRequested||(typeof HLDocumentationFocusRequested=="undefined"?nil:HLDocumentationFocusRequested)}
  761. return smalltalk.withContext(function($ctx1) {
  762. _st(self._announcer())._announce_(_st($HLDocumentationFocusRequested())._new());
  763. return self}, function($ctx1) {$ctx1.fill(self,"focusOnDocumentation",{},globals.HLBrowserModel)});},
  764. args: [],
  765. source: "focusOnDocumentation\x0a\x09self announcer announce: HLDocumentationFocusRequested new",
  766. messageSends: ["announce:", "announcer", "new"],
  767. referencedClasses: ["HLDocumentationFocusRequested"]
  768. }),
  769. globals.HLBrowserModel);
  770. smalltalk.addMethod(
  771. smalltalk.method({
  772. selector: "focusOnMethods",
  773. protocol: 'actions',
  774. fn: function () {
  775. var self=this;
  776. function $HLMethodsFocusRequested(){return globals.HLMethodsFocusRequested||(typeof HLMethodsFocusRequested=="undefined"?nil:HLMethodsFocusRequested)}
  777. return smalltalk.withContext(function($ctx1) {
  778. _st(self._announcer())._announce_(_st($HLMethodsFocusRequested())._new());
  779. return self}, function($ctx1) {$ctx1.fill(self,"focusOnMethods",{},globals.HLBrowserModel)});},
  780. args: [],
  781. source: "focusOnMethods\x0a\x09self announcer announce: HLMethodsFocusRequested new",
  782. messageSends: ["announce:", "announcer", "new"],
  783. referencedClasses: ["HLMethodsFocusRequested"]
  784. }),
  785. globals.HLBrowserModel);
  786. smalltalk.addMethod(
  787. smalltalk.method({
  788. selector: "focusOnPackages",
  789. protocol: 'actions',
  790. fn: function () {
  791. var self=this;
  792. function $HLPackagesFocusRequested(){return globals.HLPackagesFocusRequested||(typeof HLPackagesFocusRequested=="undefined"?nil:HLPackagesFocusRequested)}
  793. return smalltalk.withContext(function($ctx1) {
  794. _st(self._announcer())._announce_(_st($HLPackagesFocusRequested())._new());
  795. return self}, function($ctx1) {$ctx1.fill(self,"focusOnPackages",{},globals.HLBrowserModel)});},
  796. args: [],
  797. source: "focusOnPackages\x0a\x09self announcer announce: HLPackagesFocusRequested new",
  798. messageSends: ["announce:", "announcer", "new"],
  799. referencedClasses: ["HLPackagesFocusRequested"]
  800. }),
  801. globals.HLBrowserModel);
  802. smalltalk.addMethod(
  803. smalltalk.method({
  804. selector: "focusOnProtocols",
  805. protocol: 'actions',
  806. fn: function () {
  807. var self=this;
  808. function $HLProtocolsFocusRequested(){return globals.HLProtocolsFocusRequested||(typeof HLProtocolsFocusRequested=="undefined"?nil:HLProtocolsFocusRequested)}
  809. return smalltalk.withContext(function($ctx1) {
  810. _st(self._announcer())._announce_(_st($HLProtocolsFocusRequested())._new());
  811. return self}, function($ctx1) {$ctx1.fill(self,"focusOnProtocols",{},globals.HLBrowserModel)});},
  812. args: [],
  813. source: "focusOnProtocols\x0a\x09self announcer announce: HLProtocolsFocusRequested new",
  814. messageSends: ["announce:", "announcer", "new"],
  815. referencedClasses: ["HLProtocolsFocusRequested"]
  816. }),
  817. globals.HLBrowserModel);
  818. smalltalk.addMethod(
  819. smalltalk.method({
  820. selector: "focusOnSourceCode",
  821. protocol: 'actions',
  822. fn: function () {
  823. var self=this;
  824. function $HLSourceCodeFocusRequested(){return globals.HLSourceCodeFocusRequested||(typeof HLSourceCodeFocusRequested=="undefined"?nil:HLSourceCodeFocusRequested)}
  825. return smalltalk.withContext(function($ctx1) {
  826. _st(self._announcer())._announce_(_st($HLSourceCodeFocusRequested())._new());
  827. return self}, function($ctx1) {$ctx1.fill(self,"focusOnSourceCode",{},globals.HLBrowserModel)});},
  828. args: [],
  829. source: "focusOnSourceCode\x0a\x09self announcer announce: HLSourceCodeFocusRequested new",
  830. messageSends: ["announce:", "announcer", "new"],
  831. referencedClasses: ["HLSourceCodeFocusRequested"]
  832. }),
  833. globals.HLBrowserModel);
  834. smalltalk.addMethod(
  835. smalltalk.method({
  836. selector: "isBrowserModel",
  837. protocol: 'testing',
  838. fn: function () {
  839. var self=this;
  840. return true;
  841. },
  842. args: [],
  843. source: "isBrowserModel\x0a\x09^ true",
  844. messageSends: [],
  845. referencedClasses: []
  846. }),
  847. globals.HLBrowserModel);
  848. smalltalk.addMethod(
  849. smalltalk.method({
  850. selector: "setClassComment:",
  851. protocol: 'actions',
  852. fn: function (aString) {
  853. var self=this;
  854. return smalltalk.withContext(function($ctx1) {
  855. _st(self._environment())._setClassCommentOf_to_(_st(self._selectedClass())._theNonMetaClass(),aString);
  856. return self}, function($ctx1) {$ctx1.fill(self,"setClassComment:",{aString:aString},globals.HLBrowserModel)});},
  857. args: ["aString"],
  858. source: "setClassComment: aString\x0a\x09self environment\x0a\x09\x09setClassCommentOf: self selectedClass theNonMetaClass\x0a\x09\x09to: aString",
  859. messageSends: ["setClassCommentOf:to:", "environment", "theNonMetaClass", "selectedClass"],
  860. referencedClasses: []
  861. }),
  862. globals.HLBrowserModel);
  863. smalltalk.addMethod(
  864. smalltalk.method({
  865. selector: "showClassTemplate",
  866. protocol: 'actions',
  867. fn: function () {
  868. var self=this;
  869. function $HLShowTemplate(){return globals.HLShowTemplate||(typeof HLShowTemplate=="undefined"?nil:HLShowTemplate)}
  870. return smalltalk.withContext(function($ctx1) {
  871. var $1,$2,$3;
  872. $1=self._selectedPackage();
  873. if(($receiver = $1) == nil || $receiver == null){
  874. $1;
  875. } else {
  876. var package_;
  877. package_=$receiver;
  878. $2=_st($HLShowTemplate())._new();
  879. _st($2)._template_(_st(package_)._classTemplate());
  880. $3=_st($2)._yourself();
  881. _st(self._announcer())._announce_($3);
  882. };
  883. return self}, function($ctx1) {$ctx1.fill(self,"showClassTemplate",{},globals.HLBrowserModel)});},
  884. args: [],
  885. source: "showClassTemplate\x0a\x09self selectedPackage ifNotNil: [ :package |\x0a\x09\x09self announcer announce: (HLShowTemplate new\x0a\x09\x09\x09template: package classTemplate;\x0a\x09\x09\x09yourself) ]",
  886. messageSends: ["ifNotNil:", "selectedPackage", "announce:", "announcer", "template:", "new", "classTemplate", "yourself"],
  887. referencedClasses: ["HLShowTemplate"]
  888. }),
  889. globals.HLBrowserModel);
  890. smalltalk.addMethod(
  891. smalltalk.method({
  892. selector: "showComment",
  893. protocol: 'accessing',
  894. fn: function () {
  895. var self=this;
  896. return smalltalk.withContext(function($ctx1) {
  897. var $2,$1;
  898. $2=self["@showComment"];
  899. if(($receiver = $2) == nil || $receiver == null){
  900. $1=true;
  901. } else {
  902. $1=$2;
  903. };
  904. return $1;
  905. }, function($ctx1) {$ctx1.fill(self,"showComment",{},globals.HLBrowserModel)});},
  906. args: [],
  907. source: "showComment\x0a\x09^ showComment ifNil: [ true ]",
  908. messageSends: ["ifNil:"],
  909. referencedClasses: []
  910. }),
  911. globals.HLBrowserModel);
  912. smalltalk.addMethod(
  913. smalltalk.method({
  914. selector: "showComment:",
  915. protocol: 'accessing',
  916. fn: function (aBoolean) {
  917. var self=this;
  918. function $HLShowCommentToggled(){return globals.HLShowCommentToggled||(typeof HLShowCommentToggled=="undefined"?nil:HLShowCommentToggled)}
  919. return smalltalk.withContext(function($ctx1) {
  920. self._withChangesDo_((function(){
  921. return smalltalk.withContext(function($ctx2) {
  922. self["@showComment"]=aBoolean;
  923. self["@showComment"];
  924. return _st(self._announcer())._announce_(_st($HLShowCommentToggled())._new());
  925. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  926. return self}, function($ctx1) {$ctx1.fill(self,"showComment:",{aBoolean:aBoolean},globals.HLBrowserModel)});},
  927. args: ["aBoolean"],
  928. source: "showComment: aBoolean\x0a\x09self withChangesDo: [\x0a\x09\x09showComment := aBoolean.\x0a\x09\x09self announcer announce: HLShowCommentToggled new ]",
  929. messageSends: ["withChangesDo:", "announce:", "announcer", "new"],
  930. referencedClasses: ["HLShowCommentToggled"]
  931. }),
  932. globals.HLBrowserModel);
  933. smalltalk.addMethod(
  934. smalltalk.method({
  935. selector: "showInstance",
  936. protocol: 'accessing',
  937. fn: function () {
  938. var self=this;
  939. return smalltalk.withContext(function($ctx1) {
  940. var $2,$1;
  941. $2=self["@showInstance"];
  942. if(($receiver = $2) == nil || $receiver == null){
  943. $1=true;
  944. } else {
  945. $1=$2;
  946. };
  947. return $1;
  948. }, function($ctx1) {$ctx1.fill(self,"showInstance",{},globals.HLBrowserModel)});},
  949. args: [],
  950. source: "showInstance\x0a\x09^ showInstance ifNil: [ true ]",
  951. messageSends: ["ifNil:"],
  952. referencedClasses: []
  953. }),
  954. globals.HLBrowserModel);
  955. smalltalk.addMethod(
  956. smalltalk.method({
  957. selector: "showInstance:",
  958. protocol: 'accessing',
  959. fn: function (aBoolean) {
  960. var self=this;
  961. function $HLShowInstanceToggled(){return globals.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
  962. return smalltalk.withContext(function($ctx1) {
  963. var $1,$3,$2;
  964. self._withChangesDo_((function(){
  965. return smalltalk.withContext(function($ctx2) {
  966. self["@showInstance"]=aBoolean;
  967. self["@showInstance"];
  968. $1=self._selectedClass();
  969. $ctx2.sendIdx["selectedClass"]=1;
  970. if(($receiver = $1) == nil || $receiver == null){
  971. $1;
  972. } else {
  973. if(smalltalk.assert(aBoolean)){
  974. $3=self._selectedClass();
  975. $ctx2.sendIdx["selectedClass"]=2;
  976. $2=_st($3)._theNonMetaClass();
  977. } else {
  978. $2=_st(self._selectedClass())._theMetaClass();
  979. };
  980. self._selectedClass_($2);
  981. };
  982. return _st(self._announcer())._announce_(_st($HLShowInstanceToggled())._new());
  983. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  984. return self}, function($ctx1) {$ctx1.fill(self,"showInstance:",{aBoolean:aBoolean},globals.HLBrowserModel)});},
  985. args: ["aBoolean"],
  986. source: "showInstance: aBoolean\x0a\x0a\x09self withChangesDo: [\x0a\x09\x09showInstance := aBoolean.\x0a\x0a \x09self selectedClass ifNotNil: [\x0a \x09\x09self selectedClass: (aBoolean\x0a \x09\x09\x09ifTrue: [ self selectedClass theNonMetaClass ]\x0a\x09 \x09 \x09ifFalse: [ self selectedClass theMetaClass ]) ].\x0a \x0a\x09\x09self announcer announce: HLShowInstanceToggled new ]",
  987. messageSends: ["withChangesDo:", "ifNotNil:", "selectedClass", "selectedClass:", "ifTrue:ifFalse:", "theNonMetaClass", "theMetaClass", "announce:", "announcer", "new"],
  988. referencedClasses: ["HLShowInstanceToggled"]
  989. }),
  990. globals.HLBrowserModel);
  991. smalltalk.addMethod(
  992. smalltalk.method({
  993. selector: "showMethodTemplate",
  994. protocol: 'actions',
  995. fn: function () {
  996. var self=this;
  997. function $HLShowTemplate(){return globals.HLShowTemplate||(typeof HLShowTemplate=="undefined"?nil:HLShowTemplate)}
  998. return smalltalk.withContext(function($ctx1) {
  999. var $1,$2,$3;
  1000. $1=self._selectedClass();
  1001. if(($receiver = $1) == nil || $receiver == null){
  1002. $1;
  1003. } else {
  1004. var theClass;
  1005. theClass=$receiver;
  1006. $2=_st($HLShowTemplate())._new();
  1007. _st($2)._template_(_st(theClass)._methodTemplate());
  1008. $3=_st($2)._yourself();
  1009. _st(self._announcer())._announce_($3);
  1010. };
  1011. return self}, function($ctx1) {$ctx1.fill(self,"showMethodTemplate",{},globals.HLBrowserModel)});},
  1012. args: [],
  1013. source: "showMethodTemplate\x0a\x09self selectedClass ifNotNil: [ :theClass |\x0a\x09\x09self announcer announce: (HLShowTemplate new\x0a\x09\x09\x09template: theClass methodTemplate;\x0a\x09\x09\x09yourself) ]",
  1014. messageSends: ["ifNotNil:", "selectedClass", "announce:", "announcer", "template:", "new", "methodTemplate", "yourself"],
  1015. referencedClasses: ["HLShowTemplate"]
  1016. }),
  1017. globals.HLBrowserModel);
  1018. smalltalk.addMethod(
  1019. smalltalk.method({
  1020. selector: "on:",
  1021. protocol: 'instance creation',
  1022. fn: function (anEnvironment) {
  1023. var self=this;
  1024. return smalltalk.withContext(function($ctx1) {
  1025. var $2,$3,$1;
  1026. $2=self._new();
  1027. _st($2)._environment_(anEnvironment);
  1028. $3=_st($2)._yourself();
  1029. $1=$3;
  1030. return $1;
  1031. }, function($ctx1) {$ctx1.fill(self,"on:",{anEnvironment:anEnvironment},globals.HLBrowserModel.klass)});},
  1032. args: ["anEnvironment"],
  1033. source: "on: anEnvironment\x0a\x0a\x09^ self new\x0a \x09environment: anEnvironment;\x0a yourself",
  1034. messageSends: ["environment:", "new", "yourself"],
  1035. referencedClasses: []
  1036. }),
  1037. globals.HLBrowserModel.klass);
  1038. smalltalk.addClass('HLClassCache', globals.Object, ['class', 'selectorsCache', 'overrideCache', 'overriddenCache'], 'Helios-Browser');
  1039. smalltalk.addMethod(
  1040. smalltalk.method({
  1041. selector: "invalidateChildrenSelector:",
  1042. protocol: 'actions',
  1043. fn: function (aSelector) {
  1044. var self=this;
  1045. return smalltalk.withContext(function($ctx1) {
  1046. var $1,$2;
  1047. _st(_st(self._theClass())._subclasses())._do_((function(each){
  1048. return smalltalk.withContext(function($ctx2) {
  1049. $1=_st(self._selectorsCache())._cacheFor_(each);
  1050. _st($1)._removeSelector_(aSelector);
  1051. $2=_st($1)._invalidateChildrenSelector_(aSelector);
  1052. return $2;
  1053. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  1054. return self}, function($ctx1) {$ctx1.fill(self,"invalidateChildrenSelector:",{aSelector:aSelector},globals.HLClassCache)});},
  1055. args: ["aSelector"],
  1056. source: "invalidateChildrenSelector: aSelector\x0a\x09self theClass subclasses do: [ :each |\x0a \x09(self selectorsCache cacheFor: each)\x0a \x09removeSelector: aSelector;\x0a \x09invalidateChildrenSelector: aSelector ]",
  1057. messageSends: ["do:", "subclasses", "theClass", "removeSelector:", "cacheFor:", "selectorsCache", "invalidateChildrenSelector:"],
  1058. referencedClasses: []
  1059. }),
  1060. globals.HLClassCache);
  1061. smalltalk.addMethod(
  1062. smalltalk.method({
  1063. selector: "invalidateParentSelector:",
  1064. protocol: 'actions',
  1065. fn: function (aSelector) {
  1066. var self=this;
  1067. return smalltalk.withContext(function($ctx1) {
  1068. var $2,$1,$3,$4;
  1069. $2=self._theClass();
  1070. $ctx1.sendIdx["theClass"]=1;
  1071. $1=_st($2)._superclass();
  1072. $ctx1.sendIdx["superclass"]=1;
  1073. if(($receiver = $1) == nil || $receiver == null){
  1074. $1;
  1075. } else {
  1076. $3=_st(self._selectorsCache())._cacheFor_(_st(self._theClass())._superclass());
  1077. _st($3)._removeSelector_(aSelector);
  1078. $4=_st($3)._invalidateParentSelector_(aSelector);
  1079. $4;
  1080. };
  1081. return self}, function($ctx1) {$ctx1.fill(self,"invalidateParentSelector:",{aSelector:aSelector},globals.HLClassCache)});},
  1082. args: ["aSelector"],
  1083. source: "invalidateParentSelector: aSelector\x0a\x09self theClass superclass ifNotNil: [\x0a \x09(self selectorsCache cacheFor: self theClass superclass)\x0a \x09removeSelector: aSelector;\x0a\x09\x09\x09invalidateParentSelector: aSelector ]",
  1084. messageSends: ["ifNotNil:", "superclass", "theClass", "removeSelector:", "cacheFor:", "selectorsCache", "invalidateParentSelector:"],
  1085. referencedClasses: []
  1086. }),
  1087. globals.HLClassCache);
  1088. smalltalk.addMethod(
  1089. smalltalk.method({
  1090. selector: "invalidateSelector:",
  1091. protocol: 'actions',
  1092. fn: function (aSelector) {
  1093. var self=this;
  1094. return smalltalk.withContext(function($ctx1) {
  1095. var $1;
  1096. self._invalidateParentSelector_(aSelector);
  1097. self._invalidateChildrenSelector_(aSelector);
  1098. $1=self._removeSelector_(aSelector);
  1099. return self}, function($ctx1) {$ctx1.fill(self,"invalidateSelector:",{aSelector:aSelector},globals.HLClassCache)});},
  1100. args: ["aSelector"],
  1101. source: "invalidateSelector: aSelector\x0a\x09self \x0a \x09invalidateParentSelector: aSelector;\x0a invalidateChildrenSelector: aSelector;\x0a removeSelector: aSelector",
  1102. messageSends: ["invalidateParentSelector:", "invalidateChildrenSelector:", "removeSelector:"],
  1103. referencedClasses: []
  1104. }),
  1105. globals.HLClassCache);
  1106. smalltalk.addMethod(
  1107. smalltalk.method({
  1108. selector: "isOverridden:",
  1109. protocol: 'testing',
  1110. fn: function (aMethod) {
  1111. var self=this;
  1112. return smalltalk.withContext(function($ctx1) {
  1113. var $1;
  1114. $1=_st(self._overriddenCache())._at_ifAbsentPut_(_st(aMethod)._selector(),(function(){
  1115. return smalltalk.withContext(function($ctx2) {
  1116. return _st(aMethod)._isOverridden();
  1117. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1118. return $1;
  1119. }, function($ctx1) {$ctx1.fill(self,"isOverridden:",{aMethod:aMethod},globals.HLClassCache)});},
  1120. args: ["aMethod"],
  1121. source: "isOverridden: aMethod\x0a\x09^ self overriddenCache \x0a \x09at: aMethod selector\x0a \x09ifAbsentPut: [ aMethod isOverridden ]",
  1122. messageSends: ["at:ifAbsentPut:", "overriddenCache", "selector", "isOverridden"],
  1123. referencedClasses: []
  1124. }),
  1125. globals.HLClassCache);
  1126. smalltalk.addMethod(
  1127. smalltalk.method({
  1128. selector: "isOverride:",
  1129. protocol: 'testing',
  1130. fn: function (aMethod) {
  1131. var self=this;
  1132. return smalltalk.withContext(function($ctx1) {
  1133. var $1;
  1134. $1=_st(self._overrideCache())._at_ifAbsentPut_(_st(aMethod)._selector(),(function(){
  1135. return smalltalk.withContext(function($ctx2) {
  1136. return _st(aMethod)._isOverride();
  1137. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1138. return $1;
  1139. }, function($ctx1) {$ctx1.fill(self,"isOverride:",{aMethod:aMethod},globals.HLClassCache)});},
  1140. args: ["aMethod"],
  1141. source: "isOverride: aMethod\x0a\x09^ self overrideCache\x0a \x09at: aMethod selector\x0a \x09ifAbsentPut: [ aMethod isOverride ]",
  1142. messageSends: ["at:ifAbsentPut:", "overrideCache", "selector", "isOverride"],
  1143. referencedClasses: []
  1144. }),
  1145. globals.HLClassCache);
  1146. smalltalk.addMethod(
  1147. smalltalk.method({
  1148. selector: "overriddenCache",
  1149. protocol: 'accessing',
  1150. fn: function () {
  1151. var self=this;
  1152. function $HashedCollection(){return globals.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
  1153. return smalltalk.withContext(function($ctx1) {
  1154. var $2,$1;
  1155. $2=self["@overriddenCache"];
  1156. if(($receiver = $2) == nil || $receiver == null){
  1157. self["@overriddenCache"]=_st($HashedCollection())._new();
  1158. $1=self["@overriddenCache"];
  1159. } else {
  1160. $1=$2;
  1161. };
  1162. return $1;
  1163. }, function($ctx1) {$ctx1.fill(self,"overriddenCache",{},globals.HLClassCache)});},
  1164. args: [],
  1165. source: "overriddenCache\x0a\x09^ overriddenCache ifNil: [ overriddenCache := HashedCollection new ]",
  1166. messageSends: ["ifNil:", "new"],
  1167. referencedClasses: ["HashedCollection"]
  1168. }),
  1169. globals.HLClassCache);
  1170. smalltalk.addMethod(
  1171. smalltalk.method({
  1172. selector: "overrideCache",
  1173. protocol: 'accessing',
  1174. fn: function () {
  1175. var self=this;
  1176. function $HashedCollection(){return globals.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
  1177. return smalltalk.withContext(function($ctx1) {
  1178. var $2,$1;
  1179. $2=self["@overrideCache"];
  1180. if(($receiver = $2) == nil || $receiver == null){
  1181. self["@overrideCache"]=_st($HashedCollection())._new();
  1182. $1=self["@overrideCache"];
  1183. } else {
  1184. $1=$2;
  1185. };
  1186. return $1;
  1187. }, function($ctx1) {$ctx1.fill(self,"overrideCache",{},globals.HLClassCache)});},
  1188. args: [],
  1189. source: "overrideCache\x0a\x09^ overrideCache ifNil: [ overrideCache := HashedCollection new ]",
  1190. messageSends: ["ifNil:", "new"],
  1191. referencedClasses: ["HashedCollection"]
  1192. }),
  1193. globals.HLClassCache);
  1194. smalltalk.addMethod(
  1195. smalltalk.method({
  1196. selector: "removeSelector:",
  1197. protocol: 'private',
  1198. fn: function (aSelector) {
  1199. var self=this;
  1200. return smalltalk.withContext(function($ctx1) {
  1201. _st(self._overriddenCache())._removeKey_ifAbsent_(aSelector,(function(){
  1202. }));
  1203. $ctx1.sendIdx["removeKey:ifAbsent:"]=1;
  1204. _st(self._overrideCache())._removeKey_ifAbsent_(aSelector,(function(){
  1205. }));
  1206. return self}, function($ctx1) {$ctx1.fill(self,"removeSelector:",{aSelector:aSelector},globals.HLClassCache)});},
  1207. args: ["aSelector"],
  1208. source: "removeSelector: aSelector\x0a\x09self overriddenCache \x0a \x09removeKey: aSelector\x0a ifAbsent: [ ].\x0a self overrideCache \x0a \x09removeKey: aSelector\x0a ifAbsent: [ ]",
  1209. messageSends: ["removeKey:ifAbsent:", "overriddenCache", "overrideCache"],
  1210. referencedClasses: []
  1211. }),
  1212. globals.HLClassCache);
  1213. smalltalk.addMethod(
  1214. smalltalk.method({
  1215. selector: "selectorsCache",
  1216. protocol: 'accessing',
  1217. fn: function () {
  1218. var self=this;
  1219. var $1;
  1220. $1=self["@selectorsCache"];
  1221. return $1;
  1222. },
  1223. args: [],
  1224. source: "selectorsCache\x0a\x09^ selectorsCache",
  1225. messageSends: [],
  1226. referencedClasses: []
  1227. }),
  1228. globals.HLClassCache);
  1229. smalltalk.addMethod(
  1230. smalltalk.method({
  1231. selector: "selectorsCache:",
  1232. protocol: 'accessing',
  1233. fn: function (aCache) {
  1234. var self=this;
  1235. self["@selectorsCache"]=aCache;
  1236. return self;},
  1237. args: ["aCache"],
  1238. source: "selectorsCache: aCache\x0a\x09selectorsCache := aCache",
  1239. messageSends: [],
  1240. referencedClasses: []
  1241. }),
  1242. globals.HLClassCache);
  1243. smalltalk.addMethod(
  1244. smalltalk.method({
  1245. selector: "theClass",
  1246. protocol: 'accessing',
  1247. fn: function () {
  1248. var self=this;
  1249. var $1;
  1250. $1=self["@class"];
  1251. return $1;
  1252. },
  1253. args: [],
  1254. source: "theClass\x0a\x09^ class",
  1255. messageSends: [],
  1256. referencedClasses: []
  1257. }),
  1258. globals.HLClassCache);
  1259. smalltalk.addMethod(
  1260. smalltalk.method({
  1261. selector: "theClass:",
  1262. protocol: 'accessing',
  1263. fn: function (aClass) {
  1264. var self=this;
  1265. self["@class"]=aClass;
  1266. return self;},
  1267. args: ["aClass"],
  1268. source: "theClass: aClass\x0a\x09class := aClass",
  1269. messageSends: [],
  1270. referencedClasses: []
  1271. }),
  1272. globals.HLClassCache);
  1273. smalltalk.addMethod(
  1274. smalltalk.method({
  1275. selector: "on:selectorsCache:",
  1276. protocol: 'instance creation',
  1277. fn: function (aClass, aSelectorsCache) {
  1278. var self=this;
  1279. return smalltalk.withContext(function($ctx1) {
  1280. var $2,$3,$1;
  1281. $2=self._new();
  1282. _st($2)._theClass_(aClass);
  1283. _st($2)._selectorsCache_(aSelectorsCache);
  1284. $3=_st($2)._yourself();
  1285. $1=$3;
  1286. return $1;
  1287. }, function($ctx1) {$ctx1.fill(self,"on:selectorsCache:",{aClass:aClass,aSelectorsCache:aSelectorsCache},globals.HLClassCache.klass)});},
  1288. args: ["aClass", "aSelectorsCache"],
  1289. source: "on: aClass selectorsCache: aSelectorsCache\x0a\x09^ self new\x0a \x09theClass: aClass;\x0a selectorsCache: aSelectorsCache;\x0a yourself",
  1290. messageSends: ["theClass:", "new", "selectorsCache:", "yourself"],
  1291. referencedClasses: []
  1292. }),
  1293. globals.HLClassCache.klass);
  1294. smalltalk.addClass('HLClassesListWidget', globals.HLToolListWidget, [], 'Helios-Browser');
  1295. globals.HLClassesListWidget.comment="I render a list of classes in the selected package.";
  1296. smalltalk.addMethod(
  1297. smalltalk.method({
  1298. selector: "cssClassForItem:",
  1299. protocol: 'accessing',
  1300. fn: function (aClass) {
  1301. var self=this;
  1302. return smalltalk.withContext(function($ctx1) {
  1303. var $1;
  1304. $1=_st(_st(aClass)._theNonMetaClass())._heliosClass();
  1305. return $1;
  1306. }, function($ctx1) {$ctx1.fill(self,"cssClassForItem:",{aClass:aClass},globals.HLClassesListWidget)});},
  1307. args: ["aClass"],
  1308. source: "cssClassForItem: aClass\x0a\x09^ aClass theNonMetaClass heliosClass",
  1309. messageSends: ["heliosClass", "theNonMetaClass"],
  1310. referencedClasses: []
  1311. }),
  1312. globals.HLClassesListWidget);
  1313. smalltalk.addMethod(
  1314. smalltalk.method({
  1315. selector: "focus",
  1316. protocol: 'actions',
  1317. fn: function () {
  1318. var self=this;
  1319. return smalltalk.withContext(function($ctx1) {
  1320. var $1;
  1321. globals.HLClassesListWidget.superclass.fn.prototype._focus.apply(_st(self), []);
  1322. $1=self._selectedItem();
  1323. if(($receiver = $1) == nil || $receiver == null){
  1324. _st(self._model())._showClassTemplate();
  1325. } else {
  1326. $1;
  1327. };
  1328. return self}, function($ctx1) {$ctx1.fill(self,"focus",{},globals.HLClassesListWidget)});},
  1329. args: [],
  1330. source: "focus\x0a\x09super focus.\x0a\x09\x0a\x09self selectedItem \x0a\x09\x09ifNil: [ self model showClassTemplate ]",
  1331. messageSends: ["focus", "ifNil:", "selectedItem", "showClassTemplate", "model"],
  1332. referencedClasses: []
  1333. }),
  1334. globals.HLClassesListWidget);
  1335. smalltalk.addMethod(
  1336. smalltalk.method({
  1337. selector: "focusMethodsListWidget",
  1338. protocol: 'actions',
  1339. fn: function () {
  1340. var self=this;
  1341. function $HLMethodsListFocus(){return globals.HLMethodsListFocus||(typeof HLMethodsListFocus=="undefined"?nil:HLMethodsListFocus)}
  1342. return smalltalk.withContext(function($ctx1) {
  1343. _st(_st(self._model())._announcer())._announce_(_st($HLMethodsListFocus())._new());
  1344. return self}, function($ctx1) {$ctx1.fill(self,"focusMethodsListWidget",{},globals.HLClassesListWidget)});},
  1345. args: [],
  1346. source: "focusMethodsListWidget\x0a\x09self model announcer announce: HLMethodsListFocus new",
  1347. messageSends: ["announce:", "announcer", "model", "new"],
  1348. referencedClasses: ["HLMethodsListFocus"]
  1349. }),
  1350. globals.HLClassesListWidget);
  1351. smalltalk.addMethod(
  1352. smalltalk.method({
  1353. selector: "focusProtocolsListWidget",
  1354. protocol: 'actions',
  1355. fn: function () {
  1356. var self=this;
  1357. function $HLProtocolsListFocus(){return globals.HLProtocolsListFocus||(typeof HLProtocolsListFocus=="undefined"?nil:HLProtocolsListFocus)}
  1358. return smalltalk.withContext(function($ctx1) {
  1359. _st(_st(self._model())._announcer())._announce_(_st($HLProtocolsListFocus())._new());
  1360. return self}, function($ctx1) {$ctx1.fill(self,"focusProtocolsListWidget",{},globals.HLClassesListWidget)});},
  1361. args: [],
  1362. source: "focusProtocolsListWidget\x0a\x09self model announcer announce: HLProtocolsListFocus new",
  1363. messageSends: ["announce:", "announcer", "model", "new"],
  1364. referencedClasses: ["HLProtocolsListFocus"]
  1365. }),
  1366. globals.HLClassesListWidget);
  1367. smalltalk.addMethod(
  1368. smalltalk.method({
  1369. selector: "getChildrenOf:",
  1370. protocol: 'accessing',
  1371. fn: function (aClass) {
  1372. var self=this;
  1373. return smalltalk.withContext(function($ctx1) {
  1374. var $1;
  1375. $1=_st(self._items())._select_((function(each){
  1376. return smalltalk.withContext(function($ctx2) {
  1377. return _st(_st(each)._superclass()).__eq(aClass);
  1378. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  1379. return $1;
  1380. }, function($ctx1) {$ctx1.fill(self,"getChildrenOf:",{aClass:aClass},globals.HLClassesListWidget)});},
  1381. args: ["aClass"],
  1382. source: "getChildrenOf: aClass\x0a\x09^ self items select: [ :each | each superclass = aClass ]",
  1383. messageSends: ["select:", "items", "=", "superclass"],
  1384. referencedClasses: []
  1385. }),
  1386. globals.HLClassesListWidget);
  1387. smalltalk.addMethod(
  1388. smalltalk.method({
  1389. selector: "getRootClassesOf:",
  1390. protocol: 'accessing',
  1391. fn: function (aCollection) {
  1392. var self=this;
  1393. return smalltalk.withContext(function($ctx1) {
  1394. var $1;
  1395. $1=_st(aCollection)._select_((function(each){
  1396. return smalltalk.withContext(function($ctx2) {
  1397. return _st(_st(aCollection)._includes_(_st(each)._superclass()))._not();
  1398. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  1399. return $1;
  1400. }, function($ctx1) {$ctx1.fill(self,"getRootClassesOf:",{aCollection:aCollection},globals.HLClassesListWidget)});},
  1401. args: ["aCollection"],
  1402. source: "getRootClassesOf: aCollection\x0a\x09^ aCollection select: [ :each |\x0a \x09\x09(aCollection includes: each superclass) not ]",
  1403. messageSends: ["select:", "not", "includes:", "superclass"],
  1404. referencedClasses: []
  1405. }),
  1406. globals.HLClassesListWidget);
  1407. smalltalk.addMethod(
  1408. smalltalk.method({
  1409. selector: "label",
  1410. protocol: 'accessing',
  1411. fn: function () {
  1412. var self=this;
  1413. return "Classes";
  1414. },
  1415. args: [],
  1416. source: "label\x0a\x09^ 'Classes'",
  1417. messageSends: [],
  1418. referencedClasses: []
  1419. }),
  1420. globals.HLClassesListWidget);
  1421. smalltalk.addMethod(
  1422. smalltalk.method({
  1423. selector: "observeModel",
  1424. protocol: 'actions',
  1425. fn: function () {
  1426. var self=this;
  1427. function $HLPackageSelected(){return globals.HLPackageSelected||(typeof HLPackageSelected=="undefined"?nil:HLPackageSelected)}
  1428. function $HLShowInstanceToggled(){return globals.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
  1429. function $HLShowCommentToggled(){return globals.HLShowCommentToggled||(typeof HLShowCommentToggled=="undefined"?nil:HLShowCommentToggled)}
  1430. function $HLClassSelected(){return globals.HLClassSelected||(typeof HLClassSelected=="undefined"?nil:HLClassSelected)}
  1431. function $HLClassesFocusRequested(){return globals.HLClassesFocusRequested||(typeof HLClassesFocusRequested=="undefined"?nil:HLClassesFocusRequested)}
  1432. return smalltalk.withContext(function($ctx1) {
  1433. var $1,$2;
  1434. $1=_st(self._model())._announcer();
  1435. _st($1)._on_send_to_($HLPackageSelected(),"onPackageSelected:",self);
  1436. $ctx1.sendIdx["on:send:to:"]=1;
  1437. _st($1)._on_send_to_($HLShowInstanceToggled(),"onShowInstanceToggled",self);
  1438. $ctx1.sendIdx["on:send:to:"]=2;
  1439. _st($1)._on_send_to_($HLShowCommentToggled(),"onShowCommentToggled",self);
  1440. $ctx1.sendIdx["on:send:to:"]=3;
  1441. _st($1)._on_send_to_($HLClassSelected(),"onClassSelected:",self);
  1442. $ctx1.sendIdx["on:send:to:"]=4;
  1443. $2=_st($1)._on_send_to_($HLClassesFocusRequested(),"onClassesFocusRequested",self);
  1444. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},globals.HLClassesListWidget)});},
  1445. args: [],
  1446. source: "observeModel\x0a\x09self model announcer \x0a \x09on: HLPackageSelected\x0a\x09\x09send: #onPackageSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a \x09on: HLShowInstanceToggled \x0a\x09\x09send: #onShowInstanceToggled\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLShowCommentToggled\x0a\x09\x09send: #onShowCommentToggled\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLClassSelected\x0a\x09\x09send: #onClassSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLClassesFocusRequested\x0a\x09\x09send: #onClassesFocusRequested\x0a\x09\x09to: self",
  1447. messageSends: ["on:send:to:", "announcer", "model"],
  1448. referencedClasses: ["HLPackageSelected", "HLShowInstanceToggled", "HLShowCommentToggled", "HLClassSelected", "HLClassesFocusRequested"]
  1449. }),
  1450. globals.HLClassesListWidget);
  1451. smalltalk.addMethod(
  1452. smalltalk.method({
  1453. selector: "observeSystem",
  1454. protocol: 'actions',
  1455. fn: function () {
  1456. var self=this;
  1457. function $ClassAdded(){return globals.ClassAdded||(typeof ClassAdded=="undefined"?nil:ClassAdded)}
  1458. function $ClassRemoved(){return globals.ClassRemoved||(typeof ClassRemoved=="undefined"?nil:ClassRemoved)}
  1459. function $ClassMoved(){return globals.ClassMoved||(typeof ClassMoved=="undefined"?nil:ClassMoved)}
  1460. function $ClassRenamed(){return globals.ClassRenamed||(typeof ClassRenamed=="undefined"?nil:ClassRenamed)}
  1461. function $ClassMigrated(){return globals.ClassMigrated||(typeof ClassMigrated=="undefined"?nil:ClassMigrated)}
  1462. function $ClassCommentChanged(){return globals.ClassCommentChanged||(typeof ClassCommentChanged=="undefined"?nil:ClassCommentChanged)}
  1463. return smalltalk.withContext(function($ctx1) {
  1464. var $1,$2;
  1465. $1=_st(self._model())._systemAnnouncer();
  1466. _st($1)._on_send_to_($ClassAdded(),"onClassAdded:",self);
  1467. $ctx1.sendIdx["on:send:to:"]=1;
  1468. _st($1)._on_send_to_($ClassRemoved(),"onClassRemoved:",self);
  1469. $ctx1.sendIdx["on:send:to:"]=2;
  1470. _st($1)._on_send_to_($ClassMoved(),"onClassMoved:",self);
  1471. $ctx1.sendIdx["on:send:to:"]=3;
  1472. _st($1)._on_send_to_($ClassRenamed(),"onClassRenamed:",self);
  1473. $ctx1.sendIdx["on:send:to:"]=4;
  1474. _st($1)._on_send_to_($ClassMigrated(),"onClassMigrated:",self);
  1475. $ctx1.sendIdx["on:send:to:"]=5;
  1476. $2=_st($1)._on_send_to_($ClassCommentChanged(),"onClassCommentChanged:",self);
  1477. return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},globals.HLClassesListWidget)});},
  1478. args: [],
  1479. source: "observeSystem\x0a\x09self model systemAnnouncer\x0a \x09on: ClassAdded\x0a\x09\x09send: #onClassAdded:\x0a\x09\x09to: self;\x0a\x09\x09\x0a on: ClassRemoved\x0a send: #onClassRemoved:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: ClassMoved\x0a\x09\x09send: #onClassMoved:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: ClassRenamed\x0a\x09\x09send: #onClassRenamed:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: ClassMigrated\x0a\x09\x09send: #onClassMigrated:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: ClassCommentChanged\x0a send: #onClassCommentChanged:\x0a\x09\x09to: self",
  1480. messageSends: ["on:send:to:", "systemAnnouncer", "model"],
  1481. referencedClasses: ["ClassAdded", "ClassRemoved", "ClassMoved", "ClassRenamed", "ClassMigrated", "ClassCommentChanged"]
  1482. }),
  1483. globals.HLClassesListWidget);
  1484. smalltalk.addMethod(
  1485. smalltalk.method({
  1486. selector: "onClassAdded:",
  1487. protocol: 'reactions',
  1488. fn: function (anAnnouncement){
  1489. var self=this;
  1490. var class_;
  1491. return smalltalk.withContext(function($ctx1) {
  1492. var $1,$2;
  1493. class_=_st(anAnnouncement)._theClass();
  1494. $1=_st(_st(_st(class_)._package()).__eq(_st(self._model())._selectedPackage()))._or_((function(){
  1495. return smalltalk.withContext(function($ctx2) {
  1496. return _st(self._items())._includes_(class_);
  1497. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1498. if(! smalltalk.assert($1)){
  1499. return self;
  1500. };
  1501. self._setItemsForSelectedPackage();
  1502. self._refresh();
  1503. $2=self._focus();
  1504. return self}, function($ctx1) {$ctx1.fill(self,"onClassAdded:",{anAnnouncement:anAnnouncement,class_:class_},globals.HLClassesListWidget)})},
  1505. args: ["anAnnouncement"],
  1506. source: "onClassAdded: anAnnouncement\x0a\x09| class |\x0a\x09\x0a\x09class := anAnnouncement theClass.\x0a\x09\x0a\x09(class package = self model selectedPackage or: [\x0a\x09\x09self items includes: class ]) ifFalse: [ ^ self ].\x0a \x0a self \x0a\x09\x09setItemsForSelectedPackage;\x0a\x09\x09refresh;\x0a\x09\x09focus",
  1507. messageSends: ["theClass", "ifFalse:", "or:", "=", "package", "selectedPackage", "model", "includes:", "items", "setItemsForSelectedPackage", "refresh", "focus"],
  1508. referencedClasses: []
  1509. }),
  1510. globals.HLClassesListWidget);
  1511. smalltalk.addMethod(
  1512. smalltalk.method({
  1513. selector: "onClassCommentChanged:",
  1514. protocol: 'reactions',
  1515. fn: function (anAnnouncement){
  1516. var self=this;
  1517. var class_;
  1518. return smalltalk.withContext(function($ctx1) {
  1519. var $1,$2;
  1520. class_=_st(anAnnouncement)._theClass();
  1521. $1=_st(_st(class_)._package()).__eq(_st(self._model())._selectedPackage());
  1522. if(! smalltalk.assert($1)){
  1523. return self;
  1524. };
  1525. self._refresh();
  1526. $2=self._focus();
  1527. return self}, function($ctx1) {$ctx1.fill(self,"onClassCommentChanged:",{anAnnouncement:anAnnouncement,class_:class_},globals.HLClassesListWidget)})},
  1528. args: ["anAnnouncement"],
  1529. source: "onClassCommentChanged: anAnnouncement\x0a\x09| class |\x0a\x09class := anAnnouncement theClass.\x0a\x0a\x09class package = self model selectedPackage ifFalse: [ ^ self ].\x0a \x0a self \x0a\x09\x09refresh;\x0a\x09\x09focus",
  1530. messageSends: ["theClass", "ifFalse:", "=", "package", "selectedPackage", "model", "refresh", "focus"],
  1531. referencedClasses: []
  1532. }),
  1533. globals.HLClassesListWidget);
  1534. smalltalk.addMethod(
  1535. smalltalk.method({
  1536. selector: "onClassMigrated:",
  1537. protocol: 'reactions',
  1538. fn: function (anAnnouncement){
  1539. var self=this;
  1540. var class_,oldClass;
  1541. return smalltalk.withContext(function($ctx1) {
  1542. var $1,$4,$3,$2,$5;
  1543. class_=_st(anAnnouncement)._theClass();
  1544. oldClass=_st(anAnnouncement)._oldClass();
  1545. $1=_st(self._items())._includes_(oldClass);
  1546. if(! smalltalk.assert($1)){
  1547. return self;
  1548. };
  1549. $4=self._model();
  1550. $ctx1.sendIdx["model"]=1;
  1551. $3=_st($4)._selectedClass();
  1552. $2=_st($3).__eq(oldClass);
  1553. if(smalltalk.assert($2)){
  1554. _st(self._model())._selectedClass_(class_);
  1555. };
  1556. self._setItemsForSelectedPackage();
  1557. self._refresh();
  1558. $5=self._focus();
  1559. return self}, function($ctx1) {$ctx1.fill(self,"onClassMigrated:",{anAnnouncement:anAnnouncement,class_:class_,oldClass:oldClass},globals.HLClassesListWidget)})},
  1560. args: ["anAnnouncement"],
  1561. source: "onClassMigrated: anAnnouncement\x0a\x09| class oldClass |\x0a\x09\x0a\x09class := anAnnouncement theClass.\x0a\x09oldClass := anAnnouncement oldClass.\x0a\x0a\x09(self items includes: oldClass) ifFalse: [ ^ self ].\x0a\x0a\x09self model selectedClass = oldClass ifTrue: [\x0a\x09\x09self model selectedClass: class ].\x0a \x0a self setItemsForSelectedPackage.\x0a self \x0a\x09\x09refresh;\x0a\x09\x09focus",
  1562. messageSends: ["theClass", "oldClass", "ifFalse:", "includes:", "items", "ifTrue:", "=", "selectedClass", "model", "selectedClass:", "setItemsForSelectedPackage", "refresh", "focus"],
  1563. referencedClasses: []
  1564. }),
  1565. globals.HLClassesListWidget);
  1566. smalltalk.addMethod(
  1567. smalltalk.method({
  1568. selector: "onClassMoved:",
  1569. protocol: 'reactions',
  1570. fn: function (anAnnouncement){
  1571. var self=this;
  1572. var class_,oldPackage;
  1573. return smalltalk.withContext(function($ctx1) {
  1574. var $3,$5,$4,$2,$6,$8,$7,$1,$9,$10,$11;
  1575. class_=_st(anAnnouncement)._theClass();
  1576. oldPackage=_st(anAnnouncement)._oldPackage();
  1577. $3=oldPackage;
  1578. $5=self._model();
  1579. $ctx1.sendIdx["model"]=1;
  1580. $4=_st($5)._selectedPackage();
  1581. $ctx1.sendIdx["selectedPackage"]=1;
  1582. $2=_st($3).__eq($4);
  1583. $ctx1.sendIdx["="]=1;
  1584. $1=_st($2)._or_((function(){
  1585. return smalltalk.withContext(function($ctx2) {
  1586. $6=_st(class_)._package();
  1587. $8=self._model();
  1588. $ctx2.sendIdx["model"]=2;
  1589. $7=_st($8)._selectedPackage();
  1590. $ctx2.sendIdx["selectedPackage"]=2;
  1591. return _st($6).__eq($7);
  1592. $ctx2.sendIdx["="]=2;
  1593. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1594. if(! smalltalk.assert($1)){
  1595. return self;
  1596. };
  1597. $9=_st(oldPackage).__eq(_st(self._model())._selectedPackage());
  1598. if(smalltalk.assert($9)){
  1599. self._selectedItem_(nil);
  1600. $10=self._selectItem_(nil);
  1601. $10;
  1602. };
  1603. self._setItemsForSelectedPackage();
  1604. self._refresh();
  1605. $11=self._focus();
  1606. return self}, function($ctx1) {$ctx1.fill(self,"onClassMoved:",{anAnnouncement:anAnnouncement,class_:class_,oldPackage:oldPackage},globals.HLClassesListWidget)})},
  1607. args: ["anAnnouncement"],
  1608. source: "onClassMoved: anAnnouncement\x0a\x09| class oldPackage |\x0a\x09\x0a\x09class := anAnnouncement theClass.\x0a\x09oldPackage := anAnnouncement oldPackage.\x0a\x09\x0a\x09(oldPackage = self model selectedPackage or: [\x0a\x09\x09class package = self model selectedPackage ])\x0a\x09\x09\x09ifFalse: [ ^ self ].\x0a\x09\x0a\x09oldPackage = self model selectedPackage ifTrue: [ \x0a\x09\x09self \x0a\x09\x09\x09selectedItem: nil;\x0a\x09\x09\x09selectItem: nil ].\x0a \x0a self setItemsForSelectedPackage.\x0a self \x09\x0a\x09\x09refresh;\x0a\x09\x09focus",
  1609. messageSends: ["theClass", "oldPackage", "ifFalse:", "or:", "=", "selectedPackage", "model", "package", "ifTrue:", "selectedItem:", "selectItem:", "setItemsForSelectedPackage", "refresh", "focus"],
  1610. referencedClasses: []
  1611. }),
  1612. globals.HLClassesListWidget);
  1613. smalltalk.addMethod(
  1614. smalltalk.method({
  1615. selector: "onClassRemoved:",
  1616. protocol: 'reactions',
  1617. fn: function (anAnnouncement){
  1618. var self=this;
  1619. var class_;
  1620. return smalltalk.withContext(function($ctx1) {
  1621. var $1,$2,$3;
  1622. class_=_st(anAnnouncement)._theClass();
  1623. $1=_st(_st(class_)._package()).__eq(_st(self._model())._selectedPackage());
  1624. if(! smalltalk.assert($1)){
  1625. return self;
  1626. };
  1627. self._selectItem_(nil);
  1628. $2=self._selectedItem_(nil);
  1629. self._setItemsForSelectedPackage();
  1630. self._refresh();
  1631. $3=self._focus();
  1632. return self}, function($ctx1) {$ctx1.fill(self,"onClassRemoved:",{anAnnouncement:anAnnouncement,class_:class_},globals.HLClassesListWidget)})},
  1633. args: ["anAnnouncement"],
  1634. source: "onClassRemoved: anAnnouncement\x0a\x09| class |\x0a\x09class := anAnnouncement theClass.\x0a\x0a\x09class package = self model selectedPackage ifFalse: [ ^ self ].\x0a \x0a\x09self \x0a\x09\x09selectItem: nil;\x0a\x09\x09selectedItem: nil.\x0a self setItemsForSelectedPackage.\x0a self \x0a\x09\x09refresh;\x0a\x09\x09focus",
  1635. messageSends: ["theClass", "ifFalse:", "=", "package", "selectedPackage", "model", "selectItem:", "selectedItem:", "setItemsForSelectedPackage", "refresh", "focus"],
  1636. referencedClasses: []
  1637. }),
  1638. globals.HLClassesListWidget);
  1639. smalltalk.addMethod(
  1640. smalltalk.method({
  1641. selector: "onClassRenamed:",
  1642. protocol: 'reactions',
  1643. fn: function (anAnnouncement){
  1644. var self=this;
  1645. return smalltalk.withContext(function($ctx1) {
  1646. var $1,$2;
  1647. $1=_st(_st(_st(anAnnouncement)._theClass())._package()).__eq(_st(self._model())._selectedPackage());
  1648. if(! smalltalk.assert($1)){
  1649. return self;
  1650. };
  1651. self._setItemsForSelectedPackage();
  1652. self._refresh();
  1653. $2=self._focus();
  1654. return self}, function($ctx1) {$ctx1.fill(self,"onClassRenamed:",{anAnnouncement:anAnnouncement},globals.HLClassesListWidget)})},
  1655. args: ["anAnnouncement"],
  1656. source: "onClassRenamed: anAnnouncement\x0a\x09anAnnouncement theClass package = self model selectedPackage ifFalse: [ ^ self ].\x0a \x0a self setItemsForSelectedPackage.\x0a self \x0a\x09\x09refresh;\x0a\x09\x09focus",
  1657. messageSends: ["ifFalse:", "=", "package", "theClass", "selectedPackage", "model", "setItemsForSelectedPackage", "refresh", "focus"],
  1658. referencedClasses: []
  1659. }),
  1660. globals.HLClassesListWidget);
  1661. smalltalk.addMethod(
  1662. smalltalk.method({
  1663. selector: "onClassSelected:",
  1664. protocol: 'reactions',
  1665. fn: function (anAnnouncement) {
  1666. var self=this;
  1667. var selectedClass;
  1668. return smalltalk.withContext(function($ctx1) {
  1669. var $1,$2,$3;
  1670. $1=_st(anAnnouncement)._item();
  1671. $ctx1.sendIdx["item"]=1;
  1672. if(($receiver = $1) == nil || $receiver == null){
  1673. return self;
  1674. } else {
  1675. $1;
  1676. };
  1677. selectedClass=_st(_st(anAnnouncement)._item())._theNonMetaClass();
  1678. self._selectedItem_(selectedClass);
  1679. $2=self._hasFocus();
  1680. if(! smalltalk.assert($2)){
  1681. self._activateItem_(selectedClass);
  1682. $3=self._focus();
  1683. $3;
  1684. };
  1685. return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{anAnnouncement:anAnnouncement,selectedClass:selectedClass},globals.HLClassesListWidget)});},
  1686. args: ["anAnnouncement"],
  1687. source: "onClassSelected: anAnnouncement\x0a\x09| selectedClass |\x0a\x09\x0a\x09anAnnouncement item ifNil: [ ^ self ].\x0a\x09\x0a\x09selectedClass := anAnnouncement item theNonMetaClass.\x0a\x09self selectedItem: selectedClass.\x0a\x0a\x09self hasFocus ifFalse: [\x0a\x09\x09self \x0a\x09\x09\x09activateItem: selectedClass;\x0a\x09\x09\x09focus ]",
  1688. messageSends: ["ifNil:", "item", "theNonMetaClass", "selectedItem:", "ifFalse:", "hasFocus", "activateItem:", "focus"],
  1689. referencedClasses: []
  1690. }),
  1691. globals.HLClassesListWidget);
  1692. smalltalk.addMethod(
  1693. smalltalk.method({
  1694. selector: "onClassesFocusRequested",
  1695. protocol: 'reactions',
  1696. fn: function () {
  1697. var self=this;
  1698. return smalltalk.withContext(function($ctx1) {
  1699. self._focus();
  1700. return self}, function($ctx1) {$ctx1.fill(self,"onClassesFocusRequested",{},globals.HLClassesListWidget)});},
  1701. args: [],
  1702. source: "onClassesFocusRequested\x0a\x09self focus",
  1703. messageSends: ["focus"],
  1704. referencedClasses: []
  1705. }),
  1706. globals.HLClassesListWidget);
  1707. smalltalk.addMethod(
  1708. smalltalk.method({
  1709. selector: "onPackageSelected:",
  1710. protocol: 'reactions',
  1711. fn: function (anAnnouncement) {
  1712. var self=this;
  1713. return smalltalk.withContext(function($ctx1) {
  1714. self._selectedItem_(nil);
  1715. self._setItemsForSelectedPackage();
  1716. self._refresh();
  1717. return self}, function($ctx1) {$ctx1.fill(self,"onPackageSelected:",{anAnnouncement:anAnnouncement},globals.HLClassesListWidget)});},
  1718. args: ["anAnnouncement"],
  1719. source: "onPackageSelected: anAnnouncement\x0a self selectedItem: nil.\x0a \x0a self setItemsForSelectedPackage.\x0a self refresh",
  1720. messageSends: ["selectedItem:", "setItemsForSelectedPackage", "refresh"],
  1721. referencedClasses: []
  1722. }),
  1723. globals.HLClassesListWidget);
  1724. smalltalk.addMethod(
  1725. smalltalk.method({
  1726. selector: "onShowCommentToggled",
  1727. protocol: 'reactions',
  1728. fn: function () {
  1729. var self=this;
  1730. return smalltalk.withContext(function($ctx1) {
  1731. self._refresh();
  1732. return self}, function($ctx1) {$ctx1.fill(self,"onShowCommentToggled",{},globals.HLClassesListWidget)});},
  1733. args: [],
  1734. source: "onShowCommentToggled\x0a\x09self refresh",
  1735. messageSends: ["refresh"],
  1736. referencedClasses: []
  1737. }),
  1738. globals.HLClassesListWidget);
  1739. smalltalk.addMethod(
  1740. smalltalk.method({
  1741. selector: "onShowInstanceToggled",
  1742. protocol: 'reactions',
  1743. fn: function () {
  1744. var self=this;
  1745. return smalltalk.withContext(function($ctx1) {
  1746. self._refresh();
  1747. return self}, function($ctx1) {$ctx1.fill(self,"onShowInstanceToggled",{},globals.HLClassesListWidget)});},
  1748. args: [],
  1749. source: "onShowInstanceToggled\x0a\x09self refresh",
  1750. messageSends: ["refresh"],
  1751. referencedClasses: []
  1752. }),
  1753. globals.HLClassesListWidget);
  1754. smalltalk.addMethod(
  1755. smalltalk.method({
  1756. selector: "renderButtonsOn:",
  1757. protocol: 'rendering',
  1758. fn: function (html) {
  1759. var self=this;
  1760. var checkbox;
  1761. function $String(){return globals.String||(typeof String=="undefined"?nil:String)}
  1762. return smalltalk.withContext(function($ctx1) {
  1763. var $1,$3,$4,$6,$5,$7,$8,$9,$10,$2,$11,$13,$14,$12,$15;
  1764. $1=_st(html)._div();
  1765. _st($1)._class_("btn-group");
  1766. $ctx1.sendIdx["class:"]=1;
  1767. $2=_st($1)._with_((function(){
  1768. return smalltalk.withContext(function($ctx2) {
  1769. $3=_st(html)._button();
  1770. $ctx2.sendIdx["button"]=1;
  1771. $4=$3;
  1772. $5=_st($String())._streamContents_((function(str){
  1773. return smalltalk.withContext(function($ctx3) {
  1774. _st(str)._nextPutAll_("btn");
  1775. $ctx3.sendIdx["nextPutAll:"]=1;
  1776. $6=self._showInstance();
  1777. if(smalltalk.assert($6)){
  1778. return _st(str)._nextPutAll_(" active");
  1779. $ctx3.sendIdx["nextPutAll:"]=2;
  1780. };
  1781. }, function($ctx3) {$ctx3.fillBlock({str:str},$ctx2,2)})}));
  1782. $ctx2.sendIdx["streamContents:"]=1;
  1783. _st($4)._class_($5);
  1784. $ctx2.sendIdx["class:"]=2;
  1785. _st($3)._with_("Instance");
  1786. $ctx2.sendIdx["with:"]=2;
  1787. $7=_st($3)._onClick_((function(){
  1788. return smalltalk.withContext(function($ctx3) {
  1789. return self._showInstance_(true);
  1790. $ctx3.sendIdx["showInstance:"]=1;
  1791. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,4)})}));
  1792. $ctx2.sendIdx["onClick:"]=1;
  1793. $7;
  1794. $8=_st(html)._button();
  1795. _st($8)._class_(_st($String())._streamContents_((function(str){
  1796. return smalltalk.withContext(function($ctx3) {
  1797. _st(str)._nextPutAll_("btn");
  1798. $ctx3.sendIdx["nextPutAll:"]=3;
  1799. $9=self._showClass();
  1800. if(smalltalk.assert($9)){
  1801. return _st(str)._nextPutAll_(" active");
  1802. };
  1803. }, function($ctx3) {$ctx3.fillBlock({str:str},$ctx2,5)})})));
  1804. $ctx2.sendIdx["class:"]=3;
  1805. _st($8)._with_("Class");
  1806. $ctx2.sendIdx["with:"]=3;
  1807. $10=_st($8)._onClick_((function(){
  1808. return smalltalk.withContext(function($ctx3) {
  1809. return self._showInstance_(false);
  1810. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,7)})}));
  1811. $ctx2.sendIdx["onClick:"]=2;
  1812. return $10;
  1813. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1814. $ctx1.sendIdx["with:"]=1;
  1815. $11=_st(html)._label();
  1816. _st($11)._class_("checkbox");
  1817. $12=_st($11)._with_((function(){
  1818. return smalltalk.withContext(function($ctx2) {
  1819. $13=_st(html)._input();
  1820. _st($13)._type_("checkbox");
  1821. $14=_st($13)._onClick_((function(){
  1822. return smalltalk.withContext(function($ctx3) {
  1823. return self._toggleShowComment();
  1824. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,9)})}));
  1825. checkbox=$14;
  1826. checkbox;
  1827. return _st(html)._with_("Doc");
  1828. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,8)})}));
  1829. $ctx1.sendIdx["with:"]=4;
  1830. $15=self._showComment();
  1831. if(smalltalk.assert($15)){
  1832. _st(checkbox)._at_put_("checked","checked");
  1833. };
  1834. return self}, function($ctx1) {$ctx1.fill(self,"renderButtonsOn:",{html:html,checkbox:checkbox},globals.HLClassesListWidget)});},
  1835. args: ["html"],
  1836. source: "renderButtonsOn: html\x0a\x09| checkbox |\x0a\x09\x0a\x09html div \x0a class: 'btn-group';\x0a\x09\x09with: [ \x0a \x09html button \x0a class: (String streamContents: [ :str |\x0a \x09str nextPutAll: 'btn'.\x0a self showInstance ifTrue: [ \x0a \x09str nextPutAll: ' active' ] ]);\x0a \x09\x09\x09\x09with: 'Instance';\x0a onClick: [ self showInstance: true ].\x0a \x09\x09\x09html button\x0a \x09\x09\x09\x09class: (String streamContents: [ :str |\x0a \x09str nextPutAll: 'btn'.\x0a self showClass ifTrue: [ \x0a \x09str nextPutAll: ' active' ] ]);\x0a \x09\x09\x09\x09with: 'Class';\x0a\x09\x09\x09\x09onClick: [ self showInstance: false ] ].\x0a\x09\x09html label \x0a\x09\x09\x09class: 'checkbox';\x0a\x09\x09\x09with: [\x0a\x09\x09\x09\x09checkbox := html input\x0a\x09\x09\x09\x09\x09type: 'checkbox';\x0a\x09\x09\x09\x09\x09onClick: [ self toggleShowComment ].\x0a\x09\x09\x09\x09html with: 'Doc' ].\x0a\x09\x09\x09\x09\x0a\x09\x09self showComment ifTrue: [\x0a\x09\x09\x09checkbox at: 'checked' put: 'checked' ]",
  1837. messageSends: ["class:", "div", "with:", "button", "streamContents:", "nextPutAll:", "ifTrue:", "showInstance", "onClick:", "showInstance:", "showClass", "label", "type:", "input", "toggleShowComment", "showComment", "at:put:"],
  1838. referencedClasses: ["String"]
  1839. }),
  1840. globals.HLClassesListWidget);
  1841. smalltalk.addMethod(
  1842. smalltalk.method({
  1843. selector: "renderItem:level:on:",
  1844. protocol: 'rendering',
  1845. fn: function (aClass, anInteger, html) {
  1846. var self=this;
  1847. var li;
  1848. return smalltalk.withContext(function($ctx1) {
  1849. var $1,$2,$4,$5,$3;
  1850. li=_st(html)._li();
  1851. $1=_st(li)._asJQuery();
  1852. $ctx1.sendIdx["asJQuery"]=1;
  1853. _st($1)._data_put_("item",aClass);
  1854. $2=li;
  1855. _st($2)._class_(self._listCssClassForItem_(aClass));
  1856. $ctx1.sendIdx["class:"]=1;
  1857. $3=_st($2)._with_((function(){
  1858. return smalltalk.withContext(function($ctx2) {
  1859. $4=_st(html)._a();
  1860. _st($4)._with_((function(){
  1861. return smalltalk.withContext(function($ctx3) {
  1862. _st(_st(html)._tag_("i"))._class_(self._cssClassForItem_(aClass));
  1863. return self._renderItemLabel_level_on_(aClass,anInteger,html);
  1864. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1865. $5=_st($4)._onClick_((function(){
  1866. return smalltalk.withContext(function($ctx3) {
  1867. return self._reactivateListItem_(_st(li)._asJQuery());
  1868. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  1869. return $5;
  1870. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  1871. $ctx1.sendIdx["with:"]=1;
  1872. _st(self._getChildrenOf_(aClass))._do_((function(each){
  1873. return smalltalk.withContext(function($ctx2) {
  1874. return self._renderItem_level_on_(each,_st(anInteger).__plus((1)),html);
  1875. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,4)})}));
  1876. return self}, function($ctx1) {$ctx1.fill(self,"renderItem:level:on:",{aClass:aClass,anInteger:anInteger,html:html,li:li},globals.HLClassesListWidget)});},
  1877. args: ["aClass", "anInteger", "html"],
  1878. source: "renderItem: aClass level: anInteger on: html\x0a\x09| li |\x0a \x0a\x09li := html li.\x0a\x09li asJQuery data: 'item' put: aClass.\x0a li\x0a\x09\x09class: (self listCssClassForItem: aClass);\x0a\x09\x09with: [ \x0a \x09html a\x0a \x09with: [ \x0a \x09\x09(html tag: 'i') class: (self cssClassForItem: aClass).\x0a \x09\x09\x09\x09\x09self renderItemLabel: aClass level: anInteger on: html ];\x0a\x09\x09\x09\x09onClick: [\x0a \x09self reactivateListItem: li asJQuery ] ].\x0a \x0a (self getChildrenOf: aClass) do: [ :each |\x0a \x09self renderItem: each level: anInteger + 1 on: html ]",
  1879. messageSends: ["li", "data:put:", "asJQuery", "class:", "listCssClassForItem:", "with:", "a", "tag:", "cssClassForItem:", "renderItemLabel:level:on:", "onClick:", "reactivateListItem:", "do:", "getChildrenOf:", "renderItem:level:on:", "+"],
  1880. referencedClasses: []
  1881. }),
  1882. globals.HLClassesListWidget);
  1883. smalltalk.addMethod(
  1884. smalltalk.method({
  1885. selector: "renderItem:on:",
  1886. protocol: 'rendering',
  1887. fn: function (aClass, html) {
  1888. var self=this;
  1889. return smalltalk.withContext(function($ctx1) {
  1890. globals.HLClassesListWidget.superclass.fn.prototype._renderItem_on_.apply(_st(self), [aClass,html]);
  1891. _st(self._getChildrenOf_(aClass))._do_((function(each){
  1892. return smalltalk.withContext(function($ctx2) {
  1893. return self._renderItem_level_on_(each,(1),html);
  1894. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  1895. return self}, function($ctx1) {$ctx1.fill(self,"renderItem:on:",{aClass:aClass,html:html},globals.HLClassesListWidget)});},
  1896. args: ["aClass", "html"],
  1897. source: "renderItem: aClass on: html\x0a\x09super renderItem: aClass on: html.\x0a (self getChildrenOf: aClass) do: [ :each |\x0a \x09self renderItem: each level: 1 on: html ]",
  1898. messageSends: ["renderItem:on:", "do:", "getChildrenOf:", "renderItem:level:on:"],
  1899. referencedClasses: []
  1900. }),
  1901. globals.HLClassesListWidget);
  1902. smalltalk.addMethod(
  1903. smalltalk.method({
  1904. selector: "renderItemLabel:level:on:",
  1905. protocol: 'rendering',
  1906. fn: function (aClass, anInteger, html) {
  1907. var self=this;
  1908. function $String(){return globals.String||(typeof String=="undefined"?nil:String)}
  1909. return smalltalk.withContext(function($ctx1) {
  1910. _st(_st(_st(html)._span())._asJQuery())._html_(_st($String())._streamContents_((function(str){
  1911. return smalltalk.withContext(function($ctx2) {
  1912. _st(anInteger)._timesRepeat_((function(){
  1913. return smalltalk.withContext(function($ctx3) {
  1914. return _st(str)._nextPutAll_("    ");
  1915. $ctx3.sendIdx["nextPutAll:"]=1;
  1916. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)})}));
  1917. return _st(str)._nextPutAll_(_st(aClass)._name());
  1918. }, function($ctx2) {$ctx2.fillBlock({str:str},$ctx1,1)})})));
  1919. return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:level:on:",{aClass:aClass,anInteger:anInteger,html:html},globals.HLClassesListWidget)});},
  1920. args: ["aClass", "anInteger", "html"],
  1921. source: "renderItemLabel: aClass level: anInteger on: html\x0a\x09html span asJQuery html: (String streamContents: [ :str |\x0a\x09\x09anInteger timesRepeat: [\x0a\x09\x09\x09str nextPutAll: '    ' ].\x0a\x09\x09\x09str nextPutAll: aClass name ])",
  1922. messageSends: ["html:", "asJQuery", "span", "streamContents:", "timesRepeat:", "nextPutAll:", "name"],
  1923. referencedClasses: ["String"]
  1924. }),
  1925. globals.HLClassesListWidget);
  1926. smalltalk.addMethod(
  1927. smalltalk.method({
  1928. selector: "renderItemLabel:on:",
  1929. protocol: 'rendering',
  1930. fn: function (aClass, html) {
  1931. var self=this;
  1932. return smalltalk.withContext(function($ctx1) {
  1933. self._renderItemLabel_level_on_(aClass,(0),html);
  1934. return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{aClass:aClass,html:html},globals.HLClassesListWidget)});},
  1935. args: ["aClass", "html"],
  1936. source: "renderItemLabel: aClass on: html\x0a\x09self renderItemLabel: aClass level: 0 on: html",
  1937. messageSends: ["renderItemLabel:level:on:"],
  1938. referencedClasses: []
  1939. }),
  1940. globals.HLClassesListWidget);
  1941. smalltalk.addMethod(
  1942. smalltalk.method({
  1943. selector: "renderListOn:",
  1944. protocol: 'rendering',
  1945. fn: function (html) {
  1946. var self=this;
  1947. return smalltalk.withContext(function($ctx1) {
  1948. _st(self._getRootClassesOf_(self._items()))._do_((function(each){
  1949. return smalltalk.withContext(function($ctx2) {
  1950. return self._renderItem_on_(each,html);
  1951. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
  1952. return self}, function($ctx1) {$ctx1.fill(self,"renderListOn:",{html:html},globals.HLClassesListWidget)});},
  1953. args: ["html"],
  1954. source: "renderListOn: html\x0a\x09(self getRootClassesOf: self items)\x0a \x09do: [ :each | self renderItem: each on: html ]",
  1955. messageSends: ["do:", "getRootClassesOf:", "items", "renderItem:on:"],
  1956. referencedClasses: []
  1957. }),
  1958. globals.HLClassesListWidget);
  1959. smalltalk.addMethod(
  1960. smalltalk.method({
  1961. selector: "reselectItem:",
  1962. protocol: 'actions',
  1963. fn: function (anItem) {
  1964. var self=this;
  1965. return smalltalk.withContext(function($ctx1) {
  1966. _st(self._model())._forceSelectedClass_(anItem);
  1967. return self}, function($ctx1) {$ctx1.fill(self,"reselectItem:",{anItem:anItem},globals.HLClassesListWidget)});},
  1968. args: ["anItem"],
  1969. source: "reselectItem: anItem\x0a\x09self model forceSelectedClass: anItem",
  1970. messageSends: ["forceSelectedClass:", "model"],
  1971. referencedClasses: []
  1972. }),
  1973. globals.HLClassesListWidget);
  1974. smalltalk.addMethod(
  1975. smalltalk.method({
  1976. selector: "selectItem:",
  1977. protocol: 'actions',
  1978. fn: function (aClass) {
  1979. var self=this;
  1980. return smalltalk.withContext(function($ctx1) {
  1981. _st(self._model())._selectedClass_(aClass);
  1982. return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aClass:aClass},globals.HLClassesListWidget)});},
  1983. args: ["aClass"],
  1984. source: "selectItem: aClass\x0a self model selectedClass: aClass",
  1985. messageSends: ["selectedClass:", "model"],
  1986. referencedClasses: []
  1987. }),
  1988. globals.HLClassesListWidget);
  1989. smalltalk.addMethod(
  1990. smalltalk.method({
  1991. selector: "setItemsForPackage:",
  1992. protocol: 'private',
  1993. fn: function (aPackage) {
  1994. var self=this;
  1995. return smalltalk.withContext(function($ctx1) {
  1996. var $2,$1;
  1997. if(($receiver = aPackage) == nil || $receiver == null){
  1998. $1=[];
  1999. } else {
  2000. $1=_st(_st(_st(aPackage)._classes())._collect_((function(each){
  2001. return smalltalk.withContext(function($ctx2) {
  2002. return _st(each)._theNonMetaClass();
  2003. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,3)})})))._sort_((function(a,b){
  2004. return smalltalk.withContext(function($ctx2) {
  2005. $2=_st(a)._name();
  2006. $ctx2.sendIdx["name"]=1;
  2007. return _st($2).__lt(_st(b)._name());
  2008. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1,4)})}));
  2009. };
  2010. self._items_($1);
  2011. return self}, function($ctx1) {$ctx1.fill(self,"setItemsForPackage:",{aPackage:aPackage},globals.HLClassesListWidget)});},
  2012. args: ["aPackage"],
  2013. source: "setItemsForPackage: aPackage\x0a\x09self items: (aPackage \x0a \x09ifNil: [ #() ]\x0a \x09\x09ifNotNil: [ (aPackage classes \x0a \x09collect: [ :each | each theNonMetaClass ]) \x0a \x09sort: [ :a :b | a name < b name ] ]).",
  2014. messageSends: ["items:", "ifNil:ifNotNil:", "sort:", "collect:", "classes", "theNonMetaClass", "<", "name"],
  2015. referencedClasses: []
  2016. }),
  2017. globals.HLClassesListWidget);
  2018. smalltalk.addMethod(
  2019. smalltalk.method({
  2020. selector: "setItemsForSelectedPackage",
  2021. protocol: 'private',
  2022. fn: function () {
  2023. var self=this;
  2024. return smalltalk.withContext(function($ctx1) {
  2025. self._setItemsForPackage_(_st(self._model())._selectedPackage());
  2026. return self}, function($ctx1) {$ctx1.fill(self,"setItemsForSelectedPackage",{},globals.HLClassesListWidget)});},
  2027. args: [],
  2028. source: "setItemsForSelectedPackage\x0a\x09self setItemsForPackage: self model selectedPackage",
  2029. messageSends: ["setItemsForPackage:", "selectedPackage", "model"],
  2030. referencedClasses: []
  2031. }),
  2032. globals.HLClassesListWidget);
  2033. smalltalk.addMethod(
  2034. smalltalk.method({
  2035. selector: "showClass",
  2036. protocol: 'testing',
  2037. fn: function () {
  2038. var self=this;
  2039. return smalltalk.withContext(function($ctx1) {
  2040. var $1;
  2041. $1=_st(_st(self._model())._showInstance())._not();
  2042. return $1;
  2043. }, function($ctx1) {$ctx1.fill(self,"showClass",{},globals.HLClassesListWidget)});},
  2044. args: [],
  2045. source: "showClass\x0a\x09^ self model showInstance not",
  2046. messageSends: ["not", "showInstance", "model"],
  2047. referencedClasses: []
  2048. }),
  2049. globals.HLClassesListWidget);
  2050. smalltalk.addMethod(
  2051. smalltalk.method({
  2052. selector: "showComment",
  2053. protocol: 'testing',
  2054. fn: function () {
  2055. var self=this;
  2056. return smalltalk.withContext(function($ctx1) {
  2057. var $1;
  2058. $1=_st(self._model())._showComment();
  2059. return $1;
  2060. }, function($ctx1) {$ctx1.fill(self,"showComment",{},globals.HLClassesListWidget)});},
  2061. args: [],
  2062. source: "showComment\x0a\x09^ self model showComment",
  2063. messageSends: ["showComment", "model"],
  2064. referencedClasses: []
  2065. }),
  2066. globals.HLClassesListWidget);
  2067. smalltalk.addMethod(
  2068. smalltalk.method({
  2069. selector: "showComment:",
  2070. protocol: 'actions',
  2071. fn: function (aBoolean) {
  2072. var self=this;
  2073. return smalltalk.withContext(function($ctx1) {
  2074. _st(self._model())._showComment_(aBoolean);
  2075. return self}, function($ctx1) {$ctx1.fill(self,"showComment:",{aBoolean:aBoolean},globals.HLClassesListWidget)});},
  2076. args: ["aBoolean"],
  2077. source: "showComment: aBoolean\x0a\x09self model showComment: aBoolean",
  2078. messageSends: ["showComment:", "model"],
  2079. referencedClasses: []
  2080. }),
  2081. globals.HLClassesListWidget);
  2082. smalltalk.addMethod(
  2083. smalltalk.method({
  2084. selector: "showInstance",
  2085. protocol: 'testing',
  2086. fn: function () {
  2087. var self=this;
  2088. return smalltalk.withContext(function($ctx1) {
  2089. var $1;
  2090. $1=_st(self._model())._showInstance();
  2091. return $1;
  2092. }, function($ctx1) {$ctx1.fill(self,"showInstance",{},globals.HLClassesListWidget)});},
  2093. args: [],
  2094. source: "showInstance\x0a\x09^ self model showInstance",
  2095. messageSends: ["showInstance", "model"],
  2096. referencedClasses: []
  2097. }),
  2098. globals.HLClassesListWidget);
  2099. smalltalk.addMethod(
  2100. smalltalk.method({
  2101. selector: "showInstance:",
  2102. protocol: 'actions',
  2103. fn: function (aBoolean) {
  2104. var self=this;
  2105. return smalltalk.withContext(function($ctx1) {
  2106. _st(self._model())._showInstance_(aBoolean);
  2107. return self}, function($ctx1) {$ctx1.fill(self,"showInstance:",{aBoolean:aBoolean},globals.HLClassesListWidget)});},
  2108. args: ["aBoolean"],
  2109. source: "showInstance: aBoolean\x0a\x09self model showInstance: aBoolean",
  2110. messageSends: ["showInstance:", "model"],
  2111. referencedClasses: []
  2112. }),
  2113. globals.HLClassesListWidget);
  2114. smalltalk.addMethod(
  2115. smalltalk.method({
  2116. selector: "toggleShowComment",
  2117. protocol: 'actions',
  2118. fn: function () {
  2119. var self=this;
  2120. return smalltalk.withContext(function($ctx1) {
  2121. _st(self._model())._showComment_(_st(self._showComment())._not());
  2122. return self}, function($ctx1) {$ctx1.fill(self,"toggleShowComment",{},globals.HLClassesListWidget)});},
  2123. args: [],
  2124. source: "toggleShowComment\x0a\x09self model showComment: self showComment not",
  2125. messageSends: ["showComment:", "model", "not", "showComment"],
  2126. referencedClasses: []
  2127. }),
  2128. globals.HLClassesListWidget);
  2129. smalltalk.addClass('HLDocumentationWidget', globals.HLFocusableWidget, ['model'], 'Helios-Browser');
  2130. globals.HLDocumentationWidget.comment="I render the documentation for the selected class";
  2131. smalltalk.addMethod(
  2132. smalltalk.method({
  2133. selector: "defaultDocumentation",
  2134. protocol: 'defaults',
  2135. fn: function () {
  2136. var self=this;
  2137. return "No documentation is available for this class.";
  2138. },
  2139. args: [],
  2140. source: "defaultDocumentation\x0a\x09^ 'No documentation is available for this class.'",
  2141. messageSends: [],
  2142. referencedClasses: []
  2143. }),
  2144. globals.HLDocumentationWidget);
  2145. smalltalk.addMethod(
  2146. smalltalk.method({
  2147. selector: "defaultHead",
  2148. protocol: 'defaults',
  2149. fn: function () {
  2150. var self=this;
  2151. return "No class selected";
  2152. },
  2153. args: [],
  2154. source: "defaultHead\x0a\x09^ 'No class selected'",
  2155. messageSends: [],
  2156. referencedClasses: []
  2157. }),
  2158. globals.HLDocumentationWidget);
  2159. smalltalk.addMethod(
  2160. smalltalk.method({
  2161. selector: "documentation",
  2162. protocol: 'accessing',
  2163. fn: function () {
  2164. var self=this;
  2165. return smalltalk.withContext(function($ctx1) {
  2166. var $2,$1;
  2167. $2=self._selectedItem();
  2168. if(($receiver = $2) == nil || $receiver == null){
  2169. $1="";
  2170. } else {
  2171. var item;
  2172. item=$receiver;
  2173. $1=_st(_st(item)._comment())._ifEmpty_((function(){
  2174. return smalltalk.withContext(function($ctx2) {
  2175. return self._defaultDocumentation();
  2176. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)})}));
  2177. };
  2178. return $1;
  2179. }, function($ctx1) {$ctx1.fill(self,"documentation",{},globals.HLDocumentationWidget)});},
  2180. args: [],
  2181. source: "documentation\x0a\x09^ self selectedItem \x0a\x09\x09ifNil: [ '' ]\x0a\x09\x09ifNotNil: [ :item | item comment ifEmpty: [ self defaultDocumentation ] ]",
  2182. messageSends: ["ifNil:ifNotNil:", "selectedItem", "ifEmpty:", "comment", "defaultDocumentation"],
  2183. referencedClasses: []
  2184. }),
  2185. globals.HLDocumentationWidget);
  2186. smalltalk.addMethod(
  2187. smalltalk.method({
  2188. selector: "editDocumentation",
  2189. protocol: 'actions',
  2190. fn: function () {
  2191. var self=this;
  2192. return smalltalk.withContext(function($ctx1) {
  2193. _st(self._model())._editComment();
  2194. return self}, function($ctx1) {$ctx1.fill(self,"editDocumentation",{},globals.HLDocumentationWidget)});},
  2195. args: [],
  2196. source: "editDocumentation\x0a\x09self model editComment",
  2197. messageSends: ["editComment", "model"],
  2198. referencedClasses: []
  2199. }),
  2200. globals.HLDocumentationWidget);
  2201. smalltalk.addMethod(
  2202. smalltalk.method({
  2203. selector: "head",
  2204. protocol: 'accessing',
  2205. fn: function () {
  2206. var self=this;
  2207. return smalltalk.withContext(function($ctx1) {
  2208. var $2,$1;
  2209. $2=self._selectedItem();
  2210. if(($receiver = $2) == nil || $receiver == null){
  2211. $1=self._defaultHead();
  2212. } else {
  2213. var item;
  2214. item=$receiver;
  2215. $1=_st(item)._name();
  2216. };
  2217. return $1;
  2218. }, function($ctx1) {$ctx1.fill(self,"head",{},globals.HLDocumentationWidget)});},
  2219. args: [],
  2220. source: "head\x0a\x09^ self selectedItem \x0a\x09\x09ifNil: [ self defaultHead ]\x0a\x09\x09ifNotNil: [ :item | item name ]",
  2221. messageSends: ["ifNil:ifNotNil:", "selectedItem", "defaultHead", "name"],
  2222. referencedClasses: []
  2223. }),
  2224. globals.HLDocumentationWidget);
  2225. smalltalk.addMethod(
  2226. smalltalk.method({
  2227. selector: "model",
  2228. protocol: 'accessing',
  2229. fn: function () {
  2230. var self=this;
  2231. var $1;
  2232. $1=self["@model"];
  2233. return $1;
  2234. },
  2235. args: [],
  2236. source: "model\x0a\x09^ model",
  2237. messageSends: [],
  2238. referencedClasses: []
  2239. }),
  2240. globals.HLDocumentationWidget);
  2241. smalltalk.addMethod(
  2242. smalltalk.method({
  2243. selector: "model:",
  2244. protocol: 'accessing',
  2245. fn: function (aModel) {
  2246. var self=this;
  2247. return smalltalk.withContext(function($ctx1) {
  2248. var $1;
  2249. self["@model"]=aModel;
  2250. self._observeSystem();
  2251. $1=self._observeModel();
  2252. return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},globals.HLDocumentationWidget)});},
  2253. args: ["aModel"],
  2254. source: "model: aModel\x0a\x09model := aModel.\x0a\x09self \x0a\x09\x09observeSystem;\x0a\x09\x09observeModel",
  2255. messageSends: ["observeSystem", "observeModel"],
  2256. referencedClasses: []
  2257. }),
  2258. globals.HLDocumentationWidget);
  2259. smalltalk.addMethod(
  2260. smalltalk.method({
  2261. selector: "observeModel",
  2262. protocol: 'actions',
  2263. fn: function () {
  2264. var self=this;
  2265. function $HLClassSelected(){return globals.HLClassSelected||(typeof HLClassSelected=="undefined"?nil:HLClassSelected)}
  2266. function $HLEditComment(){return globals.HLEditComment||(typeof HLEditComment=="undefined"?nil:HLEditComment)}
  2267. function $HLDocumentationFocusRequested(){return globals.HLDocumentationFocusRequested||(typeof HLDocumentationFocusRequested=="undefined"?nil:HLDocumentationFocusRequested)}
  2268. return smalltalk.withContext(function($ctx1) {
  2269. var $1,$2;
  2270. $1=_st(self._model())._announcer();
  2271. _st($1)._on_send_to_($HLClassSelected(),"onClassSelected:",self);
  2272. $ctx1.sendIdx["on:send:to:"]=1;
  2273. _st($1)._on_send_to_($HLEditComment(),"onEditDocumentation",self);
  2274. $ctx1.sendIdx["on:send:to:"]=2;
  2275. $2=_st($1)._on_send_to_($HLDocumentationFocusRequested(),"onDocumentationFocusRequested",self);
  2276. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},globals.HLDocumentationWidget)});},
  2277. args: [],
  2278. source: "observeModel\x0a\x09self model announcer \x0a\x09\x09on: HLClassSelected\x0a\x09\x09send: #onClassSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLEditComment\x0a\x09\x09send: #onEditDocumentation\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLDocumentationFocusRequested\x0a\x09\x09send: #onDocumentationFocusRequested\x0a\x09\x09to: self",
  2279. messageSends: ["on:send:to:", "announcer", "model"],
  2280. referencedClasses: ["HLClassSelected", "HLEditComment", "HLDocumentationFocusRequested"]
  2281. }),
  2282. globals.HLDocumentationWidget);
  2283. smalltalk.addMethod(
  2284. smalltalk.method({
  2285. selector: "observeSystem",
  2286. protocol: 'actions',
  2287. fn: function () {
  2288. var self=this;
  2289. function $ClassCommentChanged(){return globals.ClassCommentChanged||(typeof ClassCommentChanged=="undefined"?nil:ClassCommentChanged)}
  2290. return smalltalk.withContext(function($ctx1) {
  2291. _st(_st(self._model())._systemAnnouncer())._on_send_to_($ClassCommentChanged(),"onClassCommentChanged:",self);
  2292. return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},globals.HLDocumentationWidget)});},
  2293. args: [],
  2294. source: "observeSystem\x0a\x09self model systemAnnouncer \x0a\x09\x09on: ClassCommentChanged\x0a\x09\x09send: #onClassCommentChanged:\x0a\x09\x09to: self",
  2295. messageSends: ["on:send:to:", "systemAnnouncer", "model"],
  2296. referencedClasses: ["ClassCommentChanged"]
  2297. }),
  2298. globals.HLDocumentationWidget);
  2299. smalltalk.addMethod(
  2300. smalltalk.method({
  2301. selector: "onClassCommentChanged:",
  2302. protocol: 'reactions',
  2303. fn: function (anAnnouncement) {
  2304. var self=this;
  2305. return smalltalk.withContext(function($ctx1) {
  2306. var $2,$1,$3;
  2307. $2=self._model();
  2308. $ctx1.sendIdx["model"]=1;
  2309. $1=_st($2)._selectedClass();
  2310. $ctx1.sendIdx["selectedClass"]=1;
  2311. if(($receiver = $1) == nil || $receiver == null){
  2312. return self;
  2313. } else {
  2314. $1;
  2315. };
  2316. $3=_st(_st(anAnnouncement)._theClass()).__eq(_st(_st(self._model())._selectedClass())._theNonMetaClass());
  2317. if(smalltalk.assert($3)){
  2318. self._refresh();
  2319. };
  2320. return self}, function($ctx1) {$ctx1.fill(self,"onClassCommentChanged:",{anAnnouncement:anAnnouncement},globals.HLDocumentationWidget)});},
  2321. args: ["anAnnouncement"],
  2322. source: "onClassCommentChanged: anAnnouncement\x0a\x09self model selectedClass ifNil: [ ^ self ].\x0a\x09\x0a\x09anAnnouncement theClass = self model selectedClass theNonMetaClass\x0a\x09\x09ifTrue: [ self refresh ]",
  2323. messageSends: ["ifNil:", "selectedClass", "model", "ifTrue:", "=", "theClass", "theNonMetaClass", "refresh"],
  2324. referencedClasses: []
  2325. }),
  2326. globals.HLDocumentationWidget);
  2327. smalltalk.addMethod(
  2328. smalltalk.method({
  2329. selector: "onClassSelected:",
  2330. protocol: 'reactions',
  2331. fn: function (anAnnouncement) {
  2332. var self=this;
  2333. return smalltalk.withContext(function($ctx1) {
  2334. self._refresh();
  2335. return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{anAnnouncement:anAnnouncement},globals.HLDocumentationWidget)});},
  2336. args: ["anAnnouncement"],
  2337. source: "onClassSelected: anAnnouncement\x0a\x09self refresh",
  2338. messageSends: ["refresh"],
  2339. referencedClasses: []
  2340. }),
  2341. globals.HLDocumentationWidget);
  2342. smalltalk.addMethod(
  2343. smalltalk.method({
  2344. selector: "onDocumentationFocusRequested",
  2345. protocol: 'reactions',
  2346. fn: function () {
  2347. var self=this;
  2348. return smalltalk.withContext(function($ctx1) {
  2349. self._focus();
  2350. return self}, function($ctx1) {$ctx1.fill(self,"onDocumentationFocusRequested",{},globals.HLDocumentationWidget)});},
  2351. args: [],
  2352. source: "onDocumentationFocusRequested\x0a\x09self focus",
  2353. messageSends: ["focus"],
  2354. referencedClasses: []
  2355. }),
  2356. globals.HLDocumentationWidget);
  2357. smalltalk.addMethod(
  2358. smalltalk.method({
  2359. selector: "onEditDocumentation",
  2360. protocol: 'reactions',
  2361. fn: function () {
  2362. var self=this;
  2363. return smalltalk.withContext(function($ctx1) {
  2364. var $5,$4,$3,$2,$1;
  2365. $5=self._model();
  2366. $ctx1.sendIdx["model"]=1;
  2367. $4=_st($5)._selectedClass();
  2368. $ctx1.sendIdx["selectedClass"]=1;
  2369. $3=_st($4)._theNonMetaClass();
  2370. $ctx1.sendIdx["theNonMetaClass"]=1;
  2371. $2=_st($3)._name();
  2372. $1=_st($2).__comma(" comment");
  2373. self._request_value_do_($1,_st(_st(_st(self._model())._selectedClass())._theNonMetaClass())._comment(),(function(comment){
  2374. return smalltalk.withContext(function($ctx2) {
  2375. return self._setClassComment_(comment);
  2376. }, function($ctx2) {$ctx2.fillBlock({comment:comment},$ctx1,1)})}));
  2377. return self}, function($ctx1) {$ctx1.fill(self,"onEditDocumentation",{},globals.HLDocumentationWidget)});},
  2378. args: [],
  2379. source: "onEditDocumentation\x0a\x09self \x0a\x09\x09request: self model selectedClass theNonMetaClass name, ' comment'\x0a\x09\x09value: self model selectedClass theNonMetaClass comment\x0a\x09\x09do: [ :comment | self setClassComment: comment ]",
  2380. messageSends: ["request:value:do:", ",", "name", "theNonMetaClass", "selectedClass", "model", "comment", "setClassComment:"],
  2381. referencedClasses: []
  2382. }),
  2383. globals.HLDocumentationWidget);
  2384. smalltalk.addMethod(
  2385. smalltalk.method({
  2386. selector: "renderContentOn:",
  2387. protocol: 'rendering',
  2388. fn: function (html) {
  2389. var self=this;
  2390. return smalltalk.withContext(function($ctx1) {
  2391. var $1,$3,$2;
  2392. $1=_st(html)._div();
  2393. _st($1)._class_("doc");
  2394. $2=_st($1)._with_((function(){
  2395. return smalltalk.withContext(function($ctx2) {
  2396. self._renderHeadOn_(html);
  2397. $3=self._renderDocOn_(html);
  2398. return $3;
  2399. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  2400. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLDocumentationWidget)});},
  2401. args: ["html"],
  2402. source: "renderContentOn: html\x0a\x09html div \x0a\x09\x09class: 'doc';\x0a\x09\x09with: [\x0a\x09\x09\x09self \x0a\x09\x09\x09\x09renderHeadOn: html;\x0a\x09\x09\x09\x09renderDocOn: html ]",
  2403. messageSends: ["class:", "div", "with:", "renderHeadOn:", "renderDocOn:"],
  2404. referencedClasses: []
  2405. }),
  2406. globals.HLDocumentationWidget);
  2407. smalltalk.addMethod(
  2408. smalltalk.method({
  2409. selector: "renderDocOn:",
  2410. protocol: 'rendering',
  2411. fn: function (html) {
  2412. var self=this;
  2413. function $Showdown(){return globals.Showdown||(typeof Showdown=="undefined"?nil:Showdown)}
  2414. return smalltalk.withContext(function($ctx1) {
  2415. var $1,$2,$4,$5,$3,$6,$7;
  2416. $1=self._selectedItem();
  2417. if(($receiver = $1) == nil || $receiver == null){
  2418. $1;
  2419. } else {
  2420. self._renderInheritanceOn_(html);
  2421. $2=_st(html)._h1();
  2422. _st($2)._with_("Overview");
  2423. $ctx1.sendIdx["with:"]=1;
  2424. $3=_st($2)._with_((function(){
  2425. return smalltalk.withContext(function($ctx2) {
  2426. $4=_st(html)._button();
  2427. _st($4)._class_("button default");
  2428. $ctx2.sendIdx["class:"]=1;
  2429. _st($4)._with_("Edit");
  2430. $5=_st($4)._onClick_((function(){
  2431. return smalltalk.withContext(function($ctx3) {
  2432. return self._editDocumentation();
  2433. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)})}));
  2434. return $5;
  2435. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  2436. $ctx1.sendIdx["with:"]=2;
  2437. $3;
  2438. $6=_st(html)._div();
  2439. _st($6)._class_("markdown");
  2440. $7=_st($6)._asJQuery();
  2441. _st($7)._html_(_st(_st(_st($Showdown())._at_("converter"))._new())._makeHtml_(self._documentation()));
  2442. };
  2443. return self}, function($ctx1) {$ctx1.fill(self,"renderDocOn:",{html:html},globals.HLDocumentationWidget)});},
  2444. args: ["html"],
  2445. source: "renderDocOn: html\x0a\x09self selectedItem ifNotNil: [\x0a\x09\x09self renderInheritanceOn: html.\x0a\x09\x09html h1 \x0a\x09\x09\x09with: 'Overview';\x0a\x09\x09\x09with: [ \x0a\x09\x09\x09\x09html button\x0a\x09\x09\x09\x09\x09class: 'button default';\x0a\x09\x09\x09\x09\x09with: 'Edit';\x0a\x09\x09\x09\x09\x09onClick: [ self editDocumentation ] ].\x0a\x09\x09(html div \x0a\x09\x09\x09class: 'markdown';\x0a\x09\x09\x09asJQuery) html: ((Showdown at: 'converter') new makeHtml: self documentation) ]",
  2446. messageSends: ["ifNotNil:", "selectedItem", "renderInheritanceOn:", "with:", "h1", "class:", "button", "onClick:", "editDocumentation", "html:", "div", "asJQuery", "makeHtml:", "new", "at:", "documentation"],
  2447. referencedClasses: ["Showdown"]
  2448. }),
  2449. globals.HLDocumentationWidget);
  2450. smalltalk.addMethod(
  2451. smalltalk.method({
  2452. selector: "renderHeadOn:",
  2453. protocol: 'rendering',
  2454. fn: function (html) {
  2455. var self=this;
  2456. return smalltalk.withContext(function($ctx1) {
  2457. var $1,$2;
  2458. $1=_st(html)._div();
  2459. _st($1)._class_("head");
  2460. $2=_st($1)._with_(self._head());
  2461. return self}, function($ctx1) {$ctx1.fill(self,"renderHeadOn:",{html:html},globals.HLDocumentationWidget)});},
  2462. args: ["html"],
  2463. source: "renderHeadOn: html\x0a\x09html div \x0a\x09\x09class: 'head';\x0a\x09\x09with: self head",
  2464. messageSends: ["class:", "div", "with:", "head"],
  2465. referencedClasses: []
  2466. }),
  2467. globals.HLDocumentationWidget);
  2468. smalltalk.addMethod(
  2469. smalltalk.method({
  2470. selector: "renderInheritanceOn:",
  2471. protocol: 'rendering',
  2472. fn: function (html) {
  2473. var self=this;
  2474. return smalltalk.withContext(function($ctx1) {
  2475. var $1,$4,$3,$5,$6,$9,$8,$7,$10,$2;
  2476. $1=_st(html)._div();
  2477. _st($1)._class_("inheritance");
  2478. $2=_st($1)._with_((function(){
  2479. return smalltalk.withContext(function($ctx2) {
  2480. _st(html)._with_("Subclass of ");
  2481. $ctx2.sendIdx["with:"]=2;
  2482. $4=self._selectedItem();
  2483. $ctx2.sendIdx["selectedItem"]=1;
  2484. $3=_st($4)._superclass();
  2485. $ctx2.sendIdx["superclass"]=1;
  2486. if(($receiver = $3) == nil || $receiver == null){
  2487. return _st(_st(html)._em())._with_("nil");
  2488. $ctx2.sendIdx["with:"]=3;
  2489. } else {
  2490. $5=_st(html)._a();
  2491. $6=$5;
  2492. $9=self._selectedItem();
  2493. $ctx2.sendIdx["selectedItem"]=2;
  2494. $8=_st($9)._superclass();
  2495. $ctx2.sendIdx["superclass"]=2;
  2496. $7=_st($8)._name();
  2497. _st($6)._with_($7);
  2498. $10=_st($5)._onClick_((function(){
  2499. return smalltalk.withContext(function($ctx3) {
  2500. return self._selectClass_(_st(self._selectedItem())._superclass());
  2501. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,4)})}));
  2502. return $10;
  2503. };
  2504. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  2505. $ctx1.sendIdx["with:"]=1;
  2506. return self}, function($ctx1) {$ctx1.fill(self,"renderInheritanceOn:",{html:html},globals.HLDocumentationWidget)});},
  2507. args: ["html"],
  2508. source: "renderInheritanceOn: html\x0a\x09html div \x09\x0a\x09\x09class: 'inheritance';\x0a\x09\x09with: [\x0a\x09\x09\x09html with: 'Subclass of '.\x0a\x09\x09\x09self selectedItem superclass \x0a\x09\x09\x09\x09ifNil: [ html em with: 'nil' ]\x0a\x09\x09\x09\x09ifNotNil: [\x0a\x09\x09\x09\x09\x09html a \x0a\x09\x09\x09\x09\x09\x09with: self selectedItem superclass name;\x0a\x09\x09\x09\x09\x09\x09onClick: [ self selectClass: self selectedItem superclass ] ] ]",
  2509. messageSends: ["class:", "div", "with:", "ifNil:ifNotNil:", "superclass", "selectedItem", "em", "a", "name", "onClick:", "selectClass:"],
  2510. referencedClasses: []
  2511. }),
  2512. globals.HLDocumentationWidget);
  2513. smalltalk.addMethod(
  2514. smalltalk.method({
  2515. selector: "selectClass:",
  2516. protocol: 'actions',
  2517. fn: function (aClass) {
  2518. var self=this;
  2519. return smalltalk.withContext(function($ctx1) {
  2520. _st(self._model())._selectedClass_(aClass);
  2521. return self}, function($ctx1) {$ctx1.fill(self,"selectClass:",{aClass:aClass},globals.HLDocumentationWidget)});},
  2522. args: ["aClass"],
  2523. source: "selectClass: aClass\x0a\x09self model selectedClass: aClass",
  2524. messageSends: ["selectedClass:", "model"],
  2525. referencedClasses: []
  2526. }),
  2527. globals.HLDocumentationWidget);
  2528. smalltalk.addMethod(
  2529. smalltalk.method({
  2530. selector: "selectedItem",
  2531. protocol: 'accessing',
  2532. fn: function () {
  2533. var self=this;
  2534. return smalltalk.withContext(function($ctx1) {
  2535. var $2,$1;
  2536. $2=_st(self._model())._selectedClass();
  2537. if(($receiver = $2) == nil || $receiver == null){
  2538. $1=$2;
  2539. } else {
  2540. var class_;
  2541. class_=$receiver;
  2542. $1=_st(class_)._theNonMetaClass();
  2543. };
  2544. return $1;
  2545. }, function($ctx1) {$ctx1.fill(self,"selectedItem",{},globals.HLDocumentationWidget)});},
  2546. args: [],
  2547. source: "selectedItem\x0a\x09^ self model selectedClass ifNotNil: [ :class | class theNonMetaClass ]",
  2548. messageSends: ["ifNotNil:", "selectedClass", "model", "theNonMetaClass"],
  2549. referencedClasses: []
  2550. }),
  2551. globals.HLDocumentationWidget);
  2552. smalltalk.addMethod(
  2553. smalltalk.method({
  2554. selector: "setClassComment:",
  2555. protocol: 'reactions',
  2556. fn: function (aString) {
  2557. var self=this;
  2558. return smalltalk.withContext(function($ctx1) {
  2559. _st(self._model())._setClassComment_(aString);
  2560. return self}, function($ctx1) {$ctx1.fill(self,"setClassComment:",{aString:aString},globals.HLDocumentationWidget)});},
  2561. args: ["aString"],
  2562. source: "setClassComment: aString\x0a\x09self model setClassComment: aString",
  2563. messageSends: ["setClassComment:", "model"],
  2564. referencedClasses: []
  2565. }),
  2566. globals.HLDocumentationWidget);
  2567. smalltalk.addMethod(
  2568. smalltalk.method({
  2569. selector: "unregister",
  2570. protocol: 'actions',
  2571. fn: function () {
  2572. var self=this;
  2573. return smalltalk.withContext(function($ctx1) {
  2574. globals.HLDocumentationWidget.superclass.fn.prototype._unregister.apply(_st(self), []);
  2575. _st(_st(self._model())._announcer())._unregister_(self);
  2576. return self}, function($ctx1) {$ctx1.fill(self,"unregister",{},globals.HLDocumentationWidget)});},
  2577. args: [],
  2578. source: "unregister\x0a\x09super unregister.\x0a\x09self model announcer unregister: self",
  2579. messageSends: ["unregister", "unregister:", "announcer", "model"],
  2580. referencedClasses: []
  2581. }),
  2582. globals.HLDocumentationWidget);
  2583. smalltalk.addClass('HLMethodsListWidget', globals.HLToolListWidget, ['selectorsCache'], 'Helios-Browser');
  2584. globals.HLMethodsListWidget.comment="I render a list of methods for the selected protocol.";
  2585. smalltalk.addMethod(
  2586. smalltalk.method({
  2587. selector: "allProtocol",
  2588. protocol: 'accessing',
  2589. fn: function () {
  2590. var self=this;
  2591. return smalltalk.withContext(function($ctx1) {
  2592. var $1;
  2593. $1=_st(self._model())._allProtocol();
  2594. return $1;
  2595. }, function($ctx1) {$ctx1.fill(self,"allProtocol",{},globals.HLMethodsListWidget)});},
  2596. args: [],
  2597. source: "allProtocol\x0a\x09^ self model allProtocol",
  2598. messageSends: ["allProtocol", "model"],
  2599. referencedClasses: []
  2600. }),
  2601. globals.HLMethodsListWidget);
  2602. smalltalk.addMethod(
  2603. smalltalk.method({
  2604. selector: "cssClassForItem:",
  2605. protocol: 'accessing',
  2606. fn: function (aSelector) {
  2607. var self=this;
  2608. var override,overriden,method;
  2609. return smalltalk.withContext(function($ctx1) {
  2610. var $2,$3,$4,$1;
  2611. method=self._methodForSelector_(aSelector);
  2612. override=self._isOverride_(method);
  2613. overriden=self._isOverridden_(method);
  2614. $2=override;
  2615. if(smalltalk.assert($2)){
  2616. $3=overriden;
  2617. if(smalltalk.assert($3)){
  2618. $1="override-overridden";
  2619. } else {
  2620. $1="override";
  2621. };
  2622. } else {
  2623. $4=overriden;
  2624. if(smalltalk.assert($4)){
  2625. $1="overridden";
  2626. } else {
  2627. $1="";
  2628. };
  2629. };
  2630. return $1;
  2631. }, function($ctx1) {$ctx1.fill(self,"cssClassForItem:",{aSelector:aSelector,override:override,overriden:overriden,method:method},globals.HLMethodsListWidget)});},
  2632. args: ["aSelector"],
  2633. source: "cssClassForItem: aSelector\x0a\x09| override overriden method |\x0a \x0a method := self methodForSelector: aSelector.\x0a override := self isOverride: method.\x0a overriden := self isOverridden: method.\x0a \x0a\x09^ override\x0a \x09ifTrue: [ overriden\x0a\x09\x09\x09ifTrue: [ 'override-overridden' ]\x0a\x09\x09\x09ifFalse: [ 'override' ] ]\x0a\x09\x09ifFalse: [\x0a\x09\x09\x09overriden\x0a\x09\x09\x09ifTrue: [ 'overridden' ]\x0a\x09\x09\x09ifFalse: [ '' ] ]",
  2634. messageSends: ["methodForSelector:", "isOverride:", "isOverridden:", "ifTrue:ifFalse:"],
  2635. referencedClasses: []
  2636. }),
  2637. globals.HLMethodsListWidget);
  2638. smalltalk.addMethod(
  2639. smalltalk.method({
  2640. selector: "focus",
  2641. protocol: 'actions',
  2642. fn: function () {
  2643. var self=this;
  2644. return smalltalk.withContext(function($ctx1) {
  2645. var $1;
  2646. globals.HLMethodsListWidget.superclass.fn.prototype._focus.apply(_st(self), []);
  2647. $1=self._selectedItem();
  2648. if(($receiver = $1) == nil || $receiver == null){
  2649. _st(self._model())._showMethodTemplate();
  2650. } else {
  2651. $1;
  2652. };
  2653. return self}, function($ctx1) {$ctx1.fill(self,"focus",{},globals.HLMethodsListWidget)});},
  2654. args: [],
  2655. source: "focus\x0a\x09super focus.\x0a\x09\x0a\x09self selectedItem ifNil: [\x0a\x09\x09self model showMethodTemplate ]",
  2656. messageSends: ["focus", "ifNil:", "selectedItem", "showMethodTemplate", "model"],
  2657. referencedClasses: []
  2658. }),
  2659. globals.HLMethodsListWidget);
  2660. smalltalk.addMethod(
  2661. smalltalk.method({
  2662. selector: "isOverridden:",
  2663. protocol: 'testing',
  2664. fn: function (aMethod) {
  2665. var self=this;
  2666. return smalltalk.withContext(function($ctx1) {
  2667. var $1;
  2668. $1=_st(self._selectorsCache())._isOverridden_(aMethod);
  2669. return $1;
  2670. }, function($ctx1) {$ctx1.fill(self,"isOverridden:",{aMethod:aMethod},globals.HLMethodsListWidget)});},
  2671. args: ["aMethod"],
  2672. source: "isOverridden: aMethod\x0a ^ self selectorsCache isOverridden: aMethod",
  2673. messageSends: ["isOverridden:", "selectorsCache"],
  2674. referencedClasses: []
  2675. }),
  2676. globals.HLMethodsListWidget);
  2677. smalltalk.addMethod(
  2678. smalltalk.method({
  2679. selector: "isOverride:",
  2680. protocol: 'testing',
  2681. fn: function (aMethod) {
  2682. var self=this;
  2683. return smalltalk.withContext(function($ctx1) {
  2684. var $1;
  2685. $1=_st(self._selectorsCache())._isOverride_(aMethod);
  2686. return $1;
  2687. }, function($ctx1) {$ctx1.fill(self,"isOverride:",{aMethod:aMethod},globals.HLMethodsListWidget)});},
  2688. args: ["aMethod"],
  2689. source: "isOverride: aMethod\x0a ^ self selectorsCache isOverride: aMethod",
  2690. messageSends: ["isOverride:", "selectorsCache"],
  2691. referencedClasses: []
  2692. }),
  2693. globals.HLMethodsListWidget);
  2694. smalltalk.addMethod(
  2695. smalltalk.method({
  2696. selector: "label",
  2697. protocol: 'accessing',
  2698. fn: function () {
  2699. var self=this;
  2700. return "Methods";
  2701. },
  2702. args: [],
  2703. source: "label\x0a\x09^ 'Methods'",
  2704. messageSends: [],
  2705. referencedClasses: []
  2706. }),
  2707. globals.HLMethodsListWidget);
  2708. smalltalk.addMethod(
  2709. smalltalk.method({
  2710. selector: "methodForSelector:",
  2711. protocol: 'accessing',
  2712. fn: function (aSelector) {
  2713. var self=this;
  2714. return smalltalk.withContext(function($ctx1) {
  2715. var $1;
  2716. $1=_st(_st(_st(self._model())._selectedClass())._methodDictionary())._at_(aSelector);
  2717. return $1;
  2718. }, function($ctx1) {$ctx1.fill(self,"methodForSelector:",{aSelector:aSelector},globals.HLMethodsListWidget)});},
  2719. args: ["aSelector"],
  2720. source: "methodForSelector: aSelector\x0a\x09^ self model selectedClass\x0a \x09methodDictionary at: aSelector",
  2721. messageSends: ["at:", "methodDictionary", "selectedClass", "model"],
  2722. referencedClasses: []
  2723. }),
  2724. globals.HLMethodsListWidget);
  2725. smalltalk.addMethod(
  2726. smalltalk.method({
  2727. selector: "methodsInProtocol:",
  2728. protocol: 'accessing',
  2729. fn: function (aString) {
  2730. var self=this;
  2731. return smalltalk.withContext(function($ctx1) {
  2732. var $2,$1,$3,$5,$7,$6,$4;
  2733. $2=self._model();
  2734. $ctx1.sendIdx["model"]=1;
  2735. $1=_st($2)._selectedClass();
  2736. $ctx1.sendIdx["selectedClass"]=1;
  2737. if(($receiver = $1) == nil || $receiver == null){
  2738. $3=[];
  2739. return $3;
  2740. } else {
  2741. $1;
  2742. };
  2743. $5=_st(aString).__eq(self._allProtocol());
  2744. if(smalltalk.assert($5)){
  2745. $7=self._model();
  2746. $ctx1.sendIdx["model"]=2;
  2747. $6=_st($7)._selectedClass();
  2748. $ctx1.sendIdx["selectedClass"]=2;
  2749. $4=_st($6)._methods();
  2750. } else {
  2751. $4=_st(_st(self._model())._selectedClass())._methodsInProtocol_(aString);
  2752. };
  2753. return $4;
  2754. }, function($ctx1) {$ctx1.fill(self,"methodsInProtocol:",{aString:aString},globals.HLMethodsListWidget)});},
  2755. args: ["aString"],
  2756. source: "methodsInProtocol: aString\x0a\x09self model selectedClass ifNil: [ ^ #() ].\x0a \x0a\x09^ aString = self allProtocol\x0a \x09ifTrue: [ self model selectedClass methods ]\x0a \x09ifFalse: [ self model selectedClass methodsInProtocol: aString ]",
  2757. messageSends: ["ifNil:", "selectedClass", "model", "ifTrue:ifFalse:", "=", "allProtocol", "methods", "methodsInProtocol:"],
  2758. referencedClasses: []
  2759. }),
  2760. globals.HLMethodsListWidget);
  2761. smalltalk.addMethod(
  2762. smalltalk.method({
  2763. selector: "observeModel",
  2764. protocol: 'actions',
  2765. fn: function () {
  2766. var self=this;
  2767. function $HLProtocolSelected(){return globals.HLProtocolSelected||(typeof HLProtocolSelected=="undefined"?nil:HLProtocolSelected)}
  2768. function $HLShowInstanceToggled(){return globals.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
  2769. function $HLMethodSelected(){return globals.HLMethodSelected||(typeof HLMethodSelected=="undefined"?nil:HLMethodSelected)}
  2770. function $HLMethodsFocusRequested(){return globals.HLMethodsFocusRequested||(typeof HLMethodsFocusRequested=="undefined"?nil:HLMethodsFocusRequested)}
  2771. return smalltalk.withContext(function($ctx1) {
  2772. var $1,$2;
  2773. $1=_st(self._model())._announcer();
  2774. _st($1)._on_send_to_($HLProtocolSelected(),"onProtocolSelected:",self);
  2775. $ctx1.sendIdx["on:send:to:"]=1;
  2776. _st($1)._on_send_to_($HLShowInstanceToggled(),"onShowInstanceToggled",self);
  2777. $ctx1.sendIdx["on:send:to:"]=2;
  2778. _st($1)._on_send_to_($HLMethodSelected(),"onMethodSelected:",self);
  2779. $ctx1.sendIdx["on:send:to:"]=3;
  2780. $2=_st($1)._on_send_to_($HLMethodsFocusRequested(),"onMethodsFocusRequested",self);
  2781. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},globals.HLMethodsListWidget)});},
  2782. args: [],
  2783. source: "observeModel\x0a\x09self model announcer \x0a\x09\x09on: HLProtocolSelected \x0a\x09\x09send: #onProtocolSelected: \x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLShowInstanceToggled \x0a\x09\x09send: #onShowInstanceToggled\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLMethodSelected \x0a\x09\x09send: #onMethodSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLMethodsFocusRequested \x0a\x09\x09send: #onMethodsFocusRequested\x0a\x09\x09to: self",
  2784. messageSends: ["on:send:to:", "announcer", "model"],
  2785. referencedClasses: ["HLProtocolSelected", "HLShowInstanceToggled", "HLMethodSelected", "HLMethodsFocusRequested"]
  2786. }),
  2787. globals.HLMethodsListWidget);
  2788. smalltalk.addMethod(
  2789. smalltalk.method({
  2790. selector: "observeSystem",
  2791. protocol: 'actions',
  2792. fn: function () {
  2793. var self=this;
  2794. function $ProtocolAdded(){return globals.ProtocolAdded||(typeof ProtocolAdded=="undefined"?nil:ProtocolAdded)}
  2795. function $ProtocolRemoved(){return globals.ProtocolRemoved||(typeof ProtocolRemoved=="undefined"?nil:ProtocolRemoved)}
  2796. function $MethodAdded(){return globals.MethodAdded||(typeof MethodAdded=="undefined"?nil:MethodAdded)}
  2797. function $MethodRemoved(){return globals.MethodRemoved||(typeof MethodRemoved=="undefined"?nil:MethodRemoved)}
  2798. function $MethodMoved(){return globals.MethodMoved||(typeof MethodMoved=="undefined"?nil:MethodMoved)}
  2799. return smalltalk.withContext(function($ctx1) {
  2800. var $1,$2;
  2801. $1=_st(self._model())._systemAnnouncer();
  2802. _st($1)._on_send_to_($ProtocolAdded(),"onProtocolAdded:",self);
  2803. $ctx1.sendIdx["on:send:to:"]=1;
  2804. _st($1)._on_send_to_($ProtocolRemoved(),"onProtocolRemoved:",self);
  2805. $ctx1.sendIdx["on:send:to:"]=2;
  2806. _st($1)._on_send_to_($MethodAdded(),"onMethodAdded:",self);
  2807. $ctx1.sendIdx["on:send:to:"]=3;
  2808. _st($1)._on_send_to_($MethodRemoved(),"onMethodRemoved:",self);
  2809. $ctx1.sendIdx["on:send:to:"]=4;
  2810. $2=_st($1)._on_send_to_($MethodMoved(),"onMethodMoved:",self);
  2811. return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},globals.HLMethodsListWidget)});},
  2812. args: [],
  2813. source: "observeSystem\x0a\x09self model systemAnnouncer \x0a \x09on: ProtocolAdded\x0a send: #onProtocolAdded:\x0a\x09\x09to: self;\x0a \x09\x0a\x09\x09on: ProtocolRemoved\x0a send: #onProtocolRemoved:\x0a\x09\x09to: self;\x0a\x09\x09\x0a \x09on: MethodAdded \x0a send: #onMethodAdded:\x0a\x09\x09to: self;\x0a\x09\x09\x0a on: MethodRemoved \x0a send: #onMethodRemoved:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: MethodMoved \x0a send: #onMethodMoved:\x0a\x09\x09to: self",
  2814. messageSends: ["on:send:to:", "systemAnnouncer", "model"],
  2815. referencedClasses: ["ProtocolAdded", "ProtocolRemoved", "MethodAdded", "MethodRemoved", "MethodMoved"]
  2816. }),
  2817. globals.HLMethodsListWidget);
  2818. smalltalk.addMethod(
  2819. smalltalk.method({
  2820. selector: "onMethodAdded:",
  2821. protocol: 'reactions',
  2822. fn: function (anAnnouncement) {
  2823. var self=this;
  2824. return smalltalk.withContext(function($ctx1) {
  2825. var $1;
  2826. $1=_st(_st(self._model())._selectedClass()).__eq(_st(_st(anAnnouncement)._method())._methodClass());
  2827. if(! smalltalk.assert($1)){
  2828. return self;
  2829. };
  2830. self._setItemsForSelectedProtocol();
  2831. self._refresh();
  2832. return self}, function($ctx1) {$ctx1.fill(self,"onMethodAdded:",{anAnnouncement:anAnnouncement},globals.HLMethodsListWidget)});},
  2833. args: ["anAnnouncement"],
  2834. source: "onMethodAdded: anAnnouncement\x0a\x09self model selectedClass = anAnnouncement method methodClass ifFalse: [ ^ self ].\x0a \x0a self setItemsForSelectedProtocol.\x0a self refresh",
  2835. messageSends: ["ifFalse:", "=", "selectedClass", "model", "methodClass", "method", "setItemsForSelectedProtocol", "refresh"],
  2836. referencedClasses: []
  2837. }),
  2838. globals.HLMethodsListWidget);
  2839. smalltalk.addMethod(
  2840. smalltalk.method({
  2841. selector: "onMethodMoved:",
  2842. protocol: 'reactions',
  2843. fn: function (anAnnouncement) {
  2844. var self=this;
  2845. return smalltalk.withContext(function($ctx1) {
  2846. var $3,$2,$1,$6,$5,$4,$7;
  2847. $3=self._model();
  2848. $ctx1.sendIdx["model"]=1;
  2849. $2=_st($3)._selectedMethod();
  2850. $1=_st($2).__eq(_st(anAnnouncement)._method());
  2851. $ctx1.sendIdx["="]=1;
  2852. if(! smalltalk.assert($1)){
  2853. return self;
  2854. };
  2855. $6=self._model();
  2856. $ctx1.sendIdx["model"]=2;
  2857. $5=_st($6)._selectedProtocol();
  2858. $4=_st($5).__eq(_st(self._model())._allProtocol());
  2859. if(! smalltalk.assert($4)){
  2860. self._selectedItem_(nil);
  2861. self._selectItem_(nil);
  2862. self._setItemsForSelectedProtocol();
  2863. $7=self._refresh();
  2864. $7;
  2865. };
  2866. return self}, function($ctx1) {$ctx1.fill(self,"onMethodMoved:",{anAnnouncement:anAnnouncement},globals.HLMethodsListWidget)});},
  2867. args: ["anAnnouncement"],
  2868. source: "onMethodMoved: anAnnouncement\x0a\x09self model selectedMethod = anAnnouncement method ifFalse: [ ^ self ].\x0a \x0a\x09self model selectedProtocol = self model allProtocol ifFalse: [\x0a\x09\x09self \x0a\x09\x09\x09selectedItem: nil; \x0a\x09\x09\x09selectItem: nil;\x0a\x09\x09\x09setItemsForSelectedProtocol;\x0a \x09\x09refresh ]",
  2869. messageSends: ["ifFalse:", "=", "selectedMethod", "model", "method", "selectedProtocol", "allProtocol", "selectedItem:", "selectItem:", "setItemsForSelectedProtocol", "refresh"],
  2870. referencedClasses: []
  2871. }),
  2872. globals.HLMethodsListWidget);
  2873. smalltalk.addMethod(
  2874. smalltalk.method({
  2875. selector: "onMethodRemoved:",
  2876. protocol: 'reactions',
  2877. fn: function (anAnnouncement){
  2878. var self=this;
  2879. var method;
  2880. return smalltalk.withContext(function($ctx1) {
  2881. var $1,$2,$4,$3,$5,$6;
  2882. var $early={};
  2883. try {
  2884. method=_st(anAnnouncement)._method();
  2885. _st(self._items())._detect_ifNone_((function(each){
  2886. return smalltalk.withContext(function($ctx2) {
  2887. $1=_st(method)._selector();
  2888. $ctx2.sendIdx["selector"]=1;
  2889. return _st(each).__eq($1);
  2890. $ctx2.sendIdx["="]=1;
  2891. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}),(function(){
  2892. throw $early=[self];
  2893. }));
  2894. $2=self._selectedItem();
  2895. $ctx1.sendIdx["selectedItem"]=1;
  2896. if(($receiver = $2) == nil || $receiver == null){
  2897. $2;
  2898. } else {
  2899. $4=_st(_st(method)._methodClass()).__eq(_st(self._model())._selectedClass());
  2900. $ctx1.sendIdx["="]=2;
  2901. $3=_st($4)._and_((function(){
  2902. return smalltalk.withContext(function($ctx2) {
  2903. return _st(_st(method)._selector()).__eq(self._selectedItem());
  2904. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)})}));
  2905. if(smalltalk.assert($3)){
  2906. self._selectedItem_(nil);
  2907. $5=self._selectItem_(nil);
  2908. $5;
  2909. };
  2910. };
  2911. self._setItemsForSelectedProtocol();
  2912. self._refresh();
  2913. $6=self._focus();
  2914. return self}
  2915. catch(e) {if(e===$early)return e[0]; throw e}
  2916. }, function($ctx1) {$ctx1.fill(self,"onMethodRemoved:",{anAnnouncement:anAnnouncement,method:method},globals.HLMethodsListWidget)})},
  2917. args: ["anAnnouncement"],
  2918. source: "onMethodRemoved: anAnnouncement\x0a\x09| method |\x0a\x09\x0a\x09method := anAnnouncement method.\x0a\x09\x0a\x09self items detect: [ :each | each = method selector ] ifNone: [ ^ self ].\x0a\x0a self selectedItem ifNotNil: [\x0a \x09(method methodClass = self model selectedClass and: [ method selector = self selectedItem ])\x0a \x09\x09\x09ifTrue: [ \x0a\x09\x09\x09\x09self selectedItem: nil; \x0a\x09\x09\x09\x09selectItem: nil ] ].\x0a\x0a self setItemsForSelectedProtocol.\x0a\x09self \x0a\x09\x09refresh;\x0a\x09\x09focus",
  2919. messageSends: ["method", "detect:ifNone:", "items", "=", "selector", "ifNotNil:", "selectedItem", "ifTrue:", "and:", "methodClass", "selectedClass", "model", "selectedItem:", "selectItem:", "setItemsForSelectedProtocol", "refresh", "focus"],
  2920. referencedClasses: []
  2921. }),
  2922. globals.HLMethodsListWidget);
  2923. smalltalk.addMethod(
  2924. smalltalk.method({
  2925. selector: "onMethodSelected:",
  2926. protocol: 'reactions',
  2927. fn: function (anAnnouncement) {
  2928. var self=this;
  2929. var selector,method;
  2930. return smalltalk.withContext(function($ctx1) {
  2931. var $1,$2;
  2932. method=_st(anAnnouncement)._item();
  2933. $1=_st(method)._isCompiledMethod();
  2934. if(smalltalk.assert($1)){
  2935. selector=_st(method)._selector();
  2936. } else {
  2937. selector=nil;
  2938. };
  2939. self._selectedItem_(selector);
  2940. $2=self._activateItem_(selector);
  2941. return self}, function($ctx1) {$ctx1.fill(self,"onMethodSelected:",{anAnnouncement:anAnnouncement,selector:selector,method:method},globals.HLMethodsListWidget)});},
  2942. args: ["anAnnouncement"],
  2943. source: "onMethodSelected: anAnnouncement\x0a\x09| selector method |\x0a\x09\x0a\x09method := anAnnouncement item.\x0a\x09\x0a\x09selector := method isCompiledMethod \x0a\x09\x09ifTrue: [ method selector ]\x0a\x09\x09ifFalse: [ nil ].\x0a\x09\x09\x0a\x09self \x0a\x09\x09selectedItem: selector;\x0a\x09\x09activateItem: selector",
  2944. messageSends: ["item", "ifTrue:ifFalse:", "isCompiledMethod", "selector", "selectedItem:", "activateItem:"],
  2945. referencedClasses: []
  2946. }),
  2947. globals.HLMethodsListWidget);
  2948. smalltalk.addMethod(
  2949. smalltalk.method({
  2950. selector: "onMethodsFocusRequested",
  2951. protocol: 'reactions',
  2952. fn: function () {
  2953. var self=this;
  2954. return smalltalk.withContext(function($ctx1) {
  2955. self._focus();
  2956. return self}, function($ctx1) {$ctx1.fill(self,"onMethodsFocusRequested",{},globals.HLMethodsListWidget)});},
  2957. args: [],
  2958. source: "onMethodsFocusRequested\x0a\x09self focus",
  2959. messageSends: ["focus"],
  2960. referencedClasses: []
  2961. }),
  2962. globals.HLMethodsListWidget);
  2963. smalltalk.addMethod(
  2964. smalltalk.method({
  2965. selector: "onProtocolAdded:",
  2966. protocol: 'reactions',
  2967. fn: function (anAnnouncement) {
  2968. var self=this;
  2969. return smalltalk.withContext(function($ctx1) {
  2970. var $1;
  2971. $1=_st(_st(self._model())._selectedClass()).__eq(_st(anAnnouncement)._theClass());
  2972. if(! smalltalk.assert($1)){
  2973. return self;
  2974. };
  2975. self._setItemsForSelectedProtocol();
  2976. self._refresh();
  2977. self._focus();
  2978. return self}, function($ctx1) {$ctx1.fill(self,"onProtocolAdded:",{anAnnouncement:anAnnouncement},globals.HLMethodsListWidget)});},
  2979. args: ["anAnnouncement"],
  2980. source: "onProtocolAdded: anAnnouncement\x0a\x09self model selectedClass = anAnnouncement theClass ifFalse: [ ^ self ].\x0a\x09\x0a\x09self setItemsForSelectedProtocol.\x0a self refresh.\x0a\x09self focus",
  2981. messageSends: ["ifFalse:", "=", "selectedClass", "model", "theClass", "setItemsForSelectedProtocol", "refresh", "focus"],
  2982. referencedClasses: []
  2983. }),
  2984. globals.HLMethodsListWidget);
  2985. smalltalk.addMethod(
  2986. smalltalk.method({
  2987. selector: "onProtocolRemoved:",
  2988. protocol: 'reactions',
  2989. fn: function (anAnnouncement) {
  2990. var self=this;
  2991. return smalltalk.withContext(function($ctx1) {
  2992. var $1;
  2993. $1=_st(_st(self._model())._selectedClass()).__eq(_st(anAnnouncement)._theClass());
  2994. if(! smalltalk.assert($1)){
  2995. return self;
  2996. };
  2997. self._setItemsForSelectedProtocol();
  2998. self._refresh();
  2999. self._focus();
  3000. return self}, function($ctx1) {$ctx1.fill(self,"onProtocolRemoved:",{anAnnouncement:anAnnouncement},globals.HLMethodsListWidget)});},
  3001. args: ["anAnnouncement"],
  3002. source: "onProtocolRemoved: anAnnouncement\x0a\x09self model selectedClass = anAnnouncement theClass ifFalse: [ ^ self ].\x0a\x09\x0a\x09self setItemsForSelectedProtocol.\x0a self refresh.\x0a\x09self focus",
  3003. messageSends: ["ifFalse:", "=", "selectedClass", "model", "theClass", "setItemsForSelectedProtocol", "refresh", "focus"],
  3004. referencedClasses: []
  3005. }),
  3006. globals.HLMethodsListWidget);
  3007. smalltalk.addMethod(
  3008. smalltalk.method({
  3009. selector: "onProtocolSelected:",
  3010. protocol: 'reactions',
  3011. fn: function (anAnnouncement) {
  3012. var self=this;
  3013. return smalltalk.withContext(function($ctx1) {
  3014. self._selectedItem_(nil);
  3015. self._setItemsForSelectedProtocol();
  3016. self._refresh();
  3017. return self}, function($ctx1) {$ctx1.fill(self,"onProtocolSelected:",{anAnnouncement:anAnnouncement},globals.HLMethodsListWidget)});},
  3018. args: ["anAnnouncement"],
  3019. source: "onProtocolSelected: anAnnouncement\x0a self selectedItem: nil.\x0a \x0a\x09self setItemsForSelectedProtocol.\x0a self refresh",
  3020. messageSends: ["selectedItem:", "setItemsForSelectedProtocol", "refresh"],
  3021. referencedClasses: []
  3022. }),
  3023. globals.HLMethodsListWidget);
  3024. smalltalk.addMethod(
  3025. smalltalk.method({
  3026. selector: "onShowInstanceToggled",
  3027. protocol: 'reactions',
  3028. fn: function () {
  3029. var self=this;
  3030. return smalltalk.withContext(function($ctx1) {
  3031. self._onProtocolSelected_(nil);
  3032. return self}, function($ctx1) {$ctx1.fill(self,"onShowInstanceToggled",{},globals.HLMethodsListWidget)});},
  3033. args: [],
  3034. source: "onShowInstanceToggled\x0a\x09self onProtocolSelected: nil",
  3035. messageSends: ["onProtocolSelected:"],
  3036. referencedClasses: []
  3037. }),
  3038. globals.HLMethodsListWidget);
  3039. smalltalk.addMethod(
  3040. smalltalk.method({
  3041. selector: "overrideSelectors",
  3042. protocol: 'accessing',
  3043. fn: function () {
  3044. var self=this;
  3045. function $Set(){return globals.Set||(typeof Set=="undefined"?nil:Set)}
  3046. return smalltalk.withContext(function($ctx1) {
  3047. var $2,$1;
  3048. $1=_st(self._selectorsCache())._at_ifAbsentPut_("override",(function(){
  3049. return smalltalk.withContext(function($ctx2) {
  3050. return _st(_st(_st(self._model())._selectedClass())._allSuperclasses())._inject_into_(_st($Set())._new(),(function(acc,each){
  3051. return smalltalk.withContext(function($ctx3) {
  3052. _st(acc)._addAll_(_st(each)._selectors());
  3053. $2=_st(acc)._yourself();
  3054. return $2;
  3055. }, function($ctx3) {$ctx3.fillBlock({acc:acc,each:each},$ctx2,2)})}));
  3056. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  3057. return $1;
  3058. }, function($ctx1) {$ctx1.fill(self,"overrideSelectors",{},globals.HLMethodsListWidget)});},
  3059. args: [],
  3060. source: "overrideSelectors\x0a\x09^ self selectorsCache \x0a \x09at: 'override'\x0a ifAbsentPut: [ \x0a \x09self model selectedClass allSuperclasses\x0a\x09\x09\x09\x09inject: Set new into: [ :acc :each | acc addAll: each selectors; yourself ] ]",
  3061. messageSends: ["at:ifAbsentPut:", "selectorsCache", "inject:into:", "allSuperclasses", "selectedClass", "model", "new", "addAll:", "selectors", "yourself"],
  3062. referencedClasses: ["Set"]
  3063. }),
  3064. globals.HLMethodsListWidget);
  3065. smalltalk.addMethod(
  3066. smalltalk.method({
  3067. selector: "overridenSelectors",
  3068. protocol: 'accessing',
  3069. fn: function () {
  3070. var self=this;
  3071. function $Set(){return globals.Set||(typeof Set=="undefined"?nil:Set)}
  3072. return smalltalk.withContext(function($ctx1) {
  3073. var $2,$1;
  3074. $1=_st(self._selectorsCache())._at_ifAbsentPut_("overriden",(function(){
  3075. return smalltalk.withContext(function($ctx2) {
  3076. return _st(_st(_st(self._model())._selectedClass())._allSubclasses())._inject_into_(_st($Set())._new(),(function(acc,each){
  3077. return smalltalk.withContext(function($ctx3) {
  3078. _st(acc)._addAll_(_st(each)._selectors());
  3079. $2=_st(acc)._yourself();
  3080. return $2;
  3081. }, function($ctx3) {$ctx3.fillBlock({acc:acc,each:each},$ctx2,2)})}));
  3082. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
  3083. return $1;
  3084. }, function($ctx1) {$ctx1.fill(self,"overridenSelectors",{},globals.HLMethodsListWidget)});},
  3085. args: [],
  3086. source: "overridenSelectors\x0a\x09^ self selectorsCache \x0a \x09at: 'overriden'\x0a ifAbsentPut: [ \x0a \x09self model selectedClass allSubclasses\x0a\x09\x09\x09\x09inject: Set new into: [ :acc :each | acc addAll: each selectors; yourself ] ]",
  3087. messageSends: ["at:ifAbsentPut:", "selectorsCache", "inject:into:", "allSubclasses", "selectedClass", "model", "new", "addAll:", "selectors", "yourself"],
  3088. referencedClasses: ["Set"]
  3089. }),
  3090. globals.HLMethodsListWidget);
  3091. smalltalk.addMethod(
  3092. smalltalk.method({
  3093. selector: "renderContentOn:",
  3094. protocol: 'rendering',
  3095. fn: function (html) {
  3096. var self=this;
  3097. return smalltalk.withContext(function($ctx1) {
  3098. var $1,$2,$3;
  3099. $1=_st(self._model())._showInstance();
  3100. if(smalltalk.assert($1)){
  3101. globals.HLMethodsListWidget.superclass.fn.prototype._renderContentOn_.apply(_st(self), [html]);
  3102. } else {
  3103. $2=_st(html)._div();
  3104. _st($2)._class_("class_side");
  3105. $3=_st($2)._with_((function(){
  3106. return smalltalk.withContext(function($ctx2) {
  3107. return globals.HLMethodsListWidget.superclass.fn.prototype._renderContentOn_.apply(_st(self), [html]);
  3108. $ctx2.sendIdx["renderContentOn:"]=1;
  3109. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  3110. $3;
  3111. };
  3112. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLMethodsListWidget)});},
  3113. args: ["html"],
  3114. source: "renderContentOn: html\x0a\x09self model showInstance\x0a \x09ifFalse: [ html div \x0a \x09class: 'class_side'; \x0a with: [ super renderContentOn: html ] ]\x0a \x09ifTrue: [ super renderContentOn: html ]",
  3115. messageSends: ["ifFalse:ifTrue:", "showInstance", "model", "class:", "div", "with:", "renderContentOn:"],
  3116. referencedClasses: []
  3117. }),
  3118. globals.HLMethodsListWidget);
  3119. smalltalk.addMethod(
  3120. smalltalk.method({
  3121. selector: "renderItemLabel:on:",
  3122. protocol: 'rendering',
  3123. fn: function (aSelector, html) {
  3124. var self=this;
  3125. return smalltalk.withContext(function($ctx1) {
  3126. _st(html)._with_(aSelector);
  3127. return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{aSelector:aSelector,html:html},globals.HLMethodsListWidget)});},
  3128. args: ["aSelector", "html"],
  3129. source: "renderItemLabel: aSelector on: html\x0a\x09html with: aSelector",
  3130. messageSends: ["with:"],
  3131. referencedClasses: []
  3132. }),
  3133. globals.HLMethodsListWidget);
  3134. smalltalk.addMethod(
  3135. smalltalk.method({
  3136. selector: "reselectItem:",
  3137. protocol: 'actions',
  3138. fn: function (aSelector) {
  3139. var self=this;
  3140. return smalltalk.withContext(function($ctx1) {
  3141. _st(self._model())._forceSelectedMethod_(self._methodForSelector_(aSelector));
  3142. return self}, function($ctx1) {$ctx1.fill(self,"reselectItem:",{aSelector:aSelector},globals.HLMethodsListWidget)});},
  3143. args: ["aSelector"],
  3144. source: "reselectItem: aSelector\x0a\x09self model forceSelectedMethod: (self methodForSelector: aSelector)",
  3145. messageSends: ["forceSelectedMethod:", "model", "methodForSelector:"],
  3146. referencedClasses: []
  3147. }),
  3148. globals.HLMethodsListWidget);
  3149. smalltalk.addMethod(
  3150. smalltalk.method({
  3151. selector: "selectItem:",
  3152. protocol: 'actions',
  3153. fn: function (aSelector) {
  3154. var self=this;
  3155. return smalltalk.withContext(function($ctx1) {
  3156. var $2,$1;
  3157. if(($receiver = aSelector) == nil || $receiver == null){
  3158. $2=self._model();
  3159. $ctx1.sendIdx["model"]=1;
  3160. $1=_st($2)._selectedMethod_(nil);
  3161. $ctx1.sendIdx["selectedMethod:"]=1;
  3162. return $1;
  3163. } else {
  3164. aSelector;
  3165. };
  3166. _st(self._model())._selectedMethod_(self._methodForSelector_(aSelector));
  3167. return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aSelector:aSelector},globals.HLMethodsListWidget)});},
  3168. args: ["aSelector"],
  3169. source: "selectItem: aSelector\x0a\x09aSelector ifNil: [ ^ self model selectedMethod: nil ].\x0a\x0a \x09self model selectedMethod: (self methodForSelector: aSelector)",
  3170. messageSends: ["ifNil:", "selectedMethod:", "model", "methodForSelector:"],
  3171. referencedClasses: []
  3172. }),
  3173. globals.HLMethodsListWidget);
  3174. smalltalk.addMethod(
  3175. smalltalk.method({
  3176. selector: "selectorsCache",
  3177. protocol: 'accessing',
  3178. fn: function () {
  3179. var self=this;
  3180. return smalltalk.withContext(function($ctx1) {
  3181. var $1;
  3182. $1=_st(self._class())._selectorsCache();
  3183. return $1;
  3184. }, function($ctx1) {$ctx1.fill(self,"selectorsCache",{},globals.HLMethodsListWidget)});},
  3185. args: [],
  3186. source: "selectorsCache\x0a\x09^ self class selectorsCache",
  3187. messageSends: ["selectorsCache", "class"],
  3188. referencedClasses: []
  3189. }),
  3190. globals.HLMethodsListWidget);
  3191. smalltalk.addMethod(
  3192. smalltalk.method({
  3193. selector: "selectorsInProtocol:",
  3194. protocol: 'accessing',
  3195. fn: function (aString) {
  3196. var self=this;
  3197. return smalltalk.withContext(function($ctx1) {
  3198. var $1;
  3199. $1=_st(_st(self._methodsInProtocol_(aString))._collect_((function(each){
  3200. return smalltalk.withContext(function($ctx2) {
  3201. return _st(each)._selector();
  3202. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})})))._sorted();
  3203. return $1;
  3204. }, function($ctx1) {$ctx1.fill(self,"selectorsInProtocol:",{aString:aString},globals.HLMethodsListWidget)});},
  3205. args: ["aString"],
  3206. source: "selectorsInProtocol: aString\x0a\x09^ ((self methodsInProtocol: aString)\x0a \x09collect: [ :each | each selector ]) sorted",
  3207. messageSends: ["sorted", "collect:", "methodsInProtocol:", "selector"],
  3208. referencedClasses: []
  3209. }),
  3210. globals.HLMethodsListWidget);
  3211. smalltalk.addMethod(
  3212. smalltalk.method({
  3213. selector: "setItemsForProtocol:",
  3214. protocol: 'private',
  3215. fn: function (aString) {
  3216. var self=this;
  3217. return smalltalk.withContext(function($ctx1) {
  3218. var $2,$1;
  3219. if(($receiver = aString) == nil || $receiver == null){
  3220. $2=[];
  3221. } else {
  3222. $2=self._selectorsInProtocol_(aString);
  3223. };
  3224. $1=self._items_($2);
  3225. return $1;
  3226. }, function($ctx1) {$ctx1.fill(self,"setItemsForProtocol:",{aString:aString},globals.HLMethodsListWidget)});},
  3227. args: ["aString"],
  3228. source: "setItemsForProtocol: aString\x0a\x09^ self items: (aString\x0a \x09ifNil: [ #() ]\x0a \x09ifNotNil: [ self selectorsInProtocol: aString ])",
  3229. messageSends: ["items:", "ifNil:ifNotNil:", "selectorsInProtocol:"],
  3230. referencedClasses: []
  3231. }),
  3232. globals.HLMethodsListWidget);
  3233. smalltalk.addMethod(
  3234. smalltalk.method({
  3235. selector: "setItemsForSelectedProtocol",
  3236. protocol: 'private',
  3237. fn: function () {
  3238. var self=this;
  3239. return smalltalk.withContext(function($ctx1) {
  3240. self._setItemsForProtocol_(_st(self._model())._selectedProtocol());
  3241. return self}, function($ctx1) {$ctx1.fill(self,"setItemsForSelectedProtocol",{},globals.HLMethodsListWidget)});},
  3242. args: [],
  3243. source: "setItemsForSelectedProtocol\x0a\x09self setItemsForProtocol: self model selectedProtocol",
  3244. messageSends: ["setItemsForProtocol:", "selectedProtocol", "model"],
  3245. referencedClasses: []
  3246. }),
  3247. globals.HLMethodsListWidget);
  3248. globals.HLMethodsListWidget.klass.iVarNames = ['selectorsCache'];
  3249. smalltalk.addMethod(
  3250. smalltalk.method({
  3251. selector: "selectorsCache",
  3252. protocol: 'accessing',
  3253. fn: function () {
  3254. var self=this;
  3255. function $HLSelectorsCache(){return globals.HLSelectorsCache||(typeof HLSelectorsCache=="undefined"?nil:HLSelectorsCache)}
  3256. return smalltalk.withContext(function($ctx1) {
  3257. var $1;
  3258. $1=_st($HLSelectorsCache())._current();
  3259. return $1;
  3260. }, function($ctx1) {$ctx1.fill(self,"selectorsCache",{},globals.HLMethodsListWidget.klass)});},
  3261. args: [],
  3262. source: "selectorsCache\x0a\x09^ HLSelectorsCache current",
  3263. messageSends: ["current"],
  3264. referencedClasses: ["HLSelectorsCache"]
  3265. }),
  3266. globals.HLMethodsListWidget.klass);
  3267. smalltalk.addClass('HLPackagesListWidget', globals.HLToolListWidget, [], 'Helios-Browser');
  3268. globals.HLPackagesListWidget.comment="I render a list of the system packages.";
  3269. smalltalk.addMethod(
  3270. smalltalk.method({
  3271. selector: "cssClassForItem:",
  3272. protocol: 'accessing',
  3273. fn: function (anItem) {
  3274. var self=this;
  3275. return "package";
  3276. },
  3277. args: ["anItem"],
  3278. source: "cssClassForItem: anItem\x09\x0a\x09^ 'package'",
  3279. messageSends: [],
  3280. referencedClasses: []
  3281. }),
  3282. globals.HLPackagesListWidget);
  3283. smalltalk.addMethod(
  3284. smalltalk.method({
  3285. selector: "focusClassesListWidget",
  3286. protocol: 'actions',
  3287. fn: function () {
  3288. var self=this;
  3289. function $HLClassesListFocus(){return globals.HLClassesListFocus||(typeof HLClassesListFocus=="undefined"?nil:HLClassesListFocus)}
  3290. return smalltalk.withContext(function($ctx1) {
  3291. _st(_st(self._model())._announcer())._announce_(_st($HLClassesListFocus())._new());
  3292. return self}, function($ctx1) {$ctx1.fill(self,"focusClassesListWidget",{},globals.HLPackagesListWidget)});},
  3293. args: [],
  3294. source: "focusClassesListWidget\x0a\x09self model announcer announce: HLClassesListFocus new",
  3295. messageSends: ["announce:", "announcer", "model", "new"],
  3296. referencedClasses: ["HLClassesListFocus"]
  3297. }),
  3298. globals.HLPackagesListWidget);
  3299. smalltalk.addMethod(
  3300. smalltalk.method({
  3301. selector: "initializeItems",
  3302. protocol: 'initialization',
  3303. fn: function () {
  3304. var self=this;
  3305. return smalltalk.withContext(function($ctx1) {
  3306. var $2,$1;
  3307. self["@items"]=_st(_st(self._model())._packages())._sort_((function(a,b){
  3308. return smalltalk.withContext(function($ctx2) {
  3309. $2=_st(a)._name();
  3310. $ctx2.sendIdx["name"]=1;
  3311. return _st($2).__lt(_st(b)._name());
  3312. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1,1)})}));
  3313. $1=self["@items"];
  3314. return $1;
  3315. }, function($ctx1) {$ctx1.fill(self,"initializeItems",{},globals.HLPackagesListWidget)});},
  3316. args: [],
  3317. source: "initializeItems\x0a\x09^ items := self model packages \x0a\x09\x09sort: [ :a :b | a name < b name ]",
  3318. messageSends: ["sort:", "packages", "model", "<", "name"],
  3319. referencedClasses: []
  3320. }),
  3321. globals.HLPackagesListWidget);
  3322. smalltalk.addMethod(
  3323. smalltalk.method({
  3324. selector: "items",
  3325. protocol: 'accessing',
  3326. fn: function () {
  3327. var self=this;
  3328. return smalltalk.withContext(function($ctx1) {
  3329. var $2,$1;
  3330. $2=self["@items"];
  3331. if(($receiver = $2) == nil || $receiver == null){
  3332. $1=self._initializeItems();
  3333. } else {
  3334. $1=$2;
  3335. };
  3336. return $1;
  3337. }, function($ctx1) {$ctx1.fill(self,"items",{},globals.HLPackagesListWidget)});},
  3338. args: [],
  3339. source: "items\x0a\x09^ items ifNil: [ self initializeItems ]",
  3340. messageSends: ["ifNil:", "initializeItems"],
  3341. referencedClasses: []
  3342. }),
  3343. globals.HLPackagesListWidget);
  3344. smalltalk.addMethod(
  3345. smalltalk.method({
  3346. selector: "label",
  3347. protocol: 'accessing',
  3348. fn: function () {
  3349. var self=this;
  3350. return "Packages";
  3351. },
  3352. args: [],
  3353. source: "label\x0a\x09^ 'Packages'",
  3354. messageSends: [],
  3355. referencedClasses: []
  3356. }),
  3357. globals.HLPackagesListWidget);
  3358. smalltalk.addMethod(
  3359. smalltalk.method({
  3360. selector: "observeModel",
  3361. protocol: 'actions',
  3362. fn: function () {
  3363. var self=this;
  3364. function $HLPackageSelected(){return globals.HLPackageSelected||(typeof HLPackageSelected=="undefined"?nil:HLPackageSelected)}
  3365. function $HLPackagesFocusRequested(){return globals.HLPackagesFocusRequested||(typeof HLPackagesFocusRequested=="undefined"?nil:HLPackagesFocusRequested)}
  3366. return smalltalk.withContext(function($ctx1) {
  3367. var $1,$2;
  3368. $1=_st(self._model())._announcer();
  3369. _st($1)._on_send_to_($HLPackageSelected(),"onPackageSelected:",self);
  3370. $ctx1.sendIdx["on:send:to:"]=1;
  3371. $2=_st($1)._on_send_to_($HLPackagesFocusRequested(),"onPackagesFocusRequested",self);
  3372. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},globals.HLPackagesListWidget)});},
  3373. args: [],
  3374. source: "observeModel\x0a self model announcer \x0a\x09\x09on: HLPackageSelected\x0a\x09\x09send: #onPackageSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLPackagesFocusRequested \x0a\x09\x09send: #onPackagesFocusRequested\x0a\x09\x09to: self",
  3375. messageSends: ["on:send:to:", "announcer", "model"],
  3376. referencedClasses: ["HLPackageSelected", "HLPackagesFocusRequested"]
  3377. }),
  3378. globals.HLPackagesListWidget);
  3379. smalltalk.addMethod(
  3380. smalltalk.method({
  3381. selector: "observeSystem",
  3382. protocol: 'actions',
  3383. fn: function () {
  3384. var self=this;
  3385. function $ClassAdded(){return globals.ClassAdded||(typeof ClassAdded=="undefined"?nil:ClassAdded)}
  3386. function $PackageAdded(){return globals.PackageAdded||(typeof PackageAdded=="undefined"?nil:PackageAdded)}
  3387. return smalltalk.withContext(function($ctx1) {
  3388. var $2,$1;
  3389. $2=self._model();
  3390. $ctx1.sendIdx["model"]=1;
  3391. $1=_st($2)._systemAnnouncer();
  3392. $ctx1.sendIdx["systemAnnouncer"]=1;
  3393. _st($1)._on_send_to_($ClassAdded(),"onClassAdded:",self);
  3394. $ctx1.sendIdx["on:send:to:"]=1;
  3395. _st(_st(self._model())._systemAnnouncer())._on_send_to_($PackageAdded(),"onPackageAdded:",self);
  3396. return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},globals.HLPackagesListWidget)});},
  3397. args: [],
  3398. source: "observeSystem\x0a self model systemAnnouncer \x0a\x09\x09on: ClassAdded \x0a\x09\x09send: #onClassAdded:\x0a\x09\x09to: self.\x0a\x09\x09\x0a\x09self model systemAnnouncer\x0a\x09\x09on: PackageAdded\x0a\x09\x09send: #onPackageAdded:\x0a\x09\x09to: self",
  3399. messageSends: ["on:send:to:", "systemAnnouncer", "model"],
  3400. referencedClasses: ["ClassAdded", "PackageAdded"]
  3401. }),
  3402. globals.HLPackagesListWidget);
  3403. smalltalk.addMethod(
  3404. smalltalk.method({
  3405. selector: "onClassAdded:",
  3406. protocol: 'reactions',
  3407. fn: function (anAnnouncement) {
  3408. var self=this;
  3409. return smalltalk.withContext(function($ctx1) {
  3410. var $1,$2;
  3411. $1=_st(self._items())._includes_(_st(_st(anAnnouncement)._theClass())._package());
  3412. if(! smalltalk.assert($1)){
  3413. self._initializeItems();
  3414. $2=self._refresh();
  3415. $2;
  3416. };
  3417. return self}, function($ctx1) {$ctx1.fill(self,"onClassAdded:",{anAnnouncement:anAnnouncement},globals.HLPackagesListWidget)});},
  3418. args: ["anAnnouncement"],
  3419. source: "onClassAdded: anAnnouncement\x0a\x09\x22Amber doesn't have yet a global organizer for packages\x22\x0a\x09\x0a\x09(self items includes: anAnnouncement theClass package) ifFalse: [ \x0a\x09\x09self \x0a\x09\x09\x09initializeItems;\x0a\x09\x09\x09refresh ]",
  3420. messageSends: ["ifFalse:", "includes:", "items", "package", "theClass", "initializeItems", "refresh"],
  3421. referencedClasses: []
  3422. }),
  3423. globals.HLPackagesListWidget);
  3424. smalltalk.addMethod(
  3425. smalltalk.method({
  3426. selector: "onPackageAdded:",
  3427. protocol: 'reactions',
  3428. fn: function (anAnnouncement) {
  3429. var self=this;
  3430. return smalltalk.withContext(function($ctx1) {
  3431. var $1;
  3432. self._initializeItems();
  3433. $1=self._refresh();
  3434. return self}, function($ctx1) {$ctx1.fill(self,"onPackageAdded:",{anAnnouncement:anAnnouncement},globals.HLPackagesListWidget)});},
  3435. args: ["anAnnouncement"],
  3436. source: "onPackageAdded: anAnnouncement\x0a\x09self \x0a\x09\x09initializeItems;\x0a\x09\x09refresh",
  3437. messageSends: ["initializeItems", "refresh"],
  3438. referencedClasses: []
  3439. }),
  3440. globals.HLPackagesListWidget);
  3441. smalltalk.addMethod(
  3442. smalltalk.method({
  3443. selector: "onPackageSelected:",
  3444. protocol: 'reactions',
  3445. fn: function (anAnnouncement) {
  3446. var self=this;
  3447. var package_;
  3448. return smalltalk.withContext(function($ctx1) {
  3449. var $1,$2;
  3450. package_=_st(anAnnouncement)._item();
  3451. self._selectedItem_(package_);
  3452. $1=self._hasFocus();
  3453. if(! smalltalk.assert($1)){
  3454. self._activateItem_(package_);
  3455. $2=self._focus();
  3456. $2;
  3457. };
  3458. return self}, function($ctx1) {$ctx1.fill(self,"onPackageSelected:",{anAnnouncement:anAnnouncement,package_:package_},globals.HLPackagesListWidget)});},
  3459. args: ["anAnnouncement"],
  3460. source: "onPackageSelected: anAnnouncement\x0a\x09| package |\x0a\x09\x0a\x09package := anAnnouncement item.\x0a\x09\x0a\x09self selectedItem: package.\x0a\x09self hasFocus ifFalse: [\x0a\x09\x09self\x0a\x09\x09\x09activateItem: package;\x0a\x09\x09\x09focus ]",
  3461. messageSends: ["item", "selectedItem:", "ifFalse:", "hasFocus", "activateItem:", "focus"],
  3462. referencedClasses: []
  3463. }),
  3464. globals.HLPackagesListWidget);
  3465. smalltalk.addMethod(
  3466. smalltalk.method({
  3467. selector: "onPackagesFocusRequested",
  3468. protocol: 'reactions',
  3469. fn: function () {
  3470. var self=this;
  3471. return smalltalk.withContext(function($ctx1) {
  3472. self._focus();
  3473. return self}, function($ctx1) {$ctx1.fill(self,"onPackagesFocusRequested",{},globals.HLPackagesListWidget)});},
  3474. args: [],
  3475. source: "onPackagesFocusRequested\x0a\x09self focus",
  3476. messageSends: ["focus"],
  3477. referencedClasses: []
  3478. }),
  3479. globals.HLPackagesListWidget);
  3480. smalltalk.addMethod(
  3481. smalltalk.method({
  3482. selector: "renderItemLabel:on:",
  3483. protocol: 'rendering',
  3484. fn: function (aPackage, html) {
  3485. var self=this;
  3486. return smalltalk.withContext(function($ctx1) {
  3487. _st(html)._with_(_st(aPackage)._name());
  3488. return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{aPackage:aPackage,html:html},globals.HLPackagesListWidget)});},
  3489. args: ["aPackage", "html"],
  3490. source: "renderItemLabel: aPackage on: html\x0a\x09html with: aPackage name",
  3491. messageSends: ["with:", "name"],
  3492. referencedClasses: []
  3493. }),
  3494. globals.HLPackagesListWidget);
  3495. smalltalk.addMethod(
  3496. smalltalk.method({
  3497. selector: "reselectItem:",
  3498. protocol: 'actions',
  3499. fn: function (anItem) {
  3500. var self=this;
  3501. return smalltalk.withContext(function($ctx1) {
  3502. _st(self._model())._forceSelectedPackage_(anItem);
  3503. return self}, function($ctx1) {$ctx1.fill(self,"reselectItem:",{anItem:anItem},globals.HLPackagesListWidget)});},
  3504. args: ["anItem"],
  3505. source: "reselectItem: anItem\x0a\x09self model forceSelectedPackage: anItem",
  3506. messageSends: ["forceSelectedPackage:", "model"],
  3507. referencedClasses: []
  3508. }),
  3509. globals.HLPackagesListWidget);
  3510. smalltalk.addMethod(
  3511. smalltalk.method({
  3512. selector: "selectItem:",
  3513. protocol: 'actions',
  3514. fn: function (aPackage) {
  3515. var self=this;
  3516. return smalltalk.withContext(function($ctx1) {
  3517. globals.HLPackagesListWidget.superclass.fn.prototype._selectItem_.apply(_st(self), [aPackage]);
  3518. _st(self._model())._selectedPackage_(aPackage);
  3519. return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aPackage:aPackage},globals.HLPackagesListWidget)});},
  3520. args: ["aPackage"],
  3521. source: "selectItem: aPackage\x0a\x09super selectItem: aPackage.\x0a\x09self model selectedPackage: aPackage",
  3522. messageSends: ["selectItem:", "selectedPackage:", "model"],
  3523. referencedClasses: []
  3524. }),
  3525. globals.HLPackagesListWidget);
  3526. smalltalk.addClass('HLProtocolsListWidget', globals.HLToolListWidget, [], 'Helios-Browser');
  3527. globals.HLProtocolsListWidget.comment="I render a list of protocols for the selected class.";
  3528. smalltalk.addMethod(
  3529. smalltalk.method({
  3530. selector: "allProtocol",
  3531. protocol: 'accessing',
  3532. fn: function () {
  3533. var self=this;
  3534. return smalltalk.withContext(function($ctx1) {
  3535. var $1;
  3536. $1=_st(self._model())._allProtocol();
  3537. return $1;
  3538. }, function($ctx1) {$ctx1.fill(self,"allProtocol",{},globals.HLProtocolsListWidget)});},
  3539. args: [],
  3540. source: "allProtocol\x0a\x09^ self model allProtocol",
  3541. messageSends: ["allProtocol", "model"],
  3542. referencedClasses: []
  3543. }),
  3544. globals.HLProtocolsListWidget);
  3545. smalltalk.addMethod(
  3546. smalltalk.method({
  3547. selector: "cssClassForItem:",
  3548. protocol: 'accessing',
  3549. fn: function (anItem) {
  3550. var self=this;
  3551. return smalltalk.withContext(function($ctx1) {
  3552. var $1,$2,$3,$4;
  3553. $1=_st(anItem).__eq(self._allProtocol());
  3554. $ctx1.sendIdx["="]=1;
  3555. if(smalltalk.assert($1)){
  3556. return "";
  3557. };
  3558. $2=_st(anItem).__eq("private");
  3559. $ctx1.sendIdx["="]=2;
  3560. if(smalltalk.assert($2)){
  3561. return "private";
  3562. };
  3563. $3=_st(anItem).__eq("initialization");
  3564. if(smalltalk.assert($3)){
  3565. return "initialization";
  3566. };
  3567. $4=_st(anItem)._match_("^\x5c*");
  3568. if(smalltalk.assert($4)){
  3569. return "extension";
  3570. };
  3571. return "";
  3572. }, function($ctx1) {$ctx1.fill(self,"cssClassForItem:",{anItem:anItem},globals.HLProtocolsListWidget)});},
  3573. args: ["anItem"],
  3574. source: "cssClassForItem: anItem\x0a\x09anItem = self allProtocol ifTrue: [ ^ '' ].\x0a\x09anItem = 'private' ifTrue: [ ^ 'private' ].\x0a\x09anItem = 'initialization' ifTrue: [ ^ 'initialization' ].\x0a\x09(anItem match: '^\x5c*') ifTrue: [ ^ 'extension' ].\x0a\x09^ ''",
  3575. messageSends: ["ifTrue:", "=", "allProtocol", "match:"],
  3576. referencedClasses: []
  3577. }),
  3578. globals.HLProtocolsListWidget);
  3579. smalltalk.addMethod(
  3580. smalltalk.method({
  3581. selector: "label",
  3582. protocol: 'accessing',
  3583. fn: function () {
  3584. var self=this;
  3585. return "Protocols";
  3586. },
  3587. args: [],
  3588. source: "label\x0a\x09^ 'Protocols'",
  3589. messageSends: [],
  3590. referencedClasses: []
  3591. }),
  3592. globals.HLProtocolsListWidget);
  3593. smalltalk.addMethod(
  3594. smalltalk.method({
  3595. selector: "observeModel",
  3596. protocol: 'actions',
  3597. fn: function () {
  3598. var self=this;
  3599. function $HLClassSelected(){return globals.HLClassSelected||(typeof HLClassSelected=="undefined"?nil:HLClassSelected)}
  3600. function $HLShowInstanceToggled(){return globals.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
  3601. function $HLProtocolSelected(){return globals.HLProtocolSelected||(typeof HLProtocolSelected=="undefined"?nil:HLProtocolSelected)}
  3602. function $HLProtocolsFocusRequested(){return globals.HLProtocolsFocusRequested||(typeof HLProtocolsFocusRequested=="undefined"?nil:HLProtocolsFocusRequested)}
  3603. return smalltalk.withContext(function($ctx1) {
  3604. var $1,$2;
  3605. $1=_st(self._model())._announcer();
  3606. _st($1)._on_send_to_($HLClassSelected(),"onClassSelected:",self);
  3607. $ctx1.sendIdx["on:send:to:"]=1;
  3608. _st($1)._on_send_to_($HLShowInstanceToggled(),"onClassSelected:",self);
  3609. $ctx1.sendIdx["on:send:to:"]=2;
  3610. _st($1)._on_send_to_($HLProtocolSelected(),"onProtocolSelected:",self);
  3611. $ctx1.sendIdx["on:send:to:"]=3;
  3612. $2=_st($1)._on_send_to_($HLProtocolsFocusRequested(),"onProtocolsFocusRequested",self);
  3613. return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},globals.HLProtocolsListWidget)});},
  3614. args: [],
  3615. source: "observeModel\x0a self model announcer \x0a\x09\x09on: HLClassSelected\x0a\x09\x09send: #onClassSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a \x09on: HLShowInstanceToggled \x0a\x09\x09send: #onClassSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a \x09on: HLProtocolSelected\x0a\x09\x09send: #onProtocolSelected:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: HLProtocolsFocusRequested \x0a\x09\x09send: #onProtocolsFocusRequested\x0a\x09\x09to: self",
  3616. messageSends: ["on:send:to:", "announcer", "model"],
  3617. referencedClasses: ["HLClassSelected", "HLShowInstanceToggled", "HLProtocolSelected", "HLProtocolsFocusRequested"]
  3618. }),
  3619. globals.HLProtocolsListWidget);
  3620. smalltalk.addMethod(
  3621. smalltalk.method({
  3622. selector: "observeSystem",
  3623. protocol: 'actions',
  3624. fn: function () {
  3625. var self=this;
  3626. function $ProtocolAdded(){return globals.ProtocolAdded||(typeof ProtocolAdded=="undefined"?nil:ProtocolAdded)}
  3627. function $ProtocolRemoved(){return globals.ProtocolRemoved||(typeof ProtocolRemoved=="undefined"?nil:ProtocolRemoved)}
  3628. return smalltalk.withContext(function($ctx1) {
  3629. var $1,$2;
  3630. $1=_st(self._model())._systemAnnouncer();
  3631. _st($1)._on_send_to_($ProtocolAdded(),"onProtocolAdded:",self);
  3632. $ctx1.sendIdx["on:send:to:"]=1;
  3633. $2=_st($1)._on_send_to_($ProtocolRemoved(),"onProtocolRemoved:",self);
  3634. return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},globals.HLProtocolsListWidget)});},
  3635. args: [],
  3636. source: "observeSystem\x0a\x09self model systemAnnouncer\x0a\x09\x09on: ProtocolAdded \x0a\x09\x09send: #onProtocolAdded:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: ProtocolRemoved\x0a\x09\x09send: #onProtocolRemoved:\x0a\x09\x09to: self",
  3637. messageSends: ["on:send:to:", "systemAnnouncer", "model"],
  3638. referencedClasses: ["ProtocolAdded", "ProtocolRemoved"]
  3639. }),
  3640. globals.HLProtocolsListWidget);
  3641. smalltalk.addMethod(
  3642. smalltalk.method({
  3643. selector: "onClassSelected:",
  3644. protocol: 'reactions',
  3645. fn: function (anAnnouncement) {
  3646. var self=this;
  3647. return smalltalk.withContext(function($ctx1) {
  3648. self._selectedItem_(nil);
  3649. self._setItemsForSelectedClass();
  3650. self._refresh();
  3651. return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{anAnnouncement:anAnnouncement},globals.HLProtocolsListWidget)});},
  3652. args: ["anAnnouncement"],
  3653. source: "onClassSelected: anAnnouncement\x0a self selectedItem: nil.\x0a \x0a self setItemsForSelectedClass.\x0a self refresh",
  3654. messageSends: ["selectedItem:", "setItemsForSelectedClass", "refresh"],
  3655. referencedClasses: []
  3656. }),
  3657. globals.HLProtocolsListWidget);
  3658. smalltalk.addMethod(
  3659. smalltalk.method({
  3660. selector: "onProtocolAdded:",
  3661. protocol: 'reactions',
  3662. fn: function (anAnnouncement) {
  3663. var self=this;
  3664. var class_;
  3665. return smalltalk.withContext(function($ctx1) {
  3666. var $1;
  3667. class_=_st(anAnnouncement)._theClass();
  3668. $1=_st(class_).__eq(_st(self._model())._selectedClass());
  3669. if(! smalltalk.assert($1)){
  3670. return self;
  3671. };
  3672. self._setItemsForSelectedClass();
  3673. self._refresh();
  3674. return self}, function($ctx1) {$ctx1.fill(self,"onProtocolAdded:",{anAnnouncement:anAnnouncement,class_:class_},globals.HLProtocolsListWidget)});},
  3675. args: ["anAnnouncement"],
  3676. source: "onProtocolAdded: anAnnouncement\x0a\x09| class |\x0a\x09\x0a\x09class := anAnnouncement theClass.\x0a\x09\x0a\x09class = self model selectedClass ifFalse: [ ^ self ].\x0a \x0a self setItemsForSelectedClass.\x0a self refresh",
  3677. messageSends: ["theClass", "ifFalse:", "=", "selectedClass", "model", "setItemsForSelectedClass", "refresh"],
  3678. referencedClasses: []
  3679. }),
  3680. globals.HLProtocolsListWidget);
  3681. smalltalk.addMethod(
  3682. smalltalk.method({
  3683. selector: "onProtocolRemoved:",
  3684. protocol: 'reactions',
  3685. fn: function (anAnnouncement) {
  3686. var self=this;
  3687. var class_,protocol;
  3688. return smalltalk.withContext(function($ctx1) {
  3689. var $2,$4,$3,$1,$5,$6;
  3690. class_=_st(anAnnouncement)._theClass();
  3691. protocol=_st(anAnnouncement)._protocol();
  3692. $2=class_;
  3693. $4=self._model();
  3694. $ctx1.sendIdx["model"]=1;
  3695. $3=_st($4)._selectedClass();
  3696. $1=_st($2).__eq($3);
  3697. $ctx1.sendIdx["="]=1;
  3698. if(! smalltalk.assert($1)){
  3699. return self;
  3700. };
  3701. $5=_st(_st(self._model())._selectedProtocol()).__eq(protocol);
  3702. if(smalltalk.assert($5)){
  3703. self._selectedItem_(nil);
  3704. $6=self._selectItem_(nil);
  3705. $6;
  3706. };
  3707. self._setItemsForSelectedClass();
  3708. self._refresh();
  3709. return self}, function($ctx1) {$ctx1.fill(self,"onProtocolRemoved:",{anAnnouncement:anAnnouncement,class_:class_,protocol:protocol},globals.HLProtocolsListWidget)});},
  3710. args: ["anAnnouncement"],
  3711. source: "onProtocolRemoved: anAnnouncement\x0a\x09| class protocol |\x0a\x09\x0a\x09class := anAnnouncement theClass.\x0a\x09protocol := anAnnouncement protocol.\x0a\x09\x0a\x09class = self model selectedClass ifFalse: [ ^ self ].\x0a \x0a self model selectedProtocol = protocol \x0a \x09ifTrue: [ \x0a\x09\x09\x09self \x0a\x09\x09\x09\x09selectedItem: nil;\x0a\x09\x09\x09\x09selectItem: nil ].\x0a \x0a self setItemsForSelectedClass.\x0a self refresh",
  3712. messageSends: ["theClass", "protocol", "ifFalse:", "=", "selectedClass", "model", "ifTrue:", "selectedProtocol", "selectedItem:", "selectItem:", "setItemsForSelectedClass", "refresh"],
  3713. referencedClasses: []
  3714. }),
  3715. globals.HLProtocolsListWidget);
  3716. smalltalk.addMethod(
  3717. smalltalk.method({
  3718. selector: "onProtocolSelected:",
  3719. protocol: 'reactions',
  3720. fn: function (anAnnouncement) {
  3721. var self=this;
  3722. var protocol;
  3723. return smalltalk.withContext(function($ctx1) {
  3724. var $1,$2,$3;
  3725. protocol=_st(anAnnouncement)._item();
  3726. self._selectedItem_(protocol);
  3727. $1=protocol;
  3728. if(($receiver = $1) == nil || $receiver == null){
  3729. return self;
  3730. } else {
  3731. $1;
  3732. };
  3733. $2=self._hasFocus();
  3734. if(! smalltalk.assert($2)){
  3735. self._activateItem_(protocol);
  3736. $3=self._focus();
  3737. $3;
  3738. };
  3739. return self}, function($ctx1) {$ctx1.fill(self,"onProtocolSelected:",{anAnnouncement:anAnnouncement,protocol:protocol},globals.HLProtocolsListWidget)});},
  3740. args: ["anAnnouncement"],
  3741. source: "onProtocolSelected: anAnnouncement\x0a\x09| protocol |\x0a\x09\x0a\x09protocol := anAnnouncement item.\x0a\x09\x0a\x09self selectedItem: protocol.\x0a\x09protocol ifNil: [ ^ self ].\x0a \x0a\x09self hasFocus ifFalse: [\x0a\x09\x09self \x0a\x09\x09\x09activateItem: protocol;\x0a\x09\x09\x09focus ]",
  3742. messageSends: ["item", "selectedItem:", "ifNil:", "ifFalse:", "hasFocus", "activateItem:", "focus"],
  3743. referencedClasses: []
  3744. }),
  3745. globals.HLProtocolsListWidget);
  3746. smalltalk.addMethod(
  3747. smalltalk.method({
  3748. selector: "onProtocolsFocusRequested",
  3749. protocol: 'reactions',
  3750. fn: function () {
  3751. var self=this;
  3752. return smalltalk.withContext(function($ctx1) {
  3753. self._focus();
  3754. return self}, function($ctx1) {$ctx1.fill(self,"onProtocolsFocusRequested",{},globals.HLProtocolsListWidget)});},
  3755. args: [],
  3756. source: "onProtocolsFocusRequested\x0a\x09self focus",
  3757. messageSends: ["focus"],
  3758. referencedClasses: []
  3759. }),
  3760. globals.HLProtocolsListWidget);
  3761. smalltalk.addMethod(
  3762. smalltalk.method({
  3763. selector: "renderContentOn:",
  3764. protocol: 'rendering',
  3765. fn: function (html) {
  3766. var self=this;
  3767. return smalltalk.withContext(function($ctx1) {
  3768. var $1,$2,$3;
  3769. $1=_st(self._model())._showInstance();
  3770. if(smalltalk.assert($1)){
  3771. globals.HLProtocolsListWidget.superclass.fn.prototype._renderContentOn_.apply(_st(self), [html]);
  3772. } else {
  3773. $2=_st(html)._div();
  3774. _st($2)._class_("class_side");
  3775. $3=_st($2)._with_((function(){
  3776. return smalltalk.withContext(function($ctx2) {
  3777. return globals.HLProtocolsListWidget.superclass.fn.prototype._renderContentOn_.apply(_st(self), [html]);
  3778. $ctx2.sendIdx["renderContentOn:"]=1;
  3779. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  3780. $3;
  3781. };
  3782. return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},globals.HLProtocolsListWidget)});},
  3783. args: ["html"],
  3784. source: "renderContentOn: html\x0a\x09self model showInstance\x0a \x09ifFalse: [ html div \x0a \x09class: 'class_side'; \x0a with: [ super renderContentOn: html ] ]\x0a \x09ifTrue: [ super renderContentOn: html ]",
  3785. messageSends: ["ifFalse:ifTrue:", "showInstance", "model", "class:", "div", "with:", "renderContentOn:"],
  3786. referencedClasses: []
  3787. }),
  3788. globals.HLProtocolsListWidget);
  3789. smalltalk.addMethod(
  3790. smalltalk.method({
  3791. selector: "reselectItem:",
  3792. protocol: 'actions',
  3793. fn: function (anItem) {
  3794. var self=this;
  3795. return smalltalk.withContext(function($ctx1) {
  3796. _st(self._model())._forceSelectedProtocol_(anItem);
  3797. return self}, function($ctx1) {$ctx1.fill(self,"reselectItem:",{anItem:anItem},globals.HLProtocolsListWidget)});},
  3798. args: ["anItem"],
  3799. source: "reselectItem: anItem\x0a\x09self model forceSelectedProtocol: anItem",
  3800. messageSends: ["forceSelectedProtocol:", "model"],
  3801. referencedClasses: []
  3802. }),
  3803. globals.HLProtocolsListWidget);
  3804. smalltalk.addMethod(
  3805. smalltalk.method({
  3806. selector: "selectItem:",
  3807. protocol: 'actions',
  3808. fn: function (aString) {
  3809. var self=this;
  3810. return smalltalk.withContext(function($ctx1) {
  3811. _st(self._model())._selectedProtocol_(aString);
  3812. return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aString:aString},globals.HLProtocolsListWidget)});},
  3813. args: ["aString"],
  3814. source: "selectItem: aString\x0a self model selectedProtocol: aString",
  3815. messageSends: ["selectedProtocol:", "model"],
  3816. referencedClasses: []
  3817. }),
  3818. globals.HLProtocolsListWidget);
  3819. smalltalk.addMethod(
  3820. smalltalk.method({
  3821. selector: "selectedItem",
  3822. protocol: 'accessing',
  3823. fn: function () {
  3824. var self=this;
  3825. return smalltalk.withContext(function($ctx1) {
  3826. var $1;
  3827. $1=globals.HLProtocolsListWidget.superclass.fn.prototype._selectedItem.apply(_st(self), []);
  3828. return $1;
  3829. }, function($ctx1) {$ctx1.fill(self,"selectedItem",{},globals.HLProtocolsListWidget)});},
  3830. args: [],
  3831. source: "selectedItem\x0a\x09^ super selectedItem\x22 ifNil: [ self allProtocol ]\x22",
  3832. messageSends: ["selectedItem"],
  3833. referencedClasses: []
  3834. }),
  3835. globals.HLProtocolsListWidget);
  3836. smalltalk.addMethod(
  3837. smalltalk.method({
  3838. selector: "setItemsForClass:",
  3839. protocol: 'private',
  3840. fn: function (aClass) {
  3841. var self=this;
  3842. function $Array(){return globals.Array||(typeof Array=="undefined"?nil:Array)}
  3843. return smalltalk.withContext(function($ctx1) {
  3844. var $2,$3,$4,$1;
  3845. if(($receiver = aClass) == nil || $receiver == null){
  3846. $2=self._allProtocol();
  3847. $ctx1.sendIdx["allProtocol"]=1;
  3848. $1=_st($Array())._with_($2);
  3849. $ctx1.sendIdx["with:"]=1;
  3850. } else {
  3851. $3=_st($Array())._with_(self._allProtocol());
  3852. _st($3)._addAll_(_st(aClass)._protocols());
  3853. $4=_st($3)._yourself();
  3854. $1=$4;
  3855. };
  3856. self._items_($1);
  3857. return self}, function($ctx1) {$ctx1.fill(self,"setItemsForClass:",{aClass:aClass},globals.HLProtocolsListWidget)});},
  3858. args: ["aClass"],
  3859. source: "setItemsForClass: aClass\x0a\x09self items: (aClass\x0a \x09ifNil: [ Array with: self allProtocol ]\x0a \x09ifNotNil: [ \x0a \x09(Array with: self allProtocol) \x0a \x09addAll: aClass protocols; \x0a yourself ])",
  3860. messageSends: ["items:", "ifNil:ifNotNil:", "with:", "allProtocol", "addAll:", "protocols", "yourself"],
  3861. referencedClasses: ["Array"]
  3862. }),
  3863. globals.HLProtocolsListWidget);
  3864. smalltalk.addMethod(
  3865. smalltalk.method({
  3866. selector: "setItemsForSelectedClass",
  3867. protocol: 'private',
  3868. fn: function () {
  3869. var self=this;
  3870. return smalltalk.withContext(function($ctx1) {
  3871. self._setItemsForClass_(_st(self._model())._selectedClass());
  3872. return self}, function($ctx1) {$ctx1.fill(self,"setItemsForSelectedClass",{},globals.HLProtocolsListWidget)});},
  3873. args: [],
  3874. source: "setItemsForSelectedClass\x0a\x09self setItemsForClass: self model selectedClass",
  3875. messageSends: ["setItemsForClass:", "selectedClass", "model"],
  3876. referencedClasses: []
  3877. }),
  3878. globals.HLProtocolsListWidget);
  3879. smalltalk.addClass('HLSelectorsCache', globals.Object, ['classesCache'], 'Helios-Browser');
  3880. smalltalk.addMethod(
  3881. smalltalk.method({
  3882. selector: "cacheFor:",
  3883. protocol: 'accessing',
  3884. fn: function (aClass) {
  3885. var self=this;
  3886. return smalltalk.withContext(function($ctx1) {
  3887. var $1;
  3888. if(($receiver = aClass) == nil || $receiver == null){
  3889. return nil;
  3890. } else {
  3891. aClass;
  3892. };
  3893. $1=_st(self._classesCache())._at_ifAbsentPut_(_st(aClass)._name(),(function(){
  3894. return smalltalk.withContext(function($ctx2) {
  3895. return self._newCacheFor_(aClass);
  3896. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
  3897. return $1;
  3898. }, function($ctx1) {$ctx1.fill(self,"cacheFor:",{aClass:aClass},globals.HLSelectorsCache)});},
  3899. args: ["aClass"],
  3900. source: "cacheFor: aClass\x0a\x09aClass ifNil: [ ^ nil ].\x0a \x0a\x09^ self classesCache\x0a \x09at: aClass name\x0a ifAbsentPut: [ self newCacheFor: aClass ]",
  3901. messageSends: ["ifNil:", "at:ifAbsentPut:", "classesCache", "name", "newCacheFor:"],
  3902. referencedClasses: []
  3903. }),
  3904. globals.HLSelectorsCache);
  3905. smalltalk.addMethod(
  3906. smalltalk.method({
  3907. selector: "classesCache",
  3908. protocol: 'accessing',
  3909. fn: function () {
  3910. var self=this;
  3911. function $HashedCollection(){return globals.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
  3912. return smalltalk.withContext(function($ctx1) {
  3913. var $2,$1;
  3914. $2=self["@classesCache"];
  3915. if(($receiver = $2) == nil || $receiver == null){
  3916. self["@classesCache"]=_st($HashedCollection())._new();
  3917. $1=self["@classesCache"];
  3918. } else {
  3919. $1=$2;
  3920. };
  3921. return $1;
  3922. }, function($ctx1) {$ctx1.fill(self,"classesCache",{},globals.HLSelectorsCache)});},
  3923. args: [],
  3924. source: "classesCache\x0a\x09^ classesCache ifNil: [ classesCache := HashedCollection new ]",
  3925. messageSends: ["ifNil:", "new"],
  3926. referencedClasses: ["HashedCollection"]
  3927. }),
  3928. globals.HLSelectorsCache);
  3929. smalltalk.addMethod(
  3930. smalltalk.method({
  3931. selector: "initialize",
  3932. protocol: 'initialization',
  3933. fn: function () {
  3934. var self=this;
  3935. return smalltalk.withContext(function($ctx1) {
  3936. globals.HLSelectorsCache.superclass.fn.prototype._initialize.apply(_st(self), []);
  3937. self._observeSystem();
  3938. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLSelectorsCache)});},
  3939. args: [],
  3940. source: "initialize\x0a\x09super initialize.\x0a self observeSystem",
  3941. messageSends: ["initialize", "observeSystem"],
  3942. referencedClasses: []
  3943. }),
  3944. globals.HLSelectorsCache);
  3945. smalltalk.addMethod(
  3946. smalltalk.method({
  3947. selector: "invalidateCacheFor:",
  3948. protocol: 'private',
  3949. fn: function (aMethod) {
  3950. var self=this;
  3951. return smalltalk.withContext(function($ctx1) {
  3952. _st(self._cacheFor_(_st(aMethod)._methodClass()))._invalidateSelector_(_st(aMethod)._selector());
  3953. return self}, function($ctx1) {$ctx1.fill(self,"invalidateCacheFor:",{aMethod:aMethod},globals.HLSelectorsCache)});},
  3954. args: ["aMethod"],
  3955. source: "invalidateCacheFor: aMethod\x0a\x09(self cacheFor: aMethod methodClass)\x0a \x09invalidateSelector: aMethod selector",
  3956. messageSends: ["invalidateSelector:", "cacheFor:", "methodClass", "selector"],
  3957. referencedClasses: []
  3958. }),
  3959. globals.HLSelectorsCache);
  3960. smalltalk.addMethod(
  3961. smalltalk.method({
  3962. selector: "isOverridden:",
  3963. protocol: 'testing',
  3964. fn: function (aMethod) {
  3965. var self=this;
  3966. return smalltalk.withContext(function($ctx1) {
  3967. var $1;
  3968. $1=_st(self._cacheFor_(_st(aMethod)._methodClass()))._isOverridden_(aMethod);
  3969. return $1;
  3970. }, function($ctx1) {$ctx1.fill(self,"isOverridden:",{aMethod:aMethod},globals.HLSelectorsCache)});},
  3971. args: ["aMethod"],
  3972. source: "isOverridden: aMethod\x0a\x09^ (self cacheFor: aMethod methodClass)\x0a \x09isOverridden: aMethod",
  3973. messageSends: ["isOverridden:", "cacheFor:", "methodClass"],
  3974. referencedClasses: []
  3975. }),
  3976. globals.HLSelectorsCache);
  3977. smalltalk.addMethod(
  3978. smalltalk.method({
  3979. selector: "isOverride:",
  3980. protocol: 'testing',
  3981. fn: function (aMethod) {
  3982. var self=this;
  3983. return smalltalk.withContext(function($ctx1) {
  3984. var $1;
  3985. $1=_st(self._cacheFor_(_st(aMethod)._methodClass()))._isOverride_(aMethod);
  3986. return $1;
  3987. }, function($ctx1) {$ctx1.fill(self,"isOverride:",{aMethod:aMethod},globals.HLSelectorsCache)});},
  3988. args: ["aMethod"],
  3989. source: "isOverride: aMethod\x0a\x09^ (self cacheFor: aMethod methodClass)\x0a \x09isOverride: aMethod",
  3990. messageSends: ["isOverride:", "cacheFor:", "methodClass"],
  3991. referencedClasses: []
  3992. }),
  3993. globals.HLSelectorsCache);
  3994. smalltalk.addMethod(
  3995. smalltalk.method({
  3996. selector: "newCacheFor:",
  3997. protocol: 'factory',
  3998. fn: function (aClass) {
  3999. var self=this;
  4000. function $HLClassCache(){return globals.HLClassCache||(typeof HLClassCache=="undefined"?nil:HLClassCache)}
  4001. return smalltalk.withContext(function($ctx1) {
  4002. var $1;
  4003. $1=_st($HLClassCache())._on_selectorsCache_(aClass,self);
  4004. return $1;
  4005. }, function($ctx1) {$ctx1.fill(self,"newCacheFor:",{aClass:aClass},globals.HLSelectorsCache)});},
  4006. args: ["aClass"],
  4007. source: "newCacheFor: aClass\x0a\x09^ HLClassCache \x0a \x09on: aClass\x0a selectorsCache: self",
  4008. messageSends: ["on:selectorsCache:"],
  4009. referencedClasses: ["HLClassCache"]
  4010. }),
  4011. globals.HLSelectorsCache);
  4012. smalltalk.addMethod(
  4013. smalltalk.method({
  4014. selector: "observeSystem",
  4015. protocol: 'actions',
  4016. fn: function () {
  4017. var self=this;
  4018. function $SystemAnnouncer(){return globals.SystemAnnouncer||(typeof SystemAnnouncer=="undefined"?nil:SystemAnnouncer)}
  4019. function $MethodAdded(){return globals.MethodAdded||(typeof MethodAdded=="undefined"?nil:MethodAdded)}
  4020. function $MethodRemoved(){return globals.MethodRemoved||(typeof MethodRemoved=="undefined"?nil:MethodRemoved)}
  4021. return smalltalk.withContext(function($ctx1) {
  4022. var $1,$2;
  4023. $1=_st($SystemAnnouncer())._current();
  4024. _st($1)._on_send_to_($MethodAdded(),"onMethodAdded:",self);
  4025. $ctx1.sendIdx["on:send:to:"]=1;
  4026. $2=_st($1)._on_send_to_($MethodRemoved(),"onMethodRemoved:",self);
  4027. return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},globals.HLSelectorsCache)});},
  4028. args: [],
  4029. source: "observeSystem\x0a\x09SystemAnnouncer current\x0a\x09\x09on: MethodAdded\x0a\x09\x09send: #onMethodAdded:\x0a\x09\x09to: self;\x0a\x09\x09\x0a\x09\x09on: MethodRemoved\x0a send: #onMethodRemoved:\x0a\x09\x09to: self",
  4030. messageSends: ["on:send:to:", "current"],
  4031. referencedClasses: ["SystemAnnouncer", "MethodAdded", "MethodRemoved"]
  4032. }),
  4033. globals.HLSelectorsCache);
  4034. smalltalk.addMethod(
  4035. smalltalk.method({
  4036. selector: "onMethodAdded:",
  4037. protocol: 'reactions',
  4038. fn: function (anAnnouncement) {
  4039. var self=this;
  4040. return smalltalk.withContext(function($ctx1) {
  4041. self._invalidateCacheFor_(_st(anAnnouncement)._method());
  4042. return self}, function($ctx1) {$ctx1.fill(self,"onMethodAdded:",{anAnnouncement:anAnnouncement},globals.HLSelectorsCache)});},
  4043. args: ["anAnnouncement"],
  4044. source: "onMethodAdded: anAnnouncement\x0a\x09self invalidateCacheFor: anAnnouncement method",
  4045. messageSends: ["invalidateCacheFor:", "method"],
  4046. referencedClasses: []
  4047. }),
  4048. globals.HLSelectorsCache);
  4049. smalltalk.addMethod(
  4050. smalltalk.method({
  4051. selector: "onMethodRemoved:",
  4052. protocol: 'reactions',
  4053. fn: function (anAnnouncement) {
  4054. var self=this;
  4055. return smalltalk.withContext(function($ctx1) {
  4056. self._invalidateCacheFor_(_st(anAnnouncement)._method());
  4057. return self}, function($ctx1) {$ctx1.fill(self,"onMethodRemoved:",{anAnnouncement:anAnnouncement},globals.HLSelectorsCache)});},
  4058. args: ["anAnnouncement"],
  4059. source: "onMethodRemoved: anAnnouncement\x0a\x09self invalidateCacheFor: anAnnouncement method",
  4060. messageSends: ["invalidateCacheFor:", "method"],
  4061. referencedClasses: []
  4062. }),
  4063. globals.HLSelectorsCache);
  4064. globals.HLSelectorsCache.klass.iVarNames = ['current'];
  4065. smalltalk.addMethod(
  4066. smalltalk.method({
  4067. selector: "current",
  4068. protocol: 'accessing',
  4069. fn: function () {
  4070. var self=this;
  4071. return smalltalk.withContext(function($ctx1) {
  4072. var $2,$1;
  4073. $2=self["@current"];
  4074. if(($receiver = $2) == nil || $receiver == null){
  4075. self["@current"]=globals.HLSelectorsCache.klass.superclass.fn.prototype._new.apply(_st(self), []);
  4076. $1=self["@current"];
  4077. } else {
  4078. $1=$2;
  4079. };
  4080. return $1;
  4081. }, function($ctx1) {$ctx1.fill(self,"current",{},globals.HLSelectorsCache.klass)});},
  4082. args: [],
  4083. source: "current\x0a\x09^ current ifNil: [ current := super new ]",
  4084. messageSends: ["ifNil:", "new"],
  4085. referencedClasses: []
  4086. }),
  4087. globals.HLSelectorsCache.klass);
  4088. smalltalk.addMethod(
  4089. smalltalk.method({
  4090. selector: "flush",
  4091. protocol: 'accessing',
  4092. fn: function () {
  4093. var self=this;
  4094. self["@current"]=nil;
  4095. return self;},
  4096. args: [],
  4097. source: "flush\x0a\x09current := nil",
  4098. messageSends: [],
  4099. referencedClasses: []
  4100. }),
  4101. globals.HLSelectorsCache.klass);
  4102. smalltalk.addMethod(
  4103. smalltalk.method({
  4104. selector: "new",
  4105. protocol: 'instance creation',
  4106. fn: function () {
  4107. var self=this;
  4108. return smalltalk.withContext(function($ctx1) {
  4109. self._shouldNotImplement();
  4110. return self}, function($ctx1) {$ctx1.fill(self,"new",{},globals.HLSelectorsCache.klass)});},
  4111. args: [],
  4112. source: "new\x0a\x09self shouldNotImplement",
  4113. messageSends: ["shouldNotImplement"],
  4114. referencedClasses: []
  4115. }),
  4116. globals.HLSelectorsCache.klass);
  4117. });