| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777 | smalltalk.addPackage('Helios-Browser');smalltalk.addClass('HLBrowser', smalltalk.HLWidget, ['model', 'packagesListWidget', 'classesListWidget', 'protocolsListWidget', 'methodsListWidget', 'sourceWidget'], 'Helios-Browser');smalltalk.addMethod("_announcer",smalltalk.method({selector: "announcer",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._model())._announcer();return $1;}, function($ctx1) {$ctx1.fill(self,"announcer",{}, smalltalk.HLBrowser)})},args: [],source: "announcer\x0a\x09^ self model announcer",messageSends: ["announcer", "model"],referencedClasses: []}),smalltalk.HLBrowser);smalltalk.addMethod("_classesListWidget",smalltalk.method({selector: "classesListWidget",category: 'widgets',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@classesListWidget"];if(($receiver = $2) == nil || $receiver == undefined){self["@classesListWidget"]=_st((smalltalk.HLClassesListWidget || HLClassesListWidget))._on_(_st(self)._model());self["@classesListWidget"];$1=_st(self["@classesListWidget"])._next_(_st(self)._protocolsListWidget());} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"classesListWidget",{}, smalltalk.HLBrowser)})},args: [],source: "classesListWidget\x0a\x09^ classesListWidget ifNil: [\x0a      \x09classesListWidget := HLClassesListWidget on: self model.\x0a\x09\x09classesListWidget next: self protocolsListWidget ]",messageSends: ["ifNil:", "on:", "model", "next:", "protocolsListWidget"],referencedClasses: ["HLClassesListWidget"]}),smalltalk.HLBrowser);smalltalk.addMethod("_environment",smalltalk.method({selector: "environment",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._model())._environment();return $1;}, function($ctx1) {$ctx1.fill(self,"environment",{}, smalltalk.HLBrowser)})},args: [],source: "environment\x0a\x09^ self model environment",messageSends: ["environment", "model"],referencedClasses: []}),smalltalk.HLBrowser);smalltalk.addMethod("_methodsListWidget",smalltalk.method({selector: "methodsListWidget",category: 'widgets',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@methodsListWidget"];if(($receiver = $2) == nil || $receiver == undefined){self["@methodsListWidget"]=_st((smalltalk.HLMethodsListWidget || HLMethodsListWidget))._on_(_st(self)._model());$1=self["@methodsListWidget"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"methodsListWidget",{}, smalltalk.HLBrowser)})},args: [],source: "methodsListWidget\x0a\x09^ methodsListWidget ifNil: [\x0a      \x09methodsListWidget := HLMethodsListWidget on: self model ]",messageSends: ["ifNil:", "on:", "model"],referencedClasses: ["HLMethodsListWidget"]}),smalltalk.HLBrowser);smalltalk.addMethod("_model",smalltalk.method({selector: "model",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@model"];if(($receiver = $2) == nil || $receiver == undefined){self["@model"]=_st((smalltalk.HLBrowserModel || HLBrowserModel))._new();$1=self["@model"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"model",{}, smalltalk.HLBrowser)})},args: [],source: "model\x0a\x09^ model ifNil: [ model := HLBrowserModel new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["HLBrowserModel"]}),smalltalk.HLBrowser);smalltalk.addMethod("_model_",smalltalk.method({selector: "model:",category: 'accessing',fn: function (aModel){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@model"]=aModel;return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel}, smalltalk.HLBrowser)})},args: ["aModel"],source: "model: aModel\x0a\x09model := aModel",messageSends: [],referencedClasses: []}),smalltalk.HLBrowser);smalltalk.addMethod("_packagesListWidget",smalltalk.method({selector: "packagesListWidget",category: 'widgets',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@packagesListWidget"];if(($receiver = $2) == nil || $receiver == undefined){self["@packagesListWidget"]=_st((smalltalk.HLPackagesListWidget || HLPackagesListWidget))._on_(_st(self)._model());self["@packagesListWidget"];$1=_st(self["@packagesListWidget"])._next_(_st(self)._classesListWidget());} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"packagesListWidget",{}, smalltalk.HLBrowser)})},args: [],source: "packagesListWidget\x0a\x09^ packagesListWidget ifNil: [\x0a      \x09packagesListWidget := HLPackagesListWidget on: self model.\x0a\x09\x09packagesListWidget next: self classesListWidget ]",messageSends: ["ifNil:", "on:", "model", "next:", "classesListWidget"],referencedClasses: ["HLPackagesListWidget"]}),smalltalk.HLBrowser);smalltalk.addMethod("_protocolsListWidget",smalltalk.method({selector: "protocolsListWidget",category: 'widgets',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@protocolsListWidget"];if(($receiver = $2) == nil || $receiver == undefined){self["@protocolsListWidget"]=_st((smalltalk.HLProtocolsListWidget || HLProtocolsListWidget))._on_(_st(self)._model());self["@protocolsListWidget"];$1=_st(self["@protocolsListWidget"])._next_(_st(self)._methodsListWidget());} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"protocolsListWidget",{}, smalltalk.HLBrowser)})},args: [],source: "protocolsListWidget\x0a\x09^ protocolsListWidget ifNil: [\x0a      \x09protocolsListWidget := HLProtocolsListWidget on: self model.\x0a\x09\x09protocolsListWidget next: self methodsListWidget ]",messageSends: ["ifNil:", "on:", "model", "next:", "methodsListWidget"],referencedClasses: ["HLProtocolsListWidget"]}),smalltalk.HLBrowser);smalltalk.addMethod("_registerBindingsOn_",smalltalk.method({selector: "registerBindingsOn:",category: 'keybindings',fn: function (aBindingGroup){var self=this;return smalltalk.withContext(function($ctx1) { 
_st((smalltalk.HLBrowserCommand || HLBrowserCommand))._registerConcreteClassesOn_for_(aBindingGroup,_st(self)._model());return self}, function($ctx1) {$ctx1.fill(self,"registerBindingsOn:",{aBindingGroup:aBindingGroup},smalltalk.HLBrowser)})},args: ["aBindingGroup"],source: "registerBindingsOn: aBindingGroup\x0a\x09HLBrowserCommand registerConcreteClassesOn: aBindingGroup for: self model\x0a\x09\x0a\x09\x22aBindingGroup \x0a    \x09addGroupKey: 66 labelled: 'Browse';\x0a        addGroupKey: 71 labelled: 'Go to';\x0a        addGroupKey: 84 labelled: 'Toggle';\x0a\x09\x09addGroupKey: 77 labelled: 'Move'.\x0a\x09\x09\x09\x0a\x09(aBindingGroup at: 'Move')\x0a\x09\x09addGroupKey: 77 labelled: 'Method';\x0a\x09\x09addGroupKey: 67 labelled: 'Class';\x0a\x09\x09addGroupKey: 80 labelled: 'Protocol'.\x0a        \x0a\x09HLMoveMethodToCommand concreteClasses do: [ :each |\x0a  \x09\x09\x09(aBindingGroup at: 'Move') \x0a\x09\x09\x09\x09at: each bindingGroup \x0a  \x09\x09\x09\x09add: (each on: self model) asBinding ].\x0a\x09\x09\x09\x0a   \x09HLBrowserCommand concreteClasses do: [ :each |\x0a  \x09\x09\x09aBindingGroup \x0a\x09\x09\x09\x09at: each bindingGroup\x0a  \x09\x09\x09\x09add: (each on: self model) asBinding ]\x22",messageSends: ["registerConcreteClassesOn:for:", "model"],referencedClasses: ["HLBrowserCommand"]}),smalltalk.HLBrowser);smalltalk.addMethod("_renderContentOn_",smalltalk.method({selector: "renderContentOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(html)._with_(_st((smalltalk.HLContainer || HLContainer))._with_(_st((smalltalk.HLHorizontalSplitter || HLHorizontalSplitter))._with_with_(_st((smalltalk.HLVerticalSplitter || HLVerticalSplitter))._with_with_(_st((smalltalk.HLVerticalSplitter || HLVerticalSplitter))._with_with_(_st(self)._packagesListWidget(),_st(self)._classesListWidget()),_st((smalltalk.HLVerticalSplitter || HLVerticalSplitter))._with_with_(_st(self)._protocolsListWidget(),_st(self)._methodsListWidget())),_st(self)._sourceWidget())));_st(_st(self)._packagesListWidget())._focus();return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.HLBrowser)})},args: ["html"],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",messageSends: ["with:", "with:with:", "packagesListWidget", "classesListWidget", "protocolsListWidget", "methodsListWidget", "sourceWidget", "focus"],referencedClasses: ["HLVerticalSplitter", "HLHorizontalSplitter", "HLContainer"]}),smalltalk.HLBrowser);smalltalk.addMethod("_sourceWidget",smalltalk.method({selector: "sourceWidget",category: 'widgets',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@sourceWidget"];if(($receiver = $2) == nil || $receiver == undefined){self["@sourceWidget"]=_st((smalltalk.HLBrowserSourceWidget || HLBrowserSourceWidget))._on_(_st(self)._model());$1=self["@sourceWidget"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"sourceWidget",{}, smalltalk.HLBrowser)})},args: [],source: "sourceWidget\x0a\x09^ sourceWidget ifNil: [\x0a      \x09sourceWidget := HLBrowserSourceWidget on: self model ]",messageSends: ["ifNil:", "on:", "model"],referencedClasses: ["HLBrowserSourceWidget"]}),smalltalk.HLBrowser);smalltalk.HLBrowser.klass.iVarNames = ['nextId'];smalltalk.addMethod("_canBeOpenAsTab",smalltalk.method({selector: "canBeOpenAsTab",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
return true;}, function($ctx1) {$ctx1.fill(self,"canBeOpenAsTab",{}, smalltalk.HLBrowser.klass)})},args: [],source: "canBeOpenAsTab\x0a\x09^ true",messageSends: [],referencedClasses: []}),smalltalk.HLBrowser.klass);smalltalk.addMethod("_nextId",smalltalk.method({selector: "nextId",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=self["@nextId"];if(($receiver = $1) == nil || $receiver == undefined){self["@nextId"]=(0);self["@nextId"];} else {$1;};$2=_st("browser_").__comma(_st(_st(self["@nextId"]).__plus((1)))._asString());return $2;}, function($ctx1) {$ctx1.fill(self,"nextId",{}, smalltalk.HLBrowser.klass)})},args: [],source: "nextId\x0a\x09nextId ifNil: [ nextId := 0 ].\x0a    ^ 'browser_', (nextId + 1) asString",messageSends: ["ifNil:", ",", "asString", "+"],referencedClasses: []}),smalltalk.HLBrowser.klass);smalltalk.addMethod("_tabLabel",smalltalk.method({selector: "tabLabel",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
return "Browser";}, function($ctx1) {$ctx1.fill(self,"tabLabel",{}, smalltalk.HLBrowser.klass)})},args: [],source: "tabLabel\x0a\x09^ 'Browser'",messageSends: [],referencedClasses: []}),smalltalk.HLBrowser.klass);smalltalk.addMethod("_tabPriority",smalltalk.method({selector: "tabPriority",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
return (0);}, function($ctx1) {$ctx1.fill(self,"tabPriority",{}, smalltalk.HLBrowser.klass)})},args: [],source: "tabPriority\x0a\x09^ 0",messageSends: [],referencedClasses: []}),smalltalk.HLBrowser.klass);smalltalk.addClass('HLBrowserListWidget', smalltalk.HLNavigationListWidget, ['model'], 'Helios-Browser');smalltalk.addMethod("_initialize",smalltalk.method({selector: "initialize",category: 'initialization',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
smalltalk.HLNavigationListWidget.fn.prototype._initialize.apply(_st(self), []);_st(self)._observeSystem();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.HLBrowserListWidget)})},args: [],source: "initialize\x0a\x09super initialize.\x0a    \x0a    self observeSystem",messageSends: ["initialize", "observeSystem"],referencedClasses: []}),smalltalk.HLBrowserListWidget);smalltalk.addMethod("_model",smalltalk.method({selector: "model",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=self["@model"];return $1;}, function($ctx1) {$ctx1.fill(self,"model",{}, smalltalk.HLBrowserListWidget)})},args: [],source: "model\x0a\x09^ model",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserListWidget);smalltalk.addMethod("_model_",smalltalk.method({selector: "model:",category: 'accessing',fn: function (aBrowserModel){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@model"]=aBrowserModel;_st(self)._observeModel();return self}, function($ctx1) {$ctx1.fill(self,"model:",{aBrowserModel:aBrowserModel}, smalltalk.HLBrowserListWidget)})},args: ["aBrowserModel"],source: "model: aBrowserModel\x0a\x09model := aBrowserModel.\x0a    \x0a    self observeModel",messageSends: ["observeModel"],referencedClasses: []}),smalltalk.HLBrowserListWidget);smalltalk.addMethod("_observeModel",smalltalk.method({selector: "observeModel",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{}, smalltalk.HLBrowserListWidget)})},args: [],source: "observeModel",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserListWidget);smalltalk.addMethod("_observeSystem",smalltalk.method({selector: "observeSystem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{}, smalltalk.HLBrowserListWidget)})},args: [],source: "observeSystem",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserListWidget);smalltalk.addMethod("_on_",smalltalk.method({selector: "on:",category: 'instance creation',fn: function (aModel){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$3,$1;$2=_st(self)._new();_st($2)._model_(aModel);$3=_st($2)._yourself();$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"on:",{aModel:aModel}, smalltalk.HLBrowserListWidget.klass)})},args: ["aModel"],source: "on: aModel\x0a\x09^ self new \x0a    \x09model: aModel;\x0a        yourself",messageSends: ["model:", "new", "yourself"],referencedClasses: []}),smalltalk.HLBrowserListWidget.klass);smalltalk.addClass('HLClassesListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Browser');smalltalk.addMethod("_focusMethodsListWidget",smalltalk.method({selector: "focusMethodsListWidget",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(_st(self)._model())._announcer())._announce_(_st((smalltalk.HLMethodsListFocus || HLMethodsListFocus))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusMethodsListWidget",{}, smalltalk.HLClassesListWidget)})},args: [],source: "focusMethodsListWidget\x0a\x09self model announcer announce: HLMethodsListFocus new",messageSends: ["announce:", "new", "announcer", "model"],referencedClasses: ["HLMethodsListFocus"]}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_focusProtocolsListWidget",smalltalk.method({selector: "focusProtocolsListWidget",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(_st(self)._model())._announcer())._announce_(_st((smalltalk.HLProtocolsListFocus || HLProtocolsListFocus))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusProtocolsListWidget",{}, smalltalk.HLClassesListWidget)})},args: [],source: "focusProtocolsListWidget\x0a\x09self model announcer announce: HLProtocolsListFocus new",messageSends: ["announce:", "new", "announcer", "model"],referencedClasses: ["HLProtocolsListFocus"]}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_getChildrenOf_",smalltalk.method({selector: "getChildrenOf:",category: 'accessing',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._items())._select_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(_st(each)._superclass()).__eq(aClass);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"getChildrenOf:",{aClass:aClass}, smalltalk.HLClassesListWidget)})},args: ["aClass"],source: "getChildrenOf: aClass\x0a\x09^ self items select: [ :each | each superclass = aClass ]",messageSends: ["select:", "=", "superclass", "items"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_getRootClassesOf_",smalltalk.method({selector: "getRootClassesOf:",category: 'accessing',fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(aCollection)._select_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(_st(aCollection)._includes_(_st(each)._superclass()))._not();}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"getRootClassesOf:",{aCollection:aCollection}, smalltalk.HLClassesListWidget)})},args: ["aCollection"],source: "getRootClassesOf: aCollection\x0a\x09^ aCollection select: [ :each |\x0a    \x09\x09(aCollection includes: each superclass) not ]",messageSends: ["select:", "not", "includes:", "superclass"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_iconForItem_",smalltalk.method({selector: "iconForItem:",category: 'accessing',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=_st(_st(_st(aClass)._theNonMetaClass())._comment())._isEmpty();if(smalltalk.assert($2)){$1="icon-question-sign";} else {$1="icon-none";};return $1;}, function($ctx1) {$ctx1.fill(self,"iconForItem:",{aClass:aClass}, smalltalk.HLClassesListWidget)})},args: ["aClass"],source: "iconForItem: aClass\x0a\x09^ aClass theNonMetaClass comment isEmpty\x0a    \x09ifFalse: [ 'icon-none' ]\x0a      \x09ifTrue: [ 'icon-question-sign' ]",messageSends: ["ifFalse:ifTrue:", "isEmpty", "comment", "theNonMetaClass"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_observeModel",smalltalk.method({selector: "observeModel",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(self)._model())._announcer();_st($1)._on_do_((smalltalk.HLPackageSelected || HLPackageSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onPackageSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLShowInstanceToggled || HLShowInstanceToggled),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onShowInstanceToggled();}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLClassSelected || HLClassSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onClassSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.HLClassesFocusRequested || HLClassesFocusRequested),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onClassesFocusRequested();}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{}, smalltalk.HLClassesListWidget)})},args: [],source: "observeModel\x0a\x09self model announcer \x0a    \x09on: HLPackageSelected do: [ :ann | self onPackageSelected: ann item ];\x0a    \x09on: HLShowInstanceToggled do: [ :ann | self onShowInstanceToggled ];\x0a\x09\x09on: HLClassSelected do: [ :ann | self onClassSelected: ann item ];\x0a\x09\x09on: HLClassesFocusRequested do: [ :ann | self onClassesFocusRequested ]",messageSends: ["on:do:", "onPackageSelected:", "item", "announcer", "model", "onShowInstanceToggled", "onClassSelected:", "onClassesFocusRequested"],referencedClasses: ["HLPackageSelected", "HLShowInstanceToggled", "HLClassSelected", "HLClassesFocusRequested"]}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_observeSystem",smalltalk.method({selector: "observeSystem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st((smalltalk.SystemAnnouncer || SystemAnnouncer))._current();_st($1)._on_do_((smalltalk.ClassAdded || ClassAdded),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onClassAdded_(_st(ann)._theClass());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.ClassRemoved || ClassRemoved),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onClassRemoved_(_st(ann)._theClass());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{}, smalltalk.HLClassesListWidget)})},args: [],source: "observeSystem\x0a\x09SystemAnnouncer current\x0a    \x09on: ClassAdded\x0a        do: [ :ann | self onClassAdded: ann theClass ];\x0a        on: ClassRemoved\x0a        do: [ :ann | self onClassRemoved: ann theClass ]",messageSends: ["on:do:", "onClassAdded:", "theClass", "current", "onClassRemoved:"],referencedClasses: ["ClassAdded", "SystemAnnouncer", "ClassRemoved"]}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_onClassAdded_",smalltalk.method({selector: "onClassAdded:",category: 'reactions',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(aClass)._package()).__eq(_st(_st(self)._model())._selectedPackage());if(! smalltalk.assert($1)){$2=self;return $2;};_st(self)._setItemsForSelectedPackage();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onClassAdded:",{aClass:aClass}, smalltalk.HLClassesListWidget)})},args: ["aClass"],source: "onClassAdded: aClass\x0a\x09aClass package = self model selectedPackage ifFalse: [ ^ self ].\x0a    \x0a    self setItemsForSelectedPackage.\x0a    self refresh",messageSends: ["ifFalse:", "=", "selectedPackage", "model", "package", "setItemsForSelectedPackage", "refresh"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_onClassRemoved_",smalltalk.method({selector: "onClassRemoved:",category: 'reactions',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3;$1=_st(_st(aClass)._package()).__eq(_st(_st(self)._model())._selectedPackage());if(! smalltalk.assert($1)){$2=self;return $2;};$3=_st(aClass).__eq(_st(_st(self)._model())._selectedClass());if(smalltalk.assert($3)){_st(self)._selectItem_(nil);};_st(self)._setItemsForSelectedPackage();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onClassRemoved:",{aClass:aClass}, smalltalk.HLClassesListWidget)})},args: ["aClass"],source: "onClassRemoved: aClass\x0a\x09aClass package = self model selectedPackage ifFalse: [ ^ self ].\x0a    aClass = self model selectedClass ifTrue: [ self selectItem: nil ].\x0a    \x0a    self setItemsForSelectedPackage.\x0a    self refresh",messageSends: ["ifFalse:", "=", "selectedPackage", "model", "package", "ifTrue:", "selectItem:", "selectedClass", "setItemsForSelectedPackage", "refresh"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_onClassSelected_",smalltalk.method({selector: "onClassSelected:",category: 'reactions',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;_st(self)._selectedItem_(aClass);$1=aClass;if(($receiver = $1) == nil || $receiver == undefined){$2=self;return $2;} else {$1;};_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{aClass:aClass}, smalltalk.HLClassesListWidget)})},args: ["aClass"],source: "onClassSelected: aClass\x0a\x09self selectedItem: aClass.\x0a\x09aClass ifNil: [ ^ self ].\x0a    \x0a    self focus",messageSends: ["selectedItem:", "ifNil:", "focus"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_onClassesFocusRequested",smalltalk.method({selector: "onClassesFocusRequested",category: 'reactions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onClassesFocusRequested",{}, smalltalk.HLClassesListWidget)})},args: [],source: "onClassesFocusRequested\x0a\x09self focus",messageSends: ["focus"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_onPackageSelected_",smalltalk.method({selector: "onPackageSelected:",category: 'reactions',fn: function (aPackage){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._selectedItem_(nil);_st(self)._setItemsForSelectedPackage();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onPackageSelected:",{aPackage:aPackage}, smalltalk.HLClassesListWidget)})},args: ["aPackage"],source: "onPackageSelected: aPackage\x0a    self selectedItem: nil.\x0a    \x0a    self setItemsForSelectedPackage.\x0a    self refresh",messageSends: ["selectedItem:", "setItemsForSelectedPackage", "refresh"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_onShowInstanceToggled",smalltalk.method({selector: "onShowInstanceToggled",category: 'reactions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onShowInstanceToggled",{}, smalltalk.HLClassesListWidget)})},args: [],source: "onShowInstanceToggled\x0a\x09self refresh",messageSends: ["refresh"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_renderButtonsOn_",smalltalk.method({selector: "renderButtonsOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$3,$4,$5,$6,$7,$8,$2,$9,$10;$1=_st(html)._div();_st($1)._class_("btn-group");_st($1)._at_put_("data-toggle","buttons-radio");$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx2) {
$3=_st(html)._button();_st($3)._class_(_st((smalltalk.String || String))._streamContents_((function(str){return smalltalk.withContext(function($ctx3) {
_st(str)._nextPutAll_("btn");$4=_st(self)._showInstance();if(smalltalk.assert($4)){return _st(str)._nextPutAll_(" active");};}, function($ctx3) {$ctx3.fillBlock({str:str},$ctx1)})})));_st($3)._with_("Instance");$5=_st($3)._onClick_((function(){return smalltalk.withContext(function($ctx3) {
return _st(self)._showInstance_(true);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));$5;$6=_st(html)._button();_st($6)._class_(_st((smalltalk.String || String))._streamContents_((function(str){return smalltalk.withContext(function($ctx3) {
_st(str)._nextPutAll_("btn");$7=_st(_st(self)._model())._showInstance();if(! smalltalk.assert($7)){return _st(str)._nextPutAll_(" active");};}, function($ctx3) {$ctx3.fillBlock({str:str},$ctx1)})})));_st($6)._with_("Class");$8=_st($6)._onClick_((function(){return smalltalk.withContext(function($ctx3) {
return _st(_st(self)._model())._showInstance_(false);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));return $8;}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$9=_st(html)._button();_st($9)._class_("btn");_st($9)._at_put_("data-toggle","button");$10=_st($9)._with_("Comment");return self}, function($ctx1) {$ctx1.fill(self,"renderButtonsOn:",{html:html}, smalltalk.HLClassesListWidget)})},args: ["html"],source: "renderButtonsOn: html\x0a\x09html div \x0a        class: 'btn-group';\x0a\x09\x09at: 'data-toggle' put: 'buttons-radio';\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 model showInstance ifFalse: [ \x0a                    \x09str nextPutAll: ' active'] ]);\x0a  \x09\x09\x09\x09with: 'Class';\x0a\x09\x09\x09\x09onClick: [ self model showInstance: false ] ].\x0a                 \x0a  \x09html button \x0a           \x09class: 'btn';\x0a            at: 'data-toggle' put: 'button';\x0a  \x09\x09\x09with: 'Comment'",messageSends: ["class:", "div", "at:put:", "with:", "streamContents:", "nextPutAll:", "ifTrue:", "showInstance", "button", "onClick:", "showInstance:", "ifFalse:", "model"],referencedClasses: ["String"]}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_renderItem_level_on_",smalltalk.method({selector: "renderItem:level:on:",category: 'rendering',fn: function (aClass,anInteger,html){var self=this;var li;return smalltalk.withContext(function($ctx1) { 
var $1,$3,$4,$2;li=_st(html)._li();$1=li;_st($1)._at_put_("list-data",_st(_st(self)._items())._indexOf_(aClass));_st($1)._class_(_st(self)._cssClassForItem_(aClass));$2=_st($1)._with_((function(){return smalltalk.withContext(function($ctx2) {
$3=_st(html)._a();_st($3)._with_((function(){return smalltalk.withContext(function($ctx3) {
_st(_st(html)._tag_("i"))._class_(_st(self)._iconForItem_(aClass));return _st(self)._renderItemLabel_level_on_(aClass,anInteger,html);}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));$4=_st($3)._onClick_((function(){return smalltalk.withContext(function($ctx3) {
return _st(self)._activateListItem_(_st(li)._asJQuery());}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));return $4;}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));_st(_st(self)._getChildrenOf_(aClass))._do_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(self)._renderItem_level_on_(each,_st(anInteger).__plus((1)),html);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderItem:level:on:",{aClass:aClass,anInteger:anInteger,html:html,li:li}, smalltalk.HLClassesListWidget)})},args: ["aClass", "anInteger", "html"],source: "renderItem: aClass level: anInteger on: html\x0a\x09| li |\x0a    \x0a\x09li := html li.\x0a    li\x0a    \x09at: 'list-data' put: (self items indexOf: aClass);\x0a    \x09class: (self cssClassForItem: aClass);\x0a        with: [ \x0a        \x09html a\x0a            \x09with: [ \x0a            \x09\x09(html tag: 'i') class: (self iconForItem: aClass).\x0a  \x09\x09\x09\x09\x09self renderItemLabel: aClass level: anInteger on: html ];\x0a\x09\x09\x09\x09onClick: [\x0a                  \x09self activateListItem: li asJQuery ] ].\x0a                    \x0a    (self getChildrenOf: aClass) do: [ :each |\x0a    \x09self renderItem: each level: anInteger + 1 on: html ]",messageSends: ["li", "at:put:", "indexOf:", "items", "class:", "cssClassForItem:", "with:", "iconForItem:", "tag:", "renderItemLabel:level:on:", "a", "onClick:", "activateListItem:", "asJQuery", "do:", "renderItem:level:on:", "+", "getChildrenOf:"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_renderItem_on_",smalltalk.method({selector: "renderItem:on:",category: 'rendering',fn: function (aClass,html){var self=this;return smalltalk.withContext(function($ctx1) { 
smalltalk.HLBrowserListWidget.fn.prototype._renderItem_on_.apply(_st(self), [aClass,html]);_st(_st(self)._getChildrenOf_(aClass))._do_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(self)._renderItem_level_on_(each,(1),html);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderItem:on:",{aClass:aClass,html:html}, smalltalk.HLClassesListWidget)})},args: ["aClass", "html"],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 ]",messageSends: ["renderItem:on:", "do:", "renderItem:level:on:", "getChildrenOf:"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_renderItemLabel_level_on_",smalltalk.method({selector: "renderItemLabel:level:on:",category: 'rendering',fn: function (aClass,anInteger,html){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(_st(html)._span())._asJQuery())._html_(_st((smalltalk.String || String))._streamContents_((function(str){return smalltalk.withContext(function($ctx2) {
_st(anInteger)._timesRepeat_((function(){return smalltalk.withContext(function($ctx3) {
return _st(str)._nextPutAll_("    ");}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));return _st(str)._nextPutAll_(_st(aClass)._name());}, function($ctx2) {$ctx2.fillBlock({str:str},$ctx1)})})));return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:level:on:",{aClass:aClass,anInteger:anInteger,html:html}, smalltalk.HLClassesListWidget)})},args: ["aClass", "anInteger", "html"],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 ])",messageSends: ["html:", "streamContents:", "timesRepeat:", "nextPutAll:", "name", "asJQuery", "span"],referencedClasses: ["String"]}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_renderItemLabel_on_",smalltalk.method({selector: "renderItemLabel:on:",category: 'rendering',fn: function (aClass,html){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._renderItemLabel_level_on_(aClass,(0),html);return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{aClass:aClass,html:html}, smalltalk.HLClassesListWidget)})},args: ["aClass", "html"],source: "renderItemLabel: aClass on: html\x0a\x09self renderItemLabel: aClass level: 0 on: html",messageSends: ["renderItemLabel:level:on:"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_renderListOn_",smalltalk.method({selector: "renderListOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._getRootClassesOf_(_st(self)._items()))._do_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(self)._renderItem_on_(each,html);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"renderListOn:",{html:html}, smalltalk.HLClassesListWidget)})},args: ["html"],source: "renderListOn: html\x0a\x09(self getRootClassesOf: self items)\x0a    \x09do: [ :each | self renderItem: each on: html ]",messageSends: ["do:", "renderItem:on:", "getRootClassesOf:", "items"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_selectItem_",smalltalk.method({selector: "selectItem:",category: 'actions',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._model())._selectedClass_(aClass);return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aClass:aClass}, smalltalk.HLClassesListWidget)})},args: ["aClass"],source: "selectItem: aClass\x0a    self model selectedClass: aClass",messageSends: ["selectedClass:", "model"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_setItemsForPackage_",smalltalk.method({selector: "setItemsForPackage:",category: 'private',fn: function (aPackage){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$3,$2;$1=self;$3=aPackage;if(($receiver = $3) == nil || $receiver == undefined){$2=[];} else {$2=_st(_st(_st(_st(_st(aPackage)._classes())._collect_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(each)._theNonMetaClass();}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._asSet())._asArray())._sort_((function(a,b){return smalltalk.withContext(function($ctx2) {
return _st(_st(a)._name()).__lt(_st(b)._name());}, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));};_st($1)._items_($2);return self}, function($ctx1) {$ctx1.fill(self,"setItemsForPackage:",{aPackage:aPackage}, smalltalk.HLClassesListWidget)})},args: ["aPackage"],source: "setItemsForPackage: aPackage\x0a\x09self items: (aPackage \x0a    \x09ifNil: [ #() ]\x0a  \x09\x09ifNotNil: [ ((aPackage classes \x0a        \x09collect: [ :each | each theNonMetaClass ]) asSet asArray) \x0a            \x09sort: [:a :b | a name < b name ] ]).",messageSends: ["items:", "ifNil:ifNotNil:", "sort:", "<", "name", "asArray", "asSet", "collect:", "theNonMetaClass", "classes"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_setItemsForSelectedPackage",smalltalk.method({selector: "setItemsForSelectedPackage",category: 'private',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._setItemsForPackage_(_st(_st(self)._model())._selectedPackage());return self}, function($ctx1) {$ctx1.fill(self,"setItemsForSelectedPackage",{}, smalltalk.HLClassesListWidget)})},args: [],source: "setItemsForSelectedPackage\x0a\x09self setItemsForPackage: self model selectedPackage",messageSends: ["setItemsForPackage:", "selectedPackage", "model"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_showInstance",smalltalk.method({selector: "showInstance",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._model())._showInstance();return $1;}, function($ctx1) {$ctx1.fill(self,"showInstance",{}, smalltalk.HLClassesListWidget)})},args: [],source: "showInstance\x0a\x09^ self model showInstance",messageSends: ["showInstance", "model"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addMethod("_showInstance_",smalltalk.method({selector: "showInstance:",category: 'actions',fn: function (aBoolean){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._model())._showInstance_(aBoolean);return self}, function($ctx1) {$ctx1.fill(self,"showInstance:",{aBoolean:aBoolean}, smalltalk.HLClassesListWidget)})},args: ["aBoolean"],source: "showInstance: aBoolean\x0a\x09self model showInstance: aBoolean",messageSends: ["showInstance:", "model"],referencedClasses: []}),smalltalk.HLClassesListWidget);smalltalk.addClass('HLMethodsListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Browser');smalltalk.addMethod("_allProtocol",smalltalk.method({selector: "allProtocol",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._model())._allProtocol();return $1;}, function($ctx1) {$ctx1.fill(self,"allProtocol",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "allProtocol\x0a\x09^ self model allProtocol",messageSends: ["allProtocol", "model"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_flushSelectorsCache",smalltalk.method({selector: "flushSelectorsCache",category: 'cache',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@selectorsCache"]=_st((smalltalk.Dictionary || Dictionary))._new();return self}, function($ctx1) {$ctx1.fill(self,"flushSelectorsCache",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "flushSelectorsCache\x0a\x09selectorsCache := Dictionary new",messageSends: ["new"],referencedClasses: ["Dictionary"]}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_iconForItem_",smalltalk.method({selector: "iconForItem:",category: 'accessing',fn: function (aSelector){var self=this;var override,overriden,method;return smalltalk.withContext(function($ctx1) { 
var $2,$3,$4,$1;method=_st(self)._methodForSelector_(aSelector);override=_st(self)._isOverride_(method);overriden=_st(self)._isOverridden_(method);$2=override;if(smalltalk.assert($2)){$3=overriden;if(smalltalk.assert($3)){$1="icon-resize-vertical";} else {$1="icon-arrow-up";};} else {$4=overriden;if(smalltalk.assert($4)){$1="icon-arrow-down";} else {$1="icon-none";};};return $1;}, function($ctx1) {$ctx1.fill(self,"iconForItem:",{aSelector:aSelector,override:override,overriden:overriden,method:method}, smalltalk.HLMethodsListWidget)})},args: ["aSelector"],source: "iconForItem: 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: [ 'icon-resize-vertical' ]\x0a\x09\x09\x09ifFalse: [ 'icon-arrow-up' ] ]\x0a\x09\x09ifFalse: [\x0a\x09\x09\x09overriden\x0a\x09\x09\x09ifTrue: [ 'icon-arrow-down' ]\x0a\x09\x09\x09ifFalse: [ 'icon-none' ] ]",messageSends: ["methodForSelector:", "isOverride:", "isOverridden:", "ifTrue:ifFalse:"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_initialize",smalltalk.method({selector: "initialize",category: 'initialization',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
smalltalk.HLBrowserListWidget.fn.prototype._initialize.apply(_st(self), []);_st(self)._flushSelectorsCache();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "initialize\x0a\x09super initialize.\x0a    self flushSelectorsCache",messageSends: ["initialize", "flushSelectorsCache"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_isOverridden_",smalltalk.method({selector: "isOverridden:",category: 'testing',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._selectorsCache())._isOverridden_(aMethod);return $1;}, function($ctx1) {$ctx1.fill(self,"isOverridden:",{aMethod:aMethod}, smalltalk.HLMethodsListWidget)})},args: ["aMethod"],source: "isOverridden: aMethod\x0a   ^ self selectorsCache isOverridden: aMethod",messageSends: ["isOverridden:", "selectorsCache"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_isOverride_",smalltalk.method({selector: "isOverride:",category: 'testing',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._selectorsCache())._isOverride_(aMethod);return $1;}, function($ctx1) {$ctx1.fill(self,"isOverride:",{aMethod:aMethod}, smalltalk.HLMethodsListWidget)})},args: ["aMethod"],source: "isOverride: aMethod\x0a   ^ self selectorsCache isOverride: aMethod",messageSends: ["isOverride:", "selectorsCache"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_methodForSelector_",smalltalk.method({selector: "methodForSelector:",category: 'accessing',fn: function (aSelector){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(_st(_st(self)._model())._selectedClass())._methodDictionary())._at_(aSelector);return $1;}, function($ctx1) {$ctx1.fill(self,"methodForSelector:",{aSelector:aSelector}, smalltalk.HLMethodsListWidget)})},args: ["aSelector"],source: "methodForSelector: aSelector\x0a\x09^ self model selectedClass\x0a    \x09methodDictionary at: aSelector",messageSends: ["at:", "methodDictionary", "selectedClass", "model"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_methodsInProtocol_",smalltalk.method({selector: "methodsInProtocol:",category: 'accessing',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$3,$2;$1=_st(_st(self)._model())._selectedClass();if(($receiver = $1) == nil || $receiver == undefined){return [];} else {$1;};$3=_st(aString).__eq(_st(self)._allProtocol());if(smalltalk.assert($3)){$2=_st(_st(_st(self)._model())._selectedClass())._methods();} else {$2=_st(_st(_st(self)._model())._selectedClass())._methodsInProtocol_(aString);};return $2;}, function($ctx1) {$ctx1.fill(self,"methodsInProtocol:",{aString:aString}, smalltalk.HLMethodsListWidget)})},args: ["aString"],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 ]",messageSends: ["ifNil:", "selectedClass", "model", "ifTrue:ifFalse:", "methods", "methodsInProtocol:", "=", "allProtocol"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_observeModel",smalltalk.method({selector: "observeModel",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(self)._model())._announcer();_st($1)._on_do_((smalltalk.HLProtocolSelected || HLProtocolSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onProtocolSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLShowInstanceToggled || HLShowInstanceToggled),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onProtocolSelected_(nil);}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLMethodSelected || HLMethodSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.HLMethodsFocusRequested || HLMethodsFocusRequested),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodsFocusRequested();}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "observeModel\x0a\x09self model announcer \x0a\x09\x09on: HLProtocolSelected \x0a\x09\x09do: [ :ann | self onProtocolSelected: ann item ];\x0a\x09\x09on: HLShowInstanceToggled \x0a\x09\x09do: [ :ann | self onProtocolSelected: nil ];\x0a\x09\x09on: HLMethodSelected \x0a\x09\x09do: [ :ann | self onMethodSelected: ann item ];\x0a\x09\x09on: HLMethodsFocusRequested \x0a\x09\x09do: [ :ann | self onMethodsFocusRequested ]",messageSends: ["on:do:", "onProtocolSelected:", "item", "announcer", "model", "onMethodSelected:", "onMethodsFocusRequested"],referencedClasses: ["HLProtocolSelected", "HLShowInstanceToggled", "HLMethodSelected", "HLMethodsFocusRequested"]}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_observeSystem",smalltalk.method({selector: "observeSystem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st((smalltalk.SystemAnnouncer || SystemAnnouncer))._current();_st($1)._on_do_((smalltalk.MethodAdded || MethodAdded),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodAdded_(_st(ann)._method());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.MethodRemoved || MethodRemoved),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodRemoved_(_st(ann)._method());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "observeSystem\x0a\x09SystemAnnouncer current \x0a    \x09on: MethodAdded \x0a        do: [ :ann | self onMethodAdded: ann method ];\x0a        on: MethodRemoved \x0a        do: [ :ann | self onMethodRemoved: ann method ]",messageSends: ["on:do:", "onMethodAdded:", "method", "current", "onMethodRemoved:"],referencedClasses: ["MethodAdded", "SystemAnnouncer", "MethodRemoved"]}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_onMethodAdded_",smalltalk.method({selector: "onMethodAdded:",category: 'reactions',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(_st(self)._model())._selectedClass()).__eq(_st(aMethod)._methodClass());if(! smalltalk.assert($1)){$2=self;return $2;};_st(self)._setItemsForSelectedProtocol();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onMethodAdded:",{aMethod:aMethod}, smalltalk.HLMethodsListWidget)})},args: ["aMethod"],source: "onMethodAdded: aMethod\x0a\x09self model selectedClass = aMethod methodClass ifFalse: [ ^ self ].\x0a    \x0a    self setItemsForSelectedProtocol.\x0a    self refresh",messageSends: ["ifFalse:", "=", "methodClass", "selectedClass", "model", "setItemsForSelectedProtocol", "refresh"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_onMethodRemoved_",smalltalk.method({selector: "onMethodRemoved:",category: 'reactions',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3;var $early={};try {_st(_st(self)._items())._detect_ifNone_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(each).__eq(_st(aMethod)._selector());}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){return smalltalk.withContext(function($ctx2) {
$1=self;throw $early=[$1];}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$2=_st(self)._selectedItem();if(($receiver = $2) == nil || $receiver == undefined){$2;} else {$3=_st(_st(_st(aMethod)._methodClass()).__eq(_st(_st(self)._model())._selectedClass()))._and_((function(){return smalltalk.withContext(function($ctx2) {
return _st(_st(aMethod)._selector()).__eq(_st(_st(self)._selectedItem())._selector());}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));if(smalltalk.assert($3)){_st(self)._selectItem_(nil);};};_st(self)._setItemsForSelectedProtocol();_st(self)._refresh();return self}catch(e) {if(e===$early)return e[0]; throw e}}, function($ctx1) {$ctx1.fill(self,"onMethodRemoved:",{aMethod:aMethod}, smalltalk.HLMethodsListWidget)})},args: ["aMethod"],source: "onMethodRemoved: aMethod\x0a\x09self items detect: [ :each | each = aMethod selector ] ifNone: [ ^ self ].\x0a\x0a    self selectedItem ifNotNil: [\x0a      \x09(aMethod methodClass = self model selectedClass and: [ aMethod selector = self selectedItem selector ])\x0a  \x09\x09\x09ifTrue: [ self selectItem: nil ] ].\x0a    self setItemsForSelectedProtocol.\x0a\x0aself refresh",messageSends: ["detect:ifNone:", "=", "selector", "items", "ifNotNil:", "ifTrue:", "selectItem:", "and:", "selectedItem", "selectedClass", "model", "methodClass", "setItemsForSelectedProtocol", "refresh"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_onMethodSelected_",smalltalk.method({selector: "onMethodSelected:",category: 'reactions',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;_st(self)._selectedItem_(aMethod);$1=aMethod;if(($receiver = $1) == nil || $receiver == undefined){$2=self;return $2;} else {$1;};_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onMethodSelected:",{aMethod:aMethod}, smalltalk.HLMethodsListWidget)})},args: ["aMethod"],source: "onMethodSelected: aMethod\x0a\x09self selectedItem: aMethod.\x0a\x09aMethod ifNil: [ ^ self ].\x0a    \x0a    self focus",messageSends: ["selectedItem:", "ifNil:", "focus"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_onMethodsFocusRequested",smalltalk.method({selector: "onMethodsFocusRequested",category: 'reactions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onMethodsFocusRequested",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "onMethodsFocusRequested\x0a\x09self focus",messageSends: ["focus"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_onProtocolSelected_",smalltalk.method({selector: "onProtocolSelected:",category: 'reactions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._selectedItem_(nil);_st(self)._setItemsForSelectedProtocol();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onProtocolSelected:",{aString:aString}, smalltalk.HLMethodsListWidget)})},args: ["aString"],source: "onProtocolSelected: aString\x0a    self selectedItem: nil.\x0a    \x0a\x09self setItemsForSelectedProtocol.\x0a    self refresh",messageSends: ["selectedItem:", "setItemsForSelectedProtocol", "refresh"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_overrideSelectors",smalltalk.method({selector: "overrideSelectors",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$3,$1;$1=_st(_st(self)._selectorsCache())._at_ifAbsentPut_("override",(function(){return smalltalk.withContext(function($ctx2) {
return _st(_st(_st(_st(self)._model())._selectedClass())._allSuperclasses())._inject_into_(_st((smalltalk.Set || Set))._new(),(function(acc,each){return smalltalk.withContext(function($ctx3) {
$2=acc;_st($2)._addAll_(_st(each)._selectors());$3=_st($2)._yourself();return $3;}, function($ctx3) {$ctx3.fillBlock({acc:acc,each:each},$ctx1)})}));}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"overrideSelectors",{}, smalltalk.HLMethodsListWidget)})},args: [],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 ] ]",messageSends: ["at:ifAbsentPut:", "inject:into:", "new", "addAll:", "selectors", "yourself", "allSuperclasses", "selectedClass", "model", "selectorsCache"],referencedClasses: ["Set"]}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_overridenSelectors",smalltalk.method({selector: "overridenSelectors",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$3,$1;$1=_st(_st(self)._selectorsCache())._at_ifAbsentPut_("overriden",(function(){return smalltalk.withContext(function($ctx2) {
return _st(_st(_st(_st(self)._model())._selectedClass())._allSubclasses())._inject_into_(_st((smalltalk.Set || Set))._new(),(function(acc,each){return smalltalk.withContext(function($ctx3) {
$2=acc;_st($2)._addAll_(_st(each)._selectors());$3=_st($2)._yourself();return $3;}, function($ctx3) {$ctx3.fillBlock({acc:acc,each:each},$ctx1)})}));}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"overridenSelectors",{}, smalltalk.HLMethodsListWidget)})},args: [],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 ] ]",messageSends: ["at:ifAbsentPut:", "inject:into:", "new", "addAll:", "selectors", "yourself", "allSubclasses", "selectedClass", "model", "selectorsCache"],referencedClasses: ["Set"]}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_renderContentOn_",smalltalk.method({selector: "renderContentOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3;$1=_st(_st(self)._model())._showInstance();if(smalltalk.assert($1)){smalltalk.HLBrowserListWidget.fn.prototype._renderContentOn_.apply(_st(self), [html]);} else {$2=_st(html)._div();_st($2)._class_("class_side");$3=_st($2)._with_((function(){return smalltalk.withContext(function($ctx2) {
return smalltalk.HLBrowserListWidget.fn.prototype._renderContentOn_.apply(_st(self), [html]);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$3;};return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html}, smalltalk.HLMethodsListWidget)})},args: ["html"],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 ]",messageSends: ["ifFalse:ifTrue:", "class:", "div", "with:", "renderContentOn:", "showInstance", "model"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_renderItemLabel_on_",smalltalk.method({selector: "renderItemLabel:on:",category: 'rendering',fn: function (aSelector,html){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(html)._with_(aSelector);return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{aSelector:aSelector,html:html}, smalltalk.HLMethodsListWidget)})},args: ["aSelector", "html"],source: "renderItemLabel: aSelector on: html\x0a\x09html with: aSelector",messageSends: ["with:"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_selectItem_",smalltalk.method({selector: "selectItem:",category: 'actions',fn: function (aSelector){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=aSelector;if(($receiver = $1) == nil || $receiver == undefined){$2=_st(_st(self)._model())._selectedMethod_(nil);return $2;} else {$1;};_st(_st(self)._model())._selectedMethod_(_st(self)._methodForSelector_(aSelector));return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aSelector:aSelector}, smalltalk.HLMethodsListWidget)})},args: ["aSelector"],source: "selectItem: aSelector\x0a\x09aSelector ifNil: [ ^ self model selectedMethod: nil ].\x0a\x0a   \x09self model selectedMethod: (self methodForSelector: aSelector)\x0a    ",messageSends: ["ifNil:", "selectedMethod:", "model", "methodForSelector:"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_selectorsCache",smalltalk.method({selector: "selectorsCache",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._class())._selectorsCache();return $1;}, function($ctx1) {$ctx1.fill(self,"selectorsCache",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "selectorsCache\x0a\x09^ self class selectorsCache",messageSends: ["selectorsCache", "class"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_selectorsInProtocol_",smalltalk.method({selector: "selectorsInProtocol:",category: 'accessing',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._methodsInProtocol_(aString))._collect_((function(each){return smalltalk.withContext(function($ctx2) {
return _st(each)._selector();}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"selectorsInProtocol:",{aString:aString}, smalltalk.HLMethodsListWidget)})},args: ["aString"],source: "selectorsInProtocol: aString\x0a\x09^ (self methodsInProtocol: aString)\x0a    \x09collect: [ :each | each selector ]",messageSends: ["collect:", "selector", "methodsInProtocol:"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_setItemsForProtocol_",smalltalk.method({selector: "setItemsForProtocol:",category: 'private',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$4,$3,$1;$2=self;$4=aString;if(($receiver = $4) == nil || $receiver == undefined){$3=[];} else {$3=_st(self)._selectorsInProtocol_(aString);};$1=_st($2)._items_($3);return $1;}, function($ctx1) {$ctx1.fill(self,"setItemsForProtocol:",{aString:aString}, smalltalk.HLMethodsListWidget)})},args: ["aString"],source: "setItemsForProtocol: aString\x0a\x09^ self items: (aString\x0a    \x09ifNil: [ #() ]\x0a      \x09ifNotNil: [ self selectorsInProtocol: aString ])",messageSends: ["items:", "ifNil:ifNotNil:", "selectorsInProtocol:"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.addMethod("_setItemsForSelectedProtocol",smalltalk.method({selector: "setItemsForSelectedProtocol",category: 'private',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._setItemsForProtocol_(_st(_st(self)._model())._selectedProtocol());return self}, function($ctx1) {$ctx1.fill(self,"setItemsForSelectedProtocol",{}, smalltalk.HLMethodsListWidget)})},args: [],source: "setItemsForSelectedProtocol\x0a\x09self setItemsForProtocol: self model selectedProtocol",messageSends: ["setItemsForProtocol:", "selectedProtocol", "model"],referencedClasses: []}),smalltalk.HLMethodsListWidget);smalltalk.HLMethodsListWidget.klass.iVarNames = ['selectorsCache'];smalltalk.addMethod("_selectorsCache",smalltalk.method({selector: "selectorsCache",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st((smalltalk.HLSelectorsCache || HLSelectorsCache))._current();return $1;}, function($ctx1) {$ctx1.fill(self,"selectorsCache",{}, smalltalk.HLMethodsListWidget.klass)})},args: [],source: "selectorsCache\x0a\x09^ HLSelectorsCache current",messageSends: ["current"],referencedClasses: ["HLSelectorsCache"]}),smalltalk.HLMethodsListWidget.klass);smalltalk.addClass('HLPackagesListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Browser');smalltalk.addMethod("_focusClassesListWidget",smalltalk.method({selector: "focusClassesListWidget",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(_st(self)._model())._announcer())._announce_(_st((smalltalk.HLClassesListFocus || HLClassesListFocus))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusClassesListWidget",{}, smalltalk.HLPackagesListWidget)})},args: [],source: "focusClassesListWidget\x0a\x09self model announcer announce: HLClassesListFocus new",messageSends: ["announce:", "new", "announcer", "model"],referencedClasses: ["HLClassesListFocus"]}),smalltalk.HLPackagesListWidget);smalltalk.addMethod("_initializeItems",smalltalk.method({selector: "initializeItems",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;self["@items"]=_st(_st(_st(self)._model())._packages())._sort_((function(a,b){return smalltalk.withContext(function($ctx2) {
return _st(_st(a)._name()).__lt(_st(b)._name());}, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));$1=self["@items"];return $1;}, function($ctx1) {$ctx1.fill(self,"initializeItems",{}, smalltalk.HLPackagesListWidget)})},args: [],source: "initializeItems\x0a\x09^ items := self model packages sort:[:a :b|\x0a\x09\x09\x09\x09\x09\x09a name < b name]",messageSends: ["sort:", "<", "name", "packages", "model"],referencedClasses: []}),smalltalk.HLPackagesListWidget);smalltalk.addMethod("_items",smalltalk.method({selector: "items",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@items"];if(($receiver = $2) == nil || $receiver == undefined){$1=_st(self)._initializeItems();} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"items",{}, smalltalk.HLPackagesListWidget)})},args: [],source: "items\x0a\x09^ items ifNil: [self initializeItems]",messageSends: ["ifNil:", "initializeItems"],referencedClasses: []}),smalltalk.HLPackagesListWidget);smalltalk.addMethod("_observeModel",smalltalk.method({selector: "observeModel",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(self)._model())._announcer();_st($1)._on_do_((smalltalk.HLPackageSelected || HLPackageSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onPackageSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.HLPackagesFocusRequested || HLPackagesFocusRequested),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onPackagesFocusRequested();}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{}, smalltalk.HLPackagesListWidget)})},args: [],source: "observeModel\x0a    self model announcer \x0a\x09\x09on: HLPackageSelected \x0a\x09\x09do: [ :ann | self onPackageSelected: ann item ];\x0a\x09\x09on: HLPackagesFocusRequested \x0a\x09\x09do: [ :ann | self onPackagesFocusRequested ]",messageSends: ["on:do:", "onPackageSelected:", "item", "announcer", "model", "onPackagesFocusRequested"],referencedClasses: ["HLPackageSelected", "HLPackagesFocusRequested"]}),smalltalk.HLPackagesListWidget);smalltalk.addMethod("_onPackageSelected_",smalltalk.method({selector: "onPackageSelected:",category: 'reactions',fn: function (aPackage){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._selectedItem_(aPackage);_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onPackageSelected:",{aPackage:aPackage}, smalltalk.HLPackagesListWidget)})},args: ["aPackage"],source: "onPackageSelected: aPackage\x0a\x09self selectedItem: aPackage.\x0a\x09self focus",messageSends: ["selectedItem:", "focus"],referencedClasses: []}),smalltalk.HLPackagesListWidget);smalltalk.addMethod("_onPackagesFocusRequested",smalltalk.method({selector: "onPackagesFocusRequested",category: 'reactions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onPackagesFocusRequested",{}, smalltalk.HLPackagesListWidget)})},args: [],source: "onPackagesFocusRequested\x0a\x09self focus",messageSends: ["focus"],referencedClasses: []}),smalltalk.HLPackagesListWidget);smalltalk.addMethod("_renderButtonsOn_",smalltalk.method({selector: "renderButtonsOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3,$5,$6,$7,$8,$4,$9,$10;$1=_st(html)._span();_st($1)._class_("info");$2=_st($1)._with_("Auto commit");$3=_st(html)._div();_st($3)._class_("btn-group switch");_st($3)._at_put_("data-toggle","buttons-radio");$4=_st($3)._with_((function(){return smalltalk.withContext(function($ctx2) {
$5=_st(html)._button();_st($5)._class_(_st((smalltalk.String || String))._streamContents_((function(str){return smalltalk.withContext(function($ctx3) {
return _st(str)._nextPutAll_("btn");}, function($ctx3) {$ctx3.fillBlock({str:str},$ctx1)})})));$6=_st($5)._with_("On");$6;$7=_st(html)._button();_st($7)._class_(_st((smalltalk.String || String))._streamContents_((function(str){return smalltalk.withContext(function($ctx3) {
return _st(str)._nextPutAll_("btn active");}, function($ctx3) {$ctx3.fillBlock({str:str},$ctx1)})})));$8=_st($7)._with_("Off");return $8;}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$9=_st(html)._a();_st($9)._class_("btn");$10=_st($9)._with_("Commit");return self}, function($ctx1) {$ctx1.fill(self,"renderButtonsOn:",{html:html}, smalltalk.HLPackagesListWidget)})},args: ["html"],source: "renderButtonsOn: html\x0a\x0a\x09html span class: 'info'; with: 'Auto commit'.\x0a\x09html div \x0a        class: 'btn-group switch';\x0a\x09\x09at: 'data-toggle' put: 'buttons-radio';\x0a\x09\x09with: [ \x0a           \x09html button \x0a                class: (String streamContents: [ :str |\x0a                \x09str nextPutAll: 'btn' ]);\x0a  \x09\x09\x09\x09with: 'On'.\x0a  \x09\x09\x09html button\x0a  \x09\x09\x09\x09class: (String streamContents: [ :str |\x0a                \x09str nextPutAll: 'btn active' ]);\x0a  \x09\x09\x09\x09with: 'Off' ].\x0a                \x0a    html a \x0a         \x09class: 'btn';\x0a\x09\x09\x09with: 'Commit'.",messageSends: ["class:", "span", "with:", "div", "at:put:", "streamContents:", "nextPutAll:", "button", "a"],referencedClasses: ["String"]}),smalltalk.HLPackagesListWidget);smalltalk.addMethod("_selectItem_",smalltalk.method({selector: "selectItem:",category: 'actions',fn: function (aPackage){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._model())._selectedPackage_(aPackage);return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aPackage:aPackage}, smalltalk.HLPackagesListWidget)})},args: ["aPackage"],source: "selectItem: aPackage\x0a\x09self model selectedPackage: aPackage",messageSends: ["selectedPackage:", "model"],referencedClasses: []}),smalltalk.HLPackagesListWidget);smalltalk.addClass('HLProtocolsListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Browser');smalltalk.addMethod("_allProtocol",smalltalk.method({selector: "allProtocol",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._model())._allProtocol();return $1;}, function($ctx1) {$ctx1.fill(self,"allProtocol",{}, smalltalk.HLProtocolsListWidget)})},args: [],source: "allProtocol\x0a\x09^ self model allProtocol",messageSends: ["allProtocol", "model"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_observeModel",smalltalk.method({selector: "observeModel",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(self)._model())._announcer();_st($1)._on_do_((smalltalk.HLClassSelected || HLClassSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onClassSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLShowInstanceToggled || HLShowInstanceToggled),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onClassSelected_(_st(_st(self)._model())._selectedClass());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLProtocolSelected || HLProtocolSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onProtocolSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.HLProtocolsFocusRequested || HLProtocolsFocusRequested),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onProtocolsFocusRequested();}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{}, smalltalk.HLProtocolsListWidget)})},args: [],source: "observeModel\x0a    self model announcer \x0a\x09\x09on: HLClassSelected \x0a\x09\x09do: [ :ann | self onClassSelected: ann item ];\x0a    \x09on: HLShowInstanceToggled \x0a\x09\x09do: [ :ann | self onClassSelected: self model selectedClass ];\x0a    \x09on: HLProtocolSelected\x0a\x09\x09do: [ :ann | self onProtocolSelected: ann item ];\x0a\x09\x09on: HLProtocolsFocusRequested \x0a\x09\x09do: [ :ann | self onProtocolsFocusRequested ]",messageSends: ["on:do:", "onClassSelected:", "item", "announcer", "model", "selectedClass", "onProtocolSelected:", "onProtocolsFocusRequested"],referencedClasses: ["HLClassSelected", "HLShowInstanceToggled", "HLProtocolSelected", "HLProtocolsFocusRequested"]}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_observeSystem",smalltalk.method({selector: "observeSystem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st((smalltalk.SystemAnnouncer || SystemAnnouncer))._current();_st($1)._on_do_((smalltalk.ProtocolAdded || ProtocolAdded),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onProtocolAdded_to_(_st(ann)._protocol(),_st(ann)._theClass());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.ProtocolRemoved || ProtocolRemoved),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onProtocolRemoved_from_(_st(ann)._protocol(),_st(ann)._theClass());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{}, smalltalk.HLProtocolsListWidget)})},args: [],source: "observeSystem\x0a    SystemAnnouncer current\x0a    \x09on: ProtocolAdded \x0a        do: [ :ann | self onProtocolAdded: ann protocol to: ann theClass ];\x0a        on: ProtocolRemoved\x0a        do: [ :ann | self onProtocolRemoved: ann protocol from: ann theClass ]",messageSends: ["on:do:", "onProtocolAdded:to:", "protocol", "theClass", "current", "onProtocolRemoved:from:"],referencedClasses: ["ProtocolAdded", "SystemAnnouncer", "ProtocolRemoved"]}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_onClassSelected_",smalltalk.method({selector: "onClassSelected:",category: 'reactions',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._selectedItem_(nil);_st(self)._setItemsForSelectedClass();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{aClass:aClass}, smalltalk.HLProtocolsListWidget)})},args: ["aClass"],source: "onClassSelected: aClass\x0a    self selectedItem: nil.\x0a    \x0a    self setItemsForSelectedClass.\x0a    self refresh",messageSends: ["selectedItem:", "setItemsForSelectedClass", "refresh"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_onProtocolAdded_to_",smalltalk.method({selector: "onProtocolAdded:to:",category: 'reactions',fn: function (aString,aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(aClass).__eq(_st(_st(self)._model())._selectedClass());if(! smalltalk.assert($1)){$2=self;return $2;};_st(self)._setItemsForSelectedClass();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onProtocolAdded:to:",{aString:aString,aClass:aClass}, smalltalk.HLProtocolsListWidget)})},args: ["aString", "aClass"],source: "onProtocolAdded: aString to: aClass\x0a\x09aClass = self model selectedClass ifFalse: [ ^ self ].\x0a    \x0a    self setItemsForSelectedClass.\x0a    self refresh",messageSends: ["ifFalse:", "=", "selectedClass", "model", "setItemsForSelectedClass", "refresh"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_onProtocolRemoved_from_",smalltalk.method({selector: "onProtocolRemoved:from:",category: 'reactions',fn: function (aString,aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3;$1=_st(aClass).__eq(_st(_st(self)._model())._selectedClass());if(! smalltalk.assert($1)){$2=self;return $2;};$3=_st(_st(_st(self)._model())._selectedProtocol()).__eq(aString);if(smalltalk.assert($3)){_st(self)._selectItem_(nil);};_st(self)._setItemsForSelectedClass();_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onProtocolRemoved:from:",{aString:aString,aClass:aClass}, smalltalk.HLProtocolsListWidget)})},args: ["aString", "aClass"],source: "onProtocolRemoved: aString from: aClass\x0a\x09aClass = self model selectedClass ifFalse: [ ^ self ].\x0a    \x0a    self model selectedProtocol = aString \x0a    \x09ifTrue: [ self selectItem: nil ].\x0a        \x0a    self setItemsForSelectedClass.\x0a    self refresh",messageSends: ["ifFalse:", "=", "selectedClass", "model", "ifTrue:", "selectItem:", "selectedProtocol", "setItemsForSelectedClass", "refresh"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_onProtocolSelected_",smalltalk.method({selector: "onProtocolSelected:",category: 'reactions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;_st(self)._selectedItem_(aString);$1=aString;if(($receiver = $1) == nil || $receiver == undefined){$2=self;return $2;} else {$1;};_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onProtocolSelected:",{aString:aString}, smalltalk.HLProtocolsListWidget)})},args: ["aString"],source: "onProtocolSelected: aString\x0a\x09self selectedItem: aString.\x0a\x09aString ifNil: [ ^ self ].\x0a    \x0a    self focus",messageSends: ["selectedItem:", "ifNil:", "focus"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_onProtocolsFocusRequested",smalltalk.method({selector: "onProtocolsFocusRequested",category: 'reactions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onProtocolsFocusRequested",{}, smalltalk.HLProtocolsListWidget)})},args: [],source: "onProtocolsFocusRequested\x0a\x09self focus",messageSends: ["focus"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_renderContentOn_",smalltalk.method({selector: "renderContentOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3;$1=_st(_st(self)._model())._showInstance();if(smalltalk.assert($1)){smalltalk.HLBrowserListWidget.fn.prototype._renderContentOn_.apply(_st(self), [html]);} else {$2=_st(html)._div();_st($2)._class_("class_side");$3=_st($2)._with_((function(){return smalltalk.withContext(function($ctx2) {
return smalltalk.HLBrowserListWidget.fn.prototype._renderContentOn_.apply(_st(self), [html]);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));$3;};return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html}, smalltalk.HLProtocolsListWidget)})},args: ["html"],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 ]",messageSends: ["ifFalse:ifTrue:", "class:", "div", "with:", "renderContentOn:", "showInstance", "model"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_selectItem_",smalltalk.method({selector: "selectItem:",category: 'actions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._model())._selectedProtocol_(aString);return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aString:aString}, smalltalk.HLProtocolsListWidget)})},args: ["aString"],source: "selectItem: aString\x0a    self model selectedProtocol: aString",messageSends: ["selectedProtocol:", "model"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_selectedItem",smalltalk.method({selector: "selectedItem",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=smalltalk.HLBrowserListWidget.fn.prototype._selectedItem.apply(_st(self), []);return $1;}, function($ctx1) {$ctx1.fill(self,"selectedItem",{}, smalltalk.HLProtocolsListWidget)})},args: [],source: "selectedItem\x0a\x09^ super selectedItem\x22 ifNil: [ self allProtocol ]\x22",messageSends: ["selectedItem"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_setItemsForClass_",smalltalk.method({selector: "setItemsForClass:",category: 'private',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$3,$4,$5,$2;$1=self;$3=aClass;if(($receiver = $3) == nil || $receiver == undefined){$2=_st((smalltalk.Array || Array))._with_(_st(self)._allProtocol());} else {$4=_st((smalltalk.Array || Array))._with_(_st(self)._allProtocol());_st($4)._addAll_(_st(aClass)._protocols());$5=_st($4)._yourself();$2=$5;};_st($1)._items_($2);return self}, function($ctx1) {$ctx1.fill(self,"setItemsForClass:",{aClass:aClass}, smalltalk.HLProtocolsListWidget)})},args: ["aClass"],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 ])",messageSends: ["items:", "ifNil:ifNotNil:", "with:", "allProtocol", "addAll:", "protocols", "yourself"],referencedClasses: ["Array"]}),smalltalk.HLProtocolsListWidget);smalltalk.addMethod("_setItemsForSelectedClass",smalltalk.method({selector: "setItemsForSelectedClass",category: 'private',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._setItemsForClass_(_st(_st(self)._model())._selectedClass());return self}, function($ctx1) {$ctx1.fill(self,"setItemsForSelectedClass",{}, smalltalk.HLProtocolsListWidget)})},args: [],source: "setItemsForSelectedClass\x0a\x09self setItemsForClass: self model selectedClass",messageSends: ["setItemsForClass:", "selectedClass", "model"],referencedClasses: []}),smalltalk.HLProtocolsListWidget);smalltalk.addClass('HLBrowserModel', smalltalk.Object, ['announcer', 'environment', 'selectedPackage', 'selectedClass', 'selectedProtocol', 'selectedSelector', 'showInstance', 'showComment'], 'Helios-Browser');smalltalk.addMethod("_addInstVarNamed_",smalltalk.method({selector: "addInstVarNamed:",category: 'actions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;_st(_st(self)._environment())._addInstVarNamed_to_(aString,_st(self)._selectedClass());$1=_st((smalltalk.HLInstVarAdded || HLInstVarAdded))._new();_st($1)._theClass_(_st(self)._selectedClass());_st($1)._variableName_(aString);$2=_st($1)._yourself();_st(_st(self)._announcer())._announce_($2);return self}, function($ctx1) {$ctx1.fill(self,"addInstVarNamed:",{aString:aString}, smalltalk.HLBrowserModel)})},args: ["aString"],source: "addInstVarNamed: aString\x0a\x09self environment addInstVarNamed: aString to: self selectedClass.\x0a\x09self announcer announce: (HLInstVarAdded new\x0a\x09\x09theClass: self selectedClass;\x0a\x09\x09variableName: aString;\x0a\x09\x09yourself)",messageSends: ["addInstVarNamed:to:", "selectedClass", "environment", "announce:", "theClass:", "new", "variableName:", "yourself", "announcer"],referencedClasses: ["HLInstVarAdded"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_allProtocol",smalltalk.method({selector: "allProtocol",category: 'defaults',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
return "-- all --";}, function($ctx1) {$ctx1.fill(self,"allProtocol",{}, smalltalk.HLBrowserModel)})},args: [],source: "allProtocol\x0a\x09^ '-- all --'",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_announcer",smalltalk.method({selector: "announcer",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@announcer"];if(($receiver = $2) == nil || $receiver == undefined){self["@announcer"]=_st((smalltalk.Announcer || Announcer))._new();$1=self["@announcer"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"announcer",{}, smalltalk.HLBrowserModel)})},args: [],source: "announcer\x0a\x09^ announcer ifNil: [ announcer := Announcer new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["Announcer"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_compilationProtocol",smalltalk.method({selector: "compilationProtocol",category: 'private',fn: function (){var self=this;var currentProtocol;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$4,$3;currentProtocol=_st(self)._selectedProtocol();$1=currentProtocol;if(($receiver = $1) == nil || $receiver == undefined){currentProtocol=_st(self)._unclassifiedProtocol();currentProtocol;} else {$1;};$2=_st(self)._selectedMethod();if(($receiver = $2) == nil || $receiver == undefined){$2;} else {currentProtocol=_st(_st(self)._selectedMethod())._protocol();currentProtocol;};$4=_st(currentProtocol).__eq(_st(self)._allProtocol());if(smalltalk.assert($4)){$3=_st(self)._unclassifiedProtocol();} else {$3=currentProtocol;};return $3;}, function($ctx1) {$ctx1.fill(self,"compilationProtocol",{currentProtocol:currentProtocol},smalltalk.HLBrowserModel)})},args: [],source: "compilationProtocol\x0a\x09| currentProtocol |\x0a\x09\x0a\x09currentProtocol := self selectedProtocol.\x0a\x09currentProtocol ifNil: [ currentProtocol := self unclassifiedProtocol ].\x0a\x09self selectedMethod ifNotNil: [ currentProtocol := self selectedMethod protocol ].\x0a\x0a\x09^ currentProtocol = self allProtocol\x0a\x09\x09ifTrue: [ self unclassifiedProtocol ]\x0a\x09\x09ifFalse: [ currentProtocol ]",messageSends: ["selectedProtocol", "ifNil:", "unclassifiedProtocol", "ifNotNil:", "protocol", "selectedMethod", "ifTrue:ifFalse:", "=", "allProtocol"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_compileClassComment_",smalltalk.method({selector: "compileClassComment:",category: 'compiling',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._environment())._compileClassComment_for_(aString,_st(self)._selectedClass());return self}, function($ctx1) {$ctx1.fill(self,"compileClassComment:",{aString:aString}, smalltalk.HLBrowserModel)})},args: ["aString"],source: "compileClassComment: aString\x0a\x09self environment \x0a\x09\x09compileClassComment: aString \x0a\x09\x09for: self selectedClass",messageSends: ["compileClassComment:for:", "selectedClass", "environment"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_compileClassDefinition_",smalltalk.method({selector: "compileClassDefinition:",category: 'compiling',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._environment())._compileClassDefinition_(aString);return self}, function($ctx1) {$ctx1.fill(self,"compileClassDefinition:",{aString:aString}, smalltalk.HLBrowserModel)})},args: ["aString"],source: "compileClassDefinition: aString\x0a\x09self environment compileClassDefinition: aString",messageSends: ["compileClassDefinition:", "environment"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_compileMethod_",smalltalk.method({selector: "compileMethod:",category: 'compiling',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._withCompileErrorHandling_((function(){return smalltalk.withContext(function($ctx2) {
return _st(_st(self)._environment())._compileMethod_for_protocol_(aString,_st(self)._selectedClass(),_st(self)._compilationProtocol());}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"compileMethod:",{aString:aString}, smalltalk.HLBrowserModel)})},args: ["aString"],source: "compileMethod: aString\x0a\x0a\x09self withCompileErrorHandling: [ self environment \x0a\x09\x09compileMethod: aString \x0a\x09\x09for: self selectedClass\x0a\x09\x09protocol: self compilationProtocol ]",messageSends: ["withCompileErrorHandling:", "compileMethod:for:protocol:", "selectedClass", "compilationProtocol", "environment"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_environment",smalltalk.method({selector: "environment",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@environment"];if(($receiver = $2) == nil || $receiver == undefined){$1=_st(_st((smalltalk.HLManager || HLManager))._current())._environment();} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"environment",{}, smalltalk.HLBrowserModel)})},args: [],source: "environment\x0a\x09^ environment ifNil: [ HLManager current environment ]",messageSends: ["ifNil:", "environment", "current"],referencedClasses: ["HLManager"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_environment_",smalltalk.method({selector: "environment:",category: 'accessing',fn: function (anEnvironment){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@environment"]=anEnvironment;return self}, function($ctx1) {$ctx1.fill(self,"environment:",{anEnvironment:anEnvironment}, smalltalk.HLBrowserModel)})},args: ["anEnvironment"],source: "environment: anEnvironment\x0a\x09environment := anEnvironment",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_focusOnClasses",smalltalk.method({selector: "focusOnClasses",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._announcer())._announce_(_st((smalltalk.HLClassesFocusRequested || HLClassesFocusRequested))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusOnClasses",{}, smalltalk.HLBrowserModel)})},args: [],source: "focusOnClasses\x0a\x09self announcer announce: HLClassesFocusRequested new",messageSends: ["announce:", "new", "announcer"],referencedClasses: ["HLClassesFocusRequested"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_focusOnMethods",smalltalk.method({selector: "focusOnMethods",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._announcer())._announce_(_st((smalltalk.HLMethodsFocusRequested || HLMethodsFocusRequested))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusOnMethods",{}, smalltalk.HLBrowserModel)})},args: [],source: "focusOnMethods\x0a\x09self announcer announce: HLMethodsFocusRequested new",messageSends: ["announce:", "new", "announcer"],referencedClasses: ["HLMethodsFocusRequested"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_focusOnPackages",smalltalk.method({selector: "focusOnPackages",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._announcer())._announce_(_st((smalltalk.HLPackagesFocusRequested || HLPackagesFocusRequested))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusOnPackages",{}, smalltalk.HLBrowserModel)})},args: [],source: "focusOnPackages\x0a\x09self announcer announce: HLPackagesFocusRequested new",messageSends: ["announce:", "new", "announcer"],referencedClasses: ["HLPackagesFocusRequested"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_focusOnProtocols",smalltalk.method({selector: "focusOnProtocols",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._announcer())._announce_(_st((smalltalk.HLProtocolsFocusRequested || HLProtocolsFocusRequested))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusOnProtocols",{}, smalltalk.HLBrowserModel)})},args: [],source: "focusOnProtocols\x0a\x09self announcer announce: HLProtocolsFocusRequested new",messageSends: ["announce:", "new", "announcer"],referencedClasses: ["HLProtocolsFocusRequested"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_focusOnSourceCode",smalltalk.method({selector: "focusOnSourceCode",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._announcer())._announce_(_st((smalltalk.HLSourceCodeFocusRequested || HLSourceCodeFocusRequested))._new());return self}, function($ctx1) {$ctx1.fill(self,"focusOnSourceCode",{}, smalltalk.HLBrowserModel)})},args: [],source: "focusOnSourceCode\x0a\x09self announcer announce: HLSourceCodeFocusRequested new",messageSends: ["announce:", "new", "announcer"],referencedClasses: ["HLSourceCodeFocusRequested"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_handleCompileError_",smalltalk.method({selector: "handleCompileError:",category: 'error handling',fn: function (anError){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st((smalltalk.HLCompileErrorRaised || HLCompileErrorRaised))._new();_st($1)._error_(anError);$2=_st($1)._yourself();_st(_st(self)._announcer())._announce_($2);return self}, function($ctx1) {$ctx1.fill(self,"handleCompileError:",{anError:anError}, smalltalk.HLBrowserModel)})},args: ["anError"],source: "handleCompileError: anError\x0a\x09self announcer announce: (HLCompileErrorRaised new\x0a\x09\x09error: anError;\x0a\x09\x09yourself)",messageSends: ["announce:", "error:", "new", "yourself", "announcer"],referencedClasses: ["HLCompileErrorRaised"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_handleParseError_",smalltalk.method({selector: "handleParseError:",category: 'error handling',fn: function (anError){var self=this;var split,line,column,messageToInsert;return smalltalk.withContext(function($ctx1) { 
var $1,$2;split=_st(_st(anError)._messageText())._tokenize_(" : ");messageToInsert=_st(split)._second();split=_st(_st(split)._first())._copyFrom_to_((21),_st(_st(split)._first())._size());split=_st(split)._tokenize_(" column ");line=_st(split)._first();column=_st(split)._second();$1=_st((smalltalk.HLParseErrorRaised || HLParseErrorRaised))._new();_st($1)._line_(_st(line)._asNumber());_st($1)._column_(_st(column)._asNumber());_st($1)._message_(messageToInsert);_st($1)._error_(anError);$2=_st($1)._yourself();_st(_st(self)._announcer())._announce_($2);return self}, function($ctx1) {$ctx1.fill(self,"handleParseError:",{anError:anError,split:split,line:line,column:column,messageToInsert:messageToInsert}, smalltalk.HLBrowserModel)})},args: ["anError"],source: "handleParseError: anError\x0a\x09| split line column messageToInsert |\x0a\x09\x0a\x09split := anError messageText tokenize: ' : '.\x0a\x09messageToInsert := split second.\x0a\x0a\x09\x2221 = 'Parse error on line ' size + 1\x22\x0a\x09split := split first copyFrom: 21 to: split first size.\x0a\x09\x0a\x09split := split tokenize: ' column '.\x0a\x09line := split first.\x0a\x09column := split second.\x0a\x09\x0a\x09self announcer announce: (HLParseErrorRaised new\x0a\x09\x09line: line asNumber;\x0a\x09\x09column: column asNumber;\x0a\x09\x09message: messageToInsert;\x0a\x09\x09error: anError;\x0a\x09\x09yourself)",messageSends: ["tokenize:", "messageText", "second", "copyFrom:to:", "size", "first", "announce:", "line:", "asNumber", "new", "column:", "message:", "error:", "yourself", "announcer"],referencedClasses: ["HLParseErrorRaised"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_handleUnkownVariableError_",smalltalk.method({selector: "handleUnkownVariableError:",category: 'error handling',fn: function (anError){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st((smalltalk.HLUnknownVariableErrorRaised || HLUnknownVariableErrorRaised))._new();_st($1)._error_(anError);$2=_st($1)._yourself();_st(_st(self)._announcer())._announce_($2);return self}, function($ctx1) {$ctx1.fill(self,"handleUnkownVariableError:",{anError:anError}, smalltalk.HLBrowserModel)})},args: ["anError"],source: "handleUnkownVariableError: anError\x0a\x09self announcer announce: (HLUnknownVariableErrorRaised new\x0a\x09\x09error: anError;\x0a\x09\x09yourself)",messageSends: ["announce:", "error:", "new", "yourself", "announcer"],referencedClasses: ["HLUnknownVariableErrorRaised"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_moveMethodToClass_ifAbsent_",smalltalk.method({selector: "moveMethodToClass:ifAbsent:",category: 'commands actions',fn: function (aClassName,aBlock){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._environment())._moveMethod_toClass_ifAbsent_(_st(self)._selectedMethod(),aClassName,aBlock);return self}, function($ctx1) {$ctx1.fill(self,"moveMethodToClass:ifAbsent:",{aClassName:aClassName,aBlock:aBlock},smalltalk.HLBrowserModel)})},args: ["aClassName", "aBlock"],source: "moveMethodToClass: aClassName ifAbsent: aBlock\x0a\x09self environment \x0a\x09\x09moveMethod: self selectedMethod \x0a\x09\x09toClass: aClassName \x0a\x09\x09ifAbsent: aBlock",messageSends: ["moveMethod:toClass:ifAbsent:", "selectedMethod", "environment"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_packages",smalltalk.method({selector: "packages",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._environment())._packages();return $1;}, function($ctx1) {$ctx1.fill(self,"packages",{}, smalltalk.HLBrowserModel)})},args: [],source: "packages\x0a\x09^ self environment packages",messageSends: ["packages", "environment"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_save_",smalltalk.method({selector: "save:",category: 'actions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(self)._shouldCompileClassDefinition_(aString);if(smalltalk.assert($1)){_st(self)._compileClassDefinition_(aString);} else {_st(self)._compileMethod_(aString);};return self}, function($ctx1) {$ctx1.fill(self,"save:",{aString:aString},smalltalk.HLBrowserModel)})},args: ["aString"],source: "save: aString\x0a\x09(self shouldCompileClassDefinition: aString)\x0a\x09\x09ifTrue: [ self compileClassDefinition: aString ]\x0a\x09\x09ifFalse: [ self compileMethod: aString ]",messageSends: ["ifTrue:ifFalse:", "compileClassDefinition:", "compileMethod:", "shouldCompileClassDefinition:"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_saveSourceCode",smalltalk.method({selector: "saveSourceCode",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._announcer())._announce_(_st((smalltalk.HLSaveSourceCode || HLSaveSourceCode))._new());return self}, function($ctx1) {$ctx1.fill(self,"saveSourceCode",{}, smalltalk.HLBrowserModel)})},args: [],source: "saveSourceCode\x0a\x09self announcer announce: HLSaveSourceCode new",messageSends: ["announce:", "new", "announcer"],referencedClasses: ["HLSaveSourceCode"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedClass",smalltalk.method({selector: "selectedClass",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=self["@selectedClass"];return $1;}, function($ctx1) {$ctx1.fill(self,"selectedClass",{}, smalltalk.HLBrowserModel)})},args: [],source: "selectedClass\x0a\x09^ selectedClass",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedClass_",smalltalk.method({selector: "selectedClass:",category: 'accessing',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3,$4,$5;$1=_st(self["@selectedClass"]).__eq(aClass);if(smalltalk.assert($1)){$2=aClass;if(($receiver = $2) == nil || $receiver == undefined){$3=self;return $3;} else {$2;};_st(self)._selectedProtocol_(nil);};$4=aClass;if(($receiver = $4) == nil || $receiver == undefined){self["@selectedClass"]=nil;self["@selectedClass"];} else {$5=_st(self)._showInstance();if(smalltalk.assert($5)){self["@selectedClass"]=_st(aClass)._theNonMetaClass();self["@selectedClass"];} else {self["@selectedClass"]=_st(aClass)._theMetaClass();self["@selectedClass"];};};_st(self)._selectedProtocol_(nil);_st(_st(self)._announcer())._announce_(_st((smalltalk.HLClassSelected || HLClassSelected))._on_(_st(self)._selectedClass()));return self}, function($ctx1) {$ctx1.fill(self,"selectedClass:",{aClass:aClass}, smalltalk.HLBrowserModel)})},args: ["aClass"],source: "selectedClass: aClass\x0a\x09selectedClass = aClass ifTrue: [ \x0a\x09\x09aClass ifNil: [ ^ self ].\x0a\x09\x09self selectedProtocol: nil ].\x0a    \x0a\x09aClass \x0a   \x09\x09ifNil: [ selectedClass := nil ]\x0a    \x09ifNotNil: [\x0a\x09\x09\x09self showInstance \x0a   \x09\x09\x09\x09ifTrue: [ selectedClass := aClass theNonMetaClass ]\x0a     \x09\x09\x09ifFalse: [ selectedClass := aClass theMetaClass ] ].\x0a\x09self selectedProtocol: nil.\x0a\x09self announcer announce: (HLClassSelected on: self selectedClass)",messageSends: ["ifTrue:", "ifNil:", "selectedProtocol:", "=", "ifNil:ifNotNil:", "ifTrue:ifFalse:", "theNonMetaClass", "theMetaClass", "showInstance", "announce:", "on:", "selectedClass", "announcer"],referencedClasses: ["HLClassSelected"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedMethod",smalltalk.method({selector: "selectedMethod",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=_st(self)._selectedClass();if(($receiver = $2) == nil || $receiver == undefined){$1=$2;} else {$1=_st(_st(_st(self)._selectedClass())._methodDictionary())._at_ifAbsent_(self["@selectedSelector"],(function(){return smalltalk.withContext(function($ctx2) {
return nil;}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));};return $1;}, function($ctx1) {$ctx1.fill(self,"selectedMethod",{},smalltalk.HLBrowserModel)})},args: [],source: "selectedMethod\x0a\x09^ self selectedClass ifNotNil: [ \x0a\x09\x09\x09self selectedClass methodDictionary \x0a\x09\x09\x09\x09at: selectedSelector \x0a\x09\x09\x09\x09ifAbsent: [ nil ] ]",messageSends: ["ifNotNil:", "at:ifAbsent:", "methodDictionary", "selectedClass"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedMethod_",smalltalk.method({selector: "selectedMethod:",category: 'accessing',fn: function (aCompiledMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3,$4,$5;$1=_st(self["@selectedSelector"]).__eq(aCompiledMethod);if(smalltalk.assert($1)){$2=self;return $2;};$3=aCompiledMethod;if(($receiver = $3) == nil || $receiver == undefined){self["@selectedSelector"]=nil;self["@selectedSelector"];} else {$4=_st(self["@selectedSelector"]).__eq(_st(aCompiledMethod)._selector());if(smalltalk.assert($4)){$5=self;return $5;};self["@selectedSelector"]=_st(aCompiledMethod)._selector();self["@selectedSelector"];};_st(_st(self)._announcer())._announce_(_st((smalltalk.HLMethodSelected || HLMethodSelected))._on_(aCompiledMethod));return self}, function($ctx1) {$ctx1.fill(self,"selectedMethod:",{aCompiledMethod:aCompiledMethod}, smalltalk.HLBrowserModel)})},args: ["aCompiledMethod"],source: "selectedMethod: aCompiledMethod\x0a\x09selectedSelector = aCompiledMethod ifTrue: [ ^ self ].\x0a    \x0a    aCompiledMethod\x0a    \x09ifNil: [ selectedSelector := nil ]\x0a      \x09ifNotNil: [\x0a\x09\x09\x09selectedSelector = aCompiledMethod selector ifTrue: [ ^ self ].\x0a\x09\x09\x09selectedSelector := aCompiledMethod selector ].\x0a\x0a    self announcer announce: (HLMethodSelected on: aCompiledMethod)",messageSends: ["ifTrue:", "=", "ifNil:ifNotNil:", "selector", "announce:", "on:", "announcer"],referencedClasses: ["HLMethodSelected"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedPackage",smalltalk.method({selector: "selectedPackage",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=self["@selectedPackage"];return $1;}, function($ctx1) {$ctx1.fill(self,"selectedPackage",{}, smalltalk.HLBrowserModel)})},args: [],source: "selectedPackage\x0a\x09^ selectedPackage",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedPackage_",smalltalk.method({selector: "selectedPackage:",category: 'accessing',fn: function (aPackage){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(self["@selectedPackage"]).__eq(aPackage);if(smalltalk.assert($1)){$2=self;return $2;};self["@selectedPackage"]=aPackage;_st(self)._selectedClass_(nil);_st(_st(self)._announcer())._announce_(_st((smalltalk.HLPackageSelected || HLPackageSelected))._on_(aPackage));return self}, function($ctx1) {$ctx1.fill(self,"selectedPackage:",{aPackage:aPackage}, smalltalk.HLBrowserModel)})},args: ["aPackage"],source: "selectedPackage: aPackage\x0a\x09selectedPackage = aPackage ifTrue: [ ^ self ].\x0a    \x0a\x09selectedPackage := aPackage.\x0a\x09self selectedClass: nil.\x0a    self announcer announce: (HLPackageSelected on: aPackage)",messageSends: ["ifTrue:", "=", "selectedClass:", "announce:", "on:", "announcer"],referencedClasses: ["HLPackageSelected"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedProtocol",smalltalk.method({selector: "selectedProtocol",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=self["@selectedProtocol"];return $1;}, function($ctx1) {$ctx1.fill(self,"selectedProtocol",{}, smalltalk.HLBrowserModel)})},args: [],source: "selectedProtocol\x0a\x09^ selectedProtocol",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_selectedProtocol_",smalltalk.method({selector: "selectedProtocol:",category: 'accessing',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(self["@selectedProtocol"]).__eq(aString);if(smalltalk.assert($1)){$2=self;return $2;};self["@selectedProtocol"]=aString;_st(self)._selectedMethod_(nil);_st(_st(self)._announcer())._announce_(_st((smalltalk.HLProtocolSelected || HLProtocolSelected))._on_(aString));return self}, function($ctx1) {$ctx1.fill(self,"selectedProtocol:",{aString:aString}, smalltalk.HLBrowserModel)})},args: ["aString"],source: "selectedProtocol: aString\x0a\x09selectedProtocol = aString ifTrue: [ ^ self ].\x0a    \x0a\x09selectedProtocol := aString.\x0a    self selectedMethod: nil.\x0a    self announcer announce: (HLProtocolSelected on: aString)",messageSends: ["ifTrue:", "=", "selectedMethod:", "announce:", "on:", "announcer"],referencedClasses: ["HLProtocolSelected"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_shouldCompileClassDefinition_",smalltalk.method({selector: "shouldCompileClassDefinition:",category: 'testing',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(_st(self)._selectedClass())._isNil())._or_((function(){return smalltalk.withContext(function($ctx2) {
return _st(_st(_st(aString)._first())._asUppercase()).__eq(_st(aString)._first());}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"shouldCompileClassDefinition:",{aString:aString},smalltalk.HLBrowserModel)})},args: ["aString"],source: "shouldCompileClassDefinition: aString\x0a\x09^ self selectedClass isNil or: [\x0a\x09\x09aString first asUppercase = aString first ]",messageSends: ["or:", "=", "first", "asUppercase", "isNil", "selectedClass"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_showComment",smalltalk.method({selector: "showComment",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@showComment"];if(($receiver = $2) == nil || $receiver == undefined){$1=false;} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"showComment",{}, smalltalk.HLBrowserModel)})},args: [],source: "showComment\x0a\x09^ showComment ifNil: [ false ]",messageSends: ["ifNil:"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_showComment_",smalltalk.method({selector: "showComment:",category: 'accessing',fn: function (aBoolean){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@showComment"]=aBoolean;_st(_st(self)._announcer())._announce_(_st((smalltalk.HLShowCommentToggled || HLShowCommentToggled))._new());return self}, function($ctx1) {$ctx1.fill(self,"showComment:",{aBoolean:aBoolean}, smalltalk.HLBrowserModel)})},args: ["aBoolean"],source: "showComment: aBoolean\x0a\x09showComment := aBoolean.\x0a    \x0a    self announcer announce: HLShowCommentToggled new",messageSends: ["announce:", "new", "announcer"],referencedClasses: ["HLShowCommentToggled"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_showInstance",smalltalk.method({selector: "showInstance",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@showInstance"];if(($receiver = $2) == nil || $receiver == undefined){$1=true;} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"showInstance",{}, smalltalk.HLBrowserModel)})},args: [],source: "showInstance\x0a\x09^ showInstance ifNil: [ true ]",messageSends: ["ifNil:"],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_showInstance_",smalltalk.method({selector: "showInstance:",category: 'accessing',fn: function (aBoolean){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$4,$3;self["@showInstance"]=aBoolean;$1=_st(self)._selectedClass();if(($receiver = $1) == nil || $receiver == undefined){$1;} else {$2=self;$4=aBoolean;if(smalltalk.assert($4)){$3=_st(_st(self)._selectedClass())._theNonMetaClass();} else {$3=_st(_st(self)._selectedClass())._theMetaClass();};_st($2)._selectedClass_($3);};_st(_st(self)._announcer())._announce_(_st((smalltalk.HLShowInstanceToggled || HLShowInstanceToggled))._new());return self}, function($ctx1) {$ctx1.fill(self,"showInstance:",{aBoolean:aBoolean}, smalltalk.HLBrowserModel)})},args: ["aBoolean"],source: "showInstance: aBoolean\x0a\x09showInstance := aBoolean.\x0a    \x0a    self selectedClass ifNotNil: [\x0a    \x09self selectedClass: (aBoolean\x0a    \x09\x09ifTrue: [self selectedClass theNonMetaClass ]\x0a    \x09  \x09ifFalse: [ self selectedClass theMetaClass ]) ].\x0a    \x0a    self announcer announce: HLShowInstanceToggled new",messageSends: ["ifNotNil:", "selectedClass:", "ifTrue:ifFalse:", "theNonMetaClass", "selectedClass", "theMetaClass", "announce:", "new", "announcer"],referencedClasses: ["HLShowInstanceToggled"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_unclassifiedProtocol",smalltalk.method({selector: "unclassifiedProtocol",category: 'defaults',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
return "as yet unclassified";}, function($ctx1) {$ctx1.fill(self,"unclassifiedProtocol",{}, smalltalk.HLBrowserModel)})},args: [],source: "unclassifiedProtocol\x0a\x09^ 'as yet unclassified'",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserModel);smalltalk.addMethod("_withCompileErrorHandling_",smalltalk.method({selector: "withCompileErrorHandling:",category: 'error handling',fn: function (aBlock){var self=this;return smalltalk.withContext(function($ctx1) { 
_st((function(){return smalltalk.withContext(function($ctx2) {
return _st((function(){return smalltalk.withContext(function($ctx3) {
return _st(aBlock)._on_do_((smalltalk.ParseError || ParseError),(function(ex){return smalltalk.withContext(function($ctx4) {
return _st(self)._handleParseError_(ex);}, function($ctx4) {$ctx4.fillBlock({ex:ex},$ctx1)})}));}, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._on_do_((smalltalk.UnknownVariableError || UnknownVariableError),(function(ex){return smalltalk.withContext(function($ctx3) {
return _st(self)._handleUnkownVariableError_(ex);}, function($ctx3) {$ctx3.fillBlock({ex:ex},$ctx1)})}));}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_((smalltalk.CompilerError || CompilerError),(function(ex){return smalltalk.withContext(function($ctx2) {
return _st(self)._handleCompileError_(ex);}, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"withCompileErrorHandling:",{aBlock:aBlock}, smalltalk.HLBrowserModel)})},args: ["aBlock"],source: "withCompileErrorHandling: aBlock\x0a\x09[\x0a\x09\x09[\x0a\x09\x09\x09aBlock \x0a\x09\x09\x09\x09on: ParseError\x0a\x09\x09\x09\x09do: [:ex | self handleParseError: ex ]\x0a\x09\x09]\x0a\x09\x09\x09on: UnknownVariableError\x0a\x09\x09\x09do: [ :ex | self handleUnkownVariableError: ex ]\x0a\x09]\x0a\x09\x09on: CompilerError\x0a\x09\x09do: [ :ex | self handleCompileError: ex ]",messageSends: ["on:do:", "handleCompileError:", "handleUnkownVariableError:", "handleParseError:"],referencedClasses: ["CompilerError", "UnknownVariableError", "ParseError"]}),smalltalk.HLBrowserModel);smalltalk.addMethod("_on_",smalltalk.method({selector: "on:",category: 'actions',fn: function (anEnvironment){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$3,$1;$2=_st(self)._new();_st($2)._environment_(anEnvironment);$3=_st($2)._yourself();$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"on:",{anEnvironment:anEnvironment}, smalltalk.HLBrowserModel.klass)})},args: ["anEnvironment"],source: "on: anEnvironment\x0a\x0a\x09^ self new\x0a    \x09environment: anEnvironment;\x0a        yourself",messageSends: ["environment:", "new", "yourself"],referencedClasses: []}),smalltalk.HLBrowserModel.klass);smalltalk.addClass('HLBrowserSourceWidget', smalltalk.HLWidget, ['model', 'methodContents', 'codeWidget'], 'Helios-Browser');smalltalk.addMethod("_codeWidget",smalltalk.method({selector: "codeWidget",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@codeWidget"];if(($receiver = $2) == nil || $receiver == undefined){self["@codeWidget"]=_st((smalltalk.HLSourceCodeWidget || HLSourceCodeWidget))._on_(_st(self)._model());$1=self["@codeWidget"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"codeWidget",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "codeWidget\x0a\x09^ codeWidget ifNil: [ codeWidget := HLSourceCodeWidget on: self model ]",messageSends: ["ifNil:", "on:", "model"],referencedClasses: ["HLSourceCodeWidget"]}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_contents",smalltalk.method({selector: "contents",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._codeWidget())._contents();return $1;}, function($ctx1) {$ctx1.fill(self,"contents",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "contents\x0a\x09^ self codeWidget contents",messageSends: ["contents", "codeWidget"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_contents_",smalltalk.method({selector: "contents:",category: 'accessing',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._methodContents_(aString);_st(_st(self)._codeWidget())._contents_(aString);return self}, function($ctx1) {$ctx1.fill(self,"contents:",{aString:aString}, smalltalk.HLBrowserSourceWidget)})},args: ["aString"],source: "contents: aString\x0a\x09self methodContents: aString.\x0a\x09self codeWidget contents: aString",messageSends: ["methodContents:", "contents:", "codeWidget"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_focus",smalltalk.method({selector: "focus",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._codeWidget())._focus();return self}, function($ctx1) {$ctx1.fill(self,"focus",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "focus\x0a\x09self codeWidget focus",messageSends: ["focus", "codeWidget"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_hasFocus",smalltalk.method({selector: "hasFocus",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._codeWidget())._hasFocus();return $1;}, function($ctx1) {$ctx1.fill(self,"hasFocus",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "hasFocus\x0a\x09^ self codeWidget hasFocus",messageSends: ["hasFocus", "codeWidget"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_hasModification",smalltalk.method({selector: "hasModification",category: 'testing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(_st(self)._methodContents()).__eq(_st(self)._contents()))._not();return $1;}, function($ctx1) {$ctx1.fill(self,"hasModification",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "hasModification\x0a\x09^ (self methodContents = self contents) not",messageSends: ["not", "=", "contents", "methodContents"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_initialize",smalltalk.method({selector: "initialize",category: 'initialization',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
smalltalk.HLWidget.fn.prototype._initialize.apply(_st(self), []);_st(self)._observeSystem();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "initialize\x0a\x09super initialize.\x0a    \x0a    self observeSystem",messageSends: ["initialize", "observeSystem"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_methodContents",smalltalk.method({selector: "methodContents",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@methodContents"];if(($receiver = $2) == nil || $receiver == undefined){self["@methodContents"]="";$1=self["@methodContents"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"methodContents",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "methodContents\x0a\x09^ methodContents ifNil: [ methodContents := '' ]",messageSends: ["ifNil:"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_methodContents_",smalltalk.method({selector: "methodContents:",category: 'accessing',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@methodContents"]=aString;return self}, function($ctx1) {$ctx1.fill(self,"methodContents:",{aString:aString}, smalltalk.HLBrowserSourceWidget)})},args: ["aString"],source: "methodContents: aString\x0a\x09methodContents := aString",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_model",smalltalk.method({selector: "model",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=self["@model"];return $1;}, function($ctx1) {$ctx1.fill(self,"model",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "model\x0a\x09^ model",messageSends: [],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_model_",smalltalk.method({selector: "model:",category: 'accessing',fn: function (aBrowserModel){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@model"]=aBrowserModel;_st(self)._observeModel();return self}, function($ctx1) {$ctx1.fill(self,"model:",{aBrowserModel:aBrowserModel}, smalltalk.HLBrowserSourceWidget)})},args: ["aBrowserModel"],source: "model: aBrowserModel\x0a\x09model := aBrowserModel.\x0a    \x0a    self observeModel",messageSends: ["observeModel"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_observeModel",smalltalk.method({selector: "observeModel",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(self)._model())._announcer();_st($1)._on_do_((smalltalk.HLMethodSelected || HLMethodSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLClassSelected || HLClassSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onClassSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));_st($1)._on_do_((smalltalk.HLProtocolSelected || HLProtocolSelected),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onProtocolSelected_(_st(ann)._item());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.HLSourceCodeFocusRequested || HLSourceCodeFocusRequested),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onSourceCodeFocusRequested();}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "observeModel\x0a\x09self model announcer \x0a\x09\x09on: HLMethodSelected \x0a\x09\x09do: [ :ann | self onMethodSelected: ann item ];\x0a    \x09on: HLClassSelected \x0a\x09\x09do: [ :ann | self onClassSelected: ann item ];\x0a    \x09on: HLProtocolSelected \x0a\x09\x09do: [ :ann | self onProtocolSelected: ann item ];\x0a\x09\x09on: HLSourceCodeFocusRequested \x0a\x09\x09do: [ :ann | self onSourceCodeFocusRequested ]",messageSends: ["on:do:", "onMethodSelected:", "item", "announcer", "model", "onClassSelected:", "onProtocolSelected:", "onSourceCodeFocusRequested"],referencedClasses: ["HLMethodSelected", "HLClassSelected", "HLProtocolSelected", "HLSourceCodeFocusRequested"]}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_observeSystem",smalltalk.method({selector: "observeSystem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st((smalltalk.SystemAnnouncer || SystemAnnouncer))._current())._on_do_((smalltalk.MethodModified || MethodModified),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodModified_(_st(ann)._method());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "observeSystem\x0a\x09SystemAnnouncer current\x0a    \x09on: MethodModified\x0a        do: [ :ann | self onMethodModified: ann method ]",messageSends: ["on:do:", "onMethodModified:", "method", "current"],referencedClasses: ["MethodModified", "SystemAnnouncer"]}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_onClassSelected_",smalltalk.method({selector: "onClassSelected:",category: 'reactions',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=aClass;if(($receiver = $1) == nil || $receiver == undefined){$2=_st(self)._contents_("");return $2;} else {$1;};_st(self)._contents_(_st(aClass)._definition());return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{aClass:aClass}, smalltalk.HLBrowserSourceWidget)})},args: ["aClass"],source: "onClassSelected: aClass\x0a\x09aClass ifNil: [ ^ self contents: '' ].\x0a    \x0a    self contents: aClass definition",messageSends: ["ifNil:", "contents:", "definition"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_onMethodModified_",smalltalk.method({selector: "onMethodModified:",category: 'reactions',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3,$4,$5,$6;$1=_st(_st(_st(self)._model())._selectedClass()).__eq(_st(aMethod)._methodClass());if(! smalltalk.assert($1)){$2=self;return $2;};$3=_st(_st(self)._model())._selectedMethod();if(($receiver = $3) == nil || $receiver == undefined){$4=self;return $4;} else {$3;};$5=_st(_st(_st(_st(self)._model())._selectedMethod())._selector()).__eq(_st(aMethod)._selector());if(! smalltalk.assert($5)){$6=self;return $6;};_st(self)._refresh();return self}, function($ctx1) {$ctx1.fill(self,"onMethodModified:",{aMethod:aMethod},smalltalk.HLBrowserSourceWidget)})},args: ["aMethod"],source: "onMethodModified: aMethod\x0a\x0a\x09self model selectedClass = aMethod methodClass ifFalse: [ ^ self ].\x0a\x09self model selectedMethod ifNil: [ ^ self ].\x0a    self model selectedMethod selector = aMethod selector ifFalse: [ ^ self ].\x0a\x0a    self refresh",messageSends: ["ifFalse:", "=", "methodClass", "selectedClass", "model", "ifNil:", "selectedMethod", "selector", "refresh"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_onMethodSelected_",smalltalk.method({selector: "onMethodSelected:",category: 'reactions',fn: function (aCompiledMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=aCompiledMethod;if(($receiver = $1) == nil || $receiver == undefined){$2=_st(self)._contents_("");return $2;} else {$1;};_st(self)._contents_(_st(aCompiledMethod)._source());return self}, function($ctx1) {$ctx1.fill(self,"onMethodSelected:",{aCompiledMethod:aCompiledMethod}, smalltalk.HLBrowserSourceWidget)})},args: ["aCompiledMethod"],source: "onMethodSelected: aCompiledMethod\x0a\x09aCompiledMethod ifNil: [ ^ self contents: '' ].\x0a    \x0a    self contents: aCompiledMethod source",messageSends: ["ifNil:", "contents:", "source"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_onProtocolSelected_",smalltalk.method({selector: "onProtocolSelected:",category: 'reactions',fn: function (aString){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st(_st(self)._model())._selectedClass();if(($receiver = $1) == nil || $receiver == undefined){$2=_st(self)._contents_("");return $2;} else {$1;};_st(self)._contents_(_st(_st(_st(self)._model())._selectedClass())._definition());return self}, function($ctx1) {$ctx1.fill(self,"onProtocolSelected:",{aString:aString}, smalltalk.HLBrowserSourceWidget)})},args: ["aString"],source: "onProtocolSelected: aString\x0a\x09self model selectedClass ifNil: [ ^ self contents: '' ].\x0a    \x0a    self contents: self model selectedClass definition",messageSends: ["ifNil:", "contents:", "selectedClass", "model", "definition"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_onSourceCodeFocusRequested",smalltalk.method({selector: "onSourceCodeFocusRequested",category: 'reactions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._focus();return self}, function($ctx1) {$ctx1.fill(self,"onSourceCodeFocusRequested",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "onSourceCodeFocusRequested\x0a\x09self focus",messageSends: ["focus"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_refresh",smalltalk.method({selector: "refresh",category: 'updating',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3,$4;$1=_st(self)._hasModification();if(smalltalk.assert($1)){$2=self;return $2;};$3=_st(self)._hasFocus();if(smalltalk.assert($3)){$4=self;return $4;};_st(self)._contents_(_st(_st(_st(self)._model())._selectedMethod())._source());return self}, function($ctx1) {$ctx1.fill(self,"refresh",{}, smalltalk.HLBrowserSourceWidget)})},args: [],source: "refresh\x0a\x09self hasModification ifTrue: [ ^ self ].\x0a    self hasFocus ifTrue: [ ^ self ].\x0a\x0a\x09self contents: self model selectedMethod source",messageSends: ["ifTrue:", "hasModification", "hasFocus", "contents:", "source", "selectedMethod", "model"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_renderContentOn_",smalltalk.method({selector: "renderContentOn:",category: 'rendering',fn: function (html){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._codeWidget())._renderOn_(html);return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html}, smalltalk.HLBrowserSourceWidget)})},args: ["html"],source: "renderContentOn: html\x0a\x09self codeWidget renderOn: html",messageSends: ["renderOn:", "codeWidget"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget);smalltalk.addMethod("_on_",smalltalk.method({selector: "on:",category: 'instance creation',fn: function (aBrowserModel){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$3,$1;$2=_st(self)._new();_st($2)._model_(aBrowserModel);$3=_st($2)._yourself();$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"on:",{aBrowserModel:aBrowserModel}, smalltalk.HLBrowserSourceWidget.klass)})},args: ["aBrowserModel"],source: "on: aBrowserModel\x0a\x09^ self new\x0a    \x09model: aBrowserModel;\x0a        yourself",messageSends: ["model:", "new", "yourself"],referencedClasses: []}),smalltalk.HLBrowserSourceWidget.klass);smalltalk.addClass('HLClassCache', smalltalk.Object, ['class', 'selectorsCache', 'overrideCache', 'overriddenCache'], 'Helios-Browser');smalltalk.addMethod("_invalidateChildrenSelector_",smalltalk.method({selector: "invalidateChildrenSelector:",category: 'actions',fn: function (aSelector){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;_st(_st(_st(self)._theClass())._subclasses())._do_((function(each){return smalltalk.withContext(function($ctx2) {
$1=_st(_st(self)._selectorsCache())._cacheFor_(each);_st($1)._removeSelector_(aSelector);$2=_st($1)._invalidateChildrenSelector_(aSelector);return $2;}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"invalidateChildrenSelector:",{aSelector:aSelector}, smalltalk.HLClassCache)})},args: ["aSelector"],source: "invalidateChildrenSelector: aSelector\x0a\x09self theClass subclasses do: [ :each |\x0a    \x09(self selectorsCache cacheFor: each)\x0a        \x09removeSelector: aSelector;\x0a        \x09invalidateChildrenSelector: aSelector ]",messageSends: ["do:", "removeSelector:", "cacheFor:", "selectorsCache", "invalidateChildrenSelector:", "subclasses", "theClass"],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_invalidateParentSelector_",smalltalk.method({selector: "invalidateParentSelector:",category: 'actions',fn: function (aSelector){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2,$3;$1=_st(_st(self)._theClass())._superclass();if(($receiver = $1) == nil || $receiver == undefined){$1;} else {$2=_st(_st(self)._selectorsCache())._cacheFor_(_st(_st(self)._theClass())._superclass());_st($2)._removeSelector_(aSelector);$3=_st($2)._invalidateParentSelector_(aSelector);$3;};return self}, function($ctx1) {$ctx1.fill(self,"invalidateParentSelector:",{aSelector:aSelector}, smalltalk.HLClassCache)})},args: ["aSelector"],source: "invalidateParentSelector: aSelector\x0a\x09self theClass superclass ifNotNil: [\x0a    \x09(self selectorsCache cacheFor: self theClass superclass)\x0a        \x09removeSelector: aSelector;\x0a\x09\x09\x09invalidateParentSelector: aSelector ]",messageSends: ["ifNotNil:", "removeSelector:", "cacheFor:", "superclass", "theClass", "selectorsCache", "invalidateParentSelector:"],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_invalidateSelector_",smalltalk.method({selector: "invalidateSelector:",category: 'actions',fn: function (aSelector){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=self;_st($1)._invalidateParentSelector_(aSelector);_st($1)._invalidateChildrenSelector_(aSelector);$2=_st($1)._removeSelector_(aSelector);return self}, function($ctx1) {$ctx1.fill(self,"invalidateSelector:",{aSelector:aSelector}, smalltalk.HLClassCache)})},args: ["aSelector"],source: "invalidateSelector: aSelector\x0a\x09self \x0a    \x09invalidateParentSelector: aSelector;\x0a        invalidateChildrenSelector: aSelector;\x0a        removeSelector: aSelector",messageSends: ["invalidateParentSelector:", "invalidateChildrenSelector:", "removeSelector:"],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_isOverridden_",smalltalk.method({selector: "isOverridden:",category: 'testing',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._overriddenCache())._at_ifAbsentPut_(_st(aMethod)._selector(),(function(){return smalltalk.withContext(function($ctx2) {
return _st(aMethod)._isOverridden();}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"isOverridden:",{aMethod:aMethod}, smalltalk.HLClassCache)})},args: ["aMethod"],source: "isOverridden: aMethod\x0a\x09^ self overriddenCache \x0a    \x09at: aMethod selector\x0a      \x09ifAbsentPut: [ aMethod isOverridden ]",messageSends: ["at:ifAbsentPut:", "selector", "isOverridden", "overriddenCache"],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_isOverride_",smalltalk.method({selector: "isOverride:",category: 'testing',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._overrideCache())._at_ifAbsentPut_(_st(aMethod)._selector(),(function(){return smalltalk.withContext(function($ctx2) {
return _st(aMethod)._isOverride();}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return $1;}, function($ctx1) {$ctx1.fill(self,"isOverride:",{aMethod:aMethod}, smalltalk.HLClassCache)})},args: ["aMethod"],source: "isOverride: aMethod\x0a\x09^ self overrideCache\x0a    \x09at: aMethod selector\x0a      \x09ifAbsentPut: [ aMethod isOverride ]",messageSends: ["at:ifAbsentPut:", "selector", "isOverride", "overrideCache"],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_overriddenCache",smalltalk.method({selector: "overriddenCache",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@overriddenCache"];if(($receiver = $2) == nil || $receiver == undefined){self["@overriddenCache"]=_st((smalltalk.HashedCollection || HashedCollection))._new();$1=self["@overriddenCache"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"overriddenCache",{}, smalltalk.HLClassCache)})},args: [],source: "overriddenCache\x0a\x09^ overriddenCache ifNil: [ overriddenCache := HashedCollection new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["HashedCollection"]}),smalltalk.HLClassCache);smalltalk.addMethod("_overrideCache",smalltalk.method({selector: "overrideCache",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@overrideCache"];if(($receiver = $2) == nil || $receiver == undefined){self["@overrideCache"]=_st((smalltalk.HashedCollection || HashedCollection))._new();$1=self["@overrideCache"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"overrideCache",{}, smalltalk.HLClassCache)})},args: [],source: "overrideCache\x0a\x09^ overrideCache ifNil: [ overrideCache := HashedCollection new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["HashedCollection"]}),smalltalk.HLClassCache);smalltalk.addMethod("_removeSelector_",smalltalk.method({selector: "removeSelector:",category: 'private',fn: function (aSelector){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._overriddenCache())._removeKey_ifAbsent_(aSelector,(function(){return smalltalk.withContext(function($ctx2) {
}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));_st(_st(self)._overrideCache())._removeKey_ifAbsent_(aSelector,(function(){return smalltalk.withContext(function($ctx2) {
}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"removeSelector:",{aSelector:aSelector}, smalltalk.HLClassCache)})},args: ["aSelector"],source: "removeSelector: aSelector\x0a\x09self overriddenCache \x0a    \x09removeKey: aSelector\x0a        ifAbsent: [ ].\x0a    self overrideCache \x0a    \x09removeKey: aSelector\x0a        ifAbsent: [ ]",messageSends: ["removeKey:ifAbsent:", "overriddenCache", "overrideCache"],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_selectorsCache",smalltalk.method({selector: "selectorsCache",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=self["@selectorsCache"];return $1;}, function($ctx1) {$ctx1.fill(self,"selectorsCache",{}, smalltalk.HLClassCache)})},args: [],source: "selectorsCache\x0a\x09^ selectorsCache",messageSends: [],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_selectorsCache_",smalltalk.method({selector: "selectorsCache:",category: 'accessing',fn: function (aCache){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@selectorsCache"]=aCache;return self}, function($ctx1) {$ctx1.fill(self,"selectorsCache:",{aCache:aCache}, smalltalk.HLClassCache)})},args: ["aCache"],source: "selectorsCache: aCache\x0a\x09selectorsCache := aCache",messageSends: [],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_theClass",smalltalk.method({selector: "theClass",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=self["@class"];return $1;}, function($ctx1) {$ctx1.fill(self,"theClass",{}, smalltalk.HLClassCache)})},args: [],source: "theClass\x0a\x09^ class",messageSends: [],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_theClass_",smalltalk.method({selector: "theClass:",category: 'accessing',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@class"]=aClass;return self}, function($ctx1) {$ctx1.fill(self,"theClass:",{aClass:aClass}, smalltalk.HLClassCache)})},args: ["aClass"],source: "theClass: aClass\x0a\x09class := aClass",messageSends: [],referencedClasses: []}),smalltalk.HLClassCache);smalltalk.addMethod("_on_selectorsCache_",smalltalk.method({selector: "on:selectorsCache:",category: 'instance creation',fn: function (aClass,aSelectorsCache){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$3,$1;$2=_st(self)._new();_st($2)._theClass_(aClass);_st($2)._selectorsCache_(aSelectorsCache);$3=_st($2)._yourself();$1=$3;return $1;}, function($ctx1) {$ctx1.fill(self,"on:selectorsCache:",{aClass:aClass,aSelectorsCache:aSelectorsCache}, smalltalk.HLClassCache.klass)})},args: ["aClass", "aSelectorsCache"],source: "on: aClass selectorsCache: aSelectorsCache\x0a\x09^ self new\x0a    \x09theClass: aClass;\x0a        selectorsCache: aSelectorsCache;\x0a        yourself",messageSends: ["theClass:", "new", "selectorsCache:", "yourself"],referencedClasses: []}),smalltalk.HLClassCache.klass);smalltalk.addClass('HLSelectorsCache', smalltalk.Object, ['classesCache'], 'Helios-Browser');smalltalk.addMethod("_cacheFor_",smalltalk.method({selector: "cacheFor:",category: 'accessing',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=aClass;if(($receiver = $1) == nil || $receiver == undefined){return nil;} else {$1;};$2=_st(_st(self)._classesCache())._at_ifAbsentPut_(_st(aClass)._name(),(function(){return smalltalk.withContext(function($ctx2) {
return _st(self)._newCacheFor_(aClass);}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));return $2;}, function($ctx1) {$ctx1.fill(self,"cacheFor:",{aClass:aClass}, smalltalk.HLSelectorsCache)})},args: ["aClass"],source: "cacheFor: aClass\x0a\x09aClass ifNil: [ ^ nil ].\x0a    \x0a\x09^ self classesCache\x0a    \x09at: aClass name\x0a        ifAbsentPut: [ self newCacheFor: aClass ]",messageSends: ["ifNil:", "at:ifAbsentPut:", "name", "newCacheFor:", "classesCache"],referencedClasses: []}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_classesCache",smalltalk.method({selector: "classesCache",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@classesCache"];if(($receiver = $2) == nil || $receiver == undefined){self["@classesCache"]=_st((smalltalk.HashedCollection || HashedCollection))._new();$1=self["@classesCache"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"classesCache",{}, smalltalk.HLSelectorsCache)})},args: [],source: "classesCache\x0a\x09^ classesCache ifNil: [ classesCache := HashedCollection new ]",messageSends: ["ifNil:", "new"],referencedClasses: ["HashedCollection"]}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_initialize",smalltalk.method({selector: "initialize",category: 'initialization',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
smalltalk.Object.fn.prototype._initialize.apply(_st(self), []);_st(self)._observeSystem();return self}, function($ctx1) {$ctx1.fill(self,"initialize",{}, smalltalk.HLSelectorsCache)})},args: [],source: "initialize\x0a\x09super initialize.\x0a    self observeSystem",messageSends: ["initialize", "observeSystem"],referencedClasses: []}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_invalidateCacheFor_",smalltalk.method({selector: "invalidateCacheFor:",category: 'private',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(_st(self)._cacheFor_(_st(aMethod)._methodClass()))._invalidateSelector_(_st(aMethod)._selector());return self}, function($ctx1) {$ctx1.fill(self,"invalidateCacheFor:",{aMethod:aMethod}, smalltalk.HLSelectorsCache)})},args: ["aMethod"],source: "invalidateCacheFor: aMethod\x0a\x09(self cacheFor: aMethod methodClass)\x0a    \x09invalidateSelector: aMethod selector",messageSends: ["invalidateSelector:", "selector", "cacheFor:", "methodClass"],referencedClasses: []}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_isOverridden_",smalltalk.method({selector: "isOverridden:",category: 'testing',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._cacheFor_(_st(aMethod)._methodClass()))._isOverridden_(aMethod);return $1;}, function($ctx1) {$ctx1.fill(self,"isOverridden:",{aMethod:aMethod}, smalltalk.HLSelectorsCache)})},args: ["aMethod"],source: "isOverridden: aMethod\x0a\x09^ (self cacheFor: aMethod methodClass)\x0a    \x09isOverridden: aMethod",messageSends: ["isOverridden:", "cacheFor:", "methodClass"],referencedClasses: []}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_isOverride_",smalltalk.method({selector: "isOverride:",category: 'testing',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st(_st(self)._cacheFor_(_st(aMethod)._methodClass()))._isOverride_(aMethod);return $1;}, function($ctx1) {$ctx1.fill(self,"isOverride:",{aMethod:aMethod}, smalltalk.HLSelectorsCache)})},args: ["aMethod"],source: "isOverride: aMethod\x0a\x09^ (self cacheFor: aMethod methodClass)\x0a    \x09isOverride: aMethod",messageSends: ["isOverride:", "cacheFor:", "methodClass"],referencedClasses: []}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_newCacheFor_",smalltalk.method({selector: "newCacheFor:",category: 'factory',fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1;$1=_st((smalltalk.HLClassCache || HLClassCache))._on_selectorsCache_(aClass,self);return $1;}, function($ctx1) {$ctx1.fill(self,"newCacheFor:",{aClass:aClass}, smalltalk.HLSelectorsCache)})},args: ["aClass"],source: "newCacheFor: aClass\x0a\x09^ HLClassCache \x0a    \x09on: aClass\x0a        selectorsCache: self",messageSends: ["on:selectorsCache:"],referencedClasses: ["HLClassCache"]}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_observeSystem",smalltalk.method({selector: "observeSystem",category: 'actions',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $1,$2;$1=_st((smalltalk.SystemAnnouncer || SystemAnnouncer))._current();_st($1)._on_do_((smalltalk.MethodAdded || MethodAdded),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodAdded_(_st(ann)._method());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));$2=_st($1)._on_do_((smalltalk.MethodRemoved || MethodRemoved),(function(ann){return smalltalk.withContext(function($ctx2) {
return _st(self)._onMethodRemoved_(_st(ann)._method());}, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{}, smalltalk.HLSelectorsCache)})},args: [],source: "observeSystem\x0a\x09SystemAnnouncer current\x0a\x09\x09on: MethodAdded\x0a        do: [ :ann | self onMethodAdded: ann method ];\x0a        on: MethodRemoved\x0a        do: [ :ann | self onMethodRemoved: ann method ]",messageSends: ["on:do:", "onMethodAdded:", "method", "current", "onMethodRemoved:"],referencedClasses: ["MethodAdded", "SystemAnnouncer", "MethodRemoved"]}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_onMethodAdded_",smalltalk.method({selector: "onMethodAdded:",category: 'reactions',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._invalidateCacheFor_(aMethod);return self}, function($ctx1) {$ctx1.fill(self,"onMethodAdded:",{aMethod:aMethod}, smalltalk.HLSelectorsCache)})},args: ["aMethod"],source: "onMethodAdded: aMethod\x0a\x09self invalidateCacheFor: aMethod",messageSends: ["invalidateCacheFor:"],referencedClasses: []}),smalltalk.HLSelectorsCache);smalltalk.addMethod("_onMethodRemoved_",smalltalk.method({selector: "onMethodRemoved:",category: 'reactions',fn: function (aMethod){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._invalidateCacheFor_(aMethod);return self}, function($ctx1) {$ctx1.fill(self,"onMethodRemoved:",{aMethod:aMethod}, smalltalk.HLSelectorsCache)})},args: ["aMethod"],source: "onMethodRemoved: aMethod\x0a\x09self invalidateCacheFor: aMethod",messageSends: ["invalidateCacheFor:"],referencedClasses: []}),smalltalk.HLSelectorsCache);smalltalk.HLSelectorsCache.klass.iVarNames = ['current'];smalltalk.addMethod("_current",smalltalk.method({selector: "current",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
var $2,$1;$2=self["@current"];if(($receiver = $2) == nil || $receiver == undefined){self["@current"]=smalltalk.Object.klass.fn.prototype._new.apply(_st(self), []);$1=self["@current"];} else {$1=$2;};return $1;}, function($ctx1) {$ctx1.fill(self,"current",{}, smalltalk.HLSelectorsCache.klass)})},args: [],source: "current\x0a\x09^ current ifNil: [ current := super new ]",messageSends: ["ifNil:", "new"],referencedClasses: []}),smalltalk.HLSelectorsCache.klass);smalltalk.addMethod("_flush",smalltalk.method({selector: "flush",category: 'accessing',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
self["@current"]=nil;return self}, function($ctx1) {$ctx1.fill(self,"flush",{}, smalltalk.HLSelectorsCache.klass)})},args: [],source: "flush\x0a\x09current := nil",messageSends: [],referencedClasses: []}),smalltalk.HLSelectorsCache.klass);smalltalk.addMethod("_new",smalltalk.method({selector: "new",category: 'instance creation',fn: function (){var self=this;return smalltalk.withContext(function($ctx1) { 
_st(self)._shouldNotImplement();return self}, function($ctx1) {$ctx1.fill(self,"new",{}, smalltalk.HLSelectorsCache.klass)})},args: [],source: "new\x0a\x09self shouldNotImplement",messageSends: ["shouldNotImplement"],referencedClasses: []}),smalltalk.HLSelectorsCache.klass);smalltalk.addMethod("_isOverridden",smalltalk.method({selector: "isOverridden",category: '*Helios-Browser',fn: function (){var self=this;var selector;return smalltalk.withContext(function($ctx1) { 
var $1;var $early={};try {selector=_st(self)._selector();_st(_st(self)._methodClass())._allSubclassesDo_((function(each){return smalltalk.withContext(function($ctx2) {
$1=_st(each)._includesSelector_(selector);if(smalltalk.assert($1)){throw $early=[true];};}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));return false;}catch(e) {if(e===$early)return e[0]; throw e}}, function($ctx1) {$ctx1.fill(self,"isOverridden",{selector:selector}, smalltalk.CompiledMethod)})},args: [],source: "isOverridden\x0a\x09| selector |\x0a    \x0a    selector := self selector.\x0a    self methodClass allSubclassesDo: [ :each |\x0a\x09    (each includesSelector: selector)\x0a        \x09ifTrue: [ ^ true ] ].\x0a\x09^ false",messageSends: ["selector", "allSubclassesDo:", "ifTrue:", "includesSelector:", "methodClass"],referencedClasses: []}),smalltalk.CompiledMethod);smalltalk.addMethod("_isOverride",smalltalk.method({selector: "isOverride",category: '*Helios-Browser',fn: function (){var self=this;var superclass;return smalltalk.withContext(function($ctx1) { 
var $1,$2;superclass=_st(_st(self)._methodClass())._superclass();$1=superclass;if(($receiver = $1) == nil || $receiver == undefined){return false;} else {$1;};$2=_st(_st(_st(_st(self)._methodClass())._superclass())._lookupSelector_(_st(self)._selector()))._notNil();return $2;}, function($ctx1) {$ctx1.fill(self,"isOverride",{superclass:superclass}, smalltalk.CompiledMethod)})},args: [],source: "isOverride\x0a\x09| superclass |\x0a    \x0a    superclass := self methodClass superclass.\x0a\x09superclass ifNil: [ ^ false ].\x0a\x09\x0a    ^ (self methodClass superclass lookupSelector: self selector) notNil",messageSends: ["superclass", "methodClass", "ifNil:", "notNil", "lookupSelector:", "selector"],referencedClasses: []}),smalltalk.CompiledMethod);
 |