| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282 | 
							- smalltalk.addPackage('Helios-Browser');
 
- smalltalk.addClass('HLBrowser', smalltalk.HLWidget, ['model', 'packagesListWidget', 'classesListWidget', 'protocolsListWidget', 'methodsListWidget', 'sourceWidget'], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "announcer",
 
- 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)})},
 
- messageSends: ["announcer", "model"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "canHaveFocus",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return true;
 
- }, function($ctx1) {$ctx1.fill(self,"canHaveFocus",{},smalltalk.HLBrowser)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "classesListWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLClassesListWidget(){return smalltalk.HLClassesListWidget||(typeof HLClassesListWidget=="undefined"?nil:HLClassesListWidget)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@classesListWidget"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@classesListWidget"]=_st($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)})},
 
- messageSends: ["ifNil:", "on:", "model", "next:", "protocolsListWidget"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "environment",
 
- 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)})},
 
- messageSends: ["environment", "model"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focus",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._packagesListWidget())._focus();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"focus",{},smalltalk.HLBrowser)})},
 
- messageSends: ["focus", "packagesListWidget"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "methodsListWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLMethodsListWidget(){return smalltalk.HLMethodsListWidget||(typeof HLMethodsListWidget=="undefined"?nil:HLMethodsListWidget)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@methodsListWidget"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@methodsListWidget"]=_st($HLMethodsListWidget())._on_(_st(self)._model());
 
- self["@methodsListWidget"];
 
- $1=_st(self["@methodsListWidget"])._next_(_st(self)._sourceWidget());
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"methodsListWidget",{},smalltalk.HLBrowser)})},
 
- messageSends: ["ifNil:", "on:", "model", "next:", "sourceWidget"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "model",
 
- fn: function (){
 
- var self=this;
 
- function $HLBrowserModel(){return smalltalk.HLBrowserModel||(typeof HLBrowserModel=="undefined"?nil:HLBrowserModel)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@model"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@model"]=_st($HLBrowserModel())._new();
 
- $1=self["@model"];
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"model",{},smalltalk.HLBrowser)})},
 
- messageSends: ["ifNil:", "new"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "model:",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "packagesListWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLPackagesListWidget(){return smalltalk.HLPackagesListWidget||(typeof HLPackagesListWidget=="undefined"?nil:HLPackagesListWidget)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@packagesListWidget"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@packagesListWidget"]=_st($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)})},
 
- messageSends: ["ifNil:", "on:", "model", "next:", "classesListWidget"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "protocolsListWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLProtocolsListWidget(){return smalltalk.HLProtocolsListWidget||(typeof HLProtocolsListWidget=="undefined"?nil:HLProtocolsListWidget)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@protocolsListWidget"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@protocolsListWidget"]=_st($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)})},
 
- messageSends: ["ifNil:", "on:", "model", "next:", "methodsListWidget"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "registerBindingsOn:",
 
- fn: function (aBindingGroup){
 
- var self=this;
 
- function $HLBrowserCommand(){return smalltalk.HLBrowserCommand||(typeof HLBrowserCommand=="undefined"?nil:HLBrowserCommand)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st($HLBrowserCommand())._registerConcreteClassesOn_for_(aBindingGroup,_st(self)._model());
 
- return self}, function($ctx1) {$ctx1.fill(self,"registerBindingsOn:",{aBindingGroup:aBindingGroup},smalltalk.HLBrowser)})},
 
- messageSends: ["registerConcreteClassesOn:for:", "model"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderContentOn:",
 
- fn: function (html){
 
- var self=this;
 
- function $HLVerticalSplitter(){return smalltalk.HLVerticalSplitter||(typeof HLVerticalSplitter=="undefined"?nil:HLVerticalSplitter)}
 
- function $HLHorizontalSplitter(){return smalltalk.HLHorizontalSplitter||(typeof HLHorizontalSplitter=="undefined"?nil:HLHorizontalSplitter)}
 
- function $HLContainer(){return smalltalk.HLContainer||(typeof HLContainer=="undefined"?nil:HLContainer)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(html)._with_(_st($HLContainer())._with_(_st($HLHorizontalSplitter())._with_with_(_st($HLVerticalSplitter())._with_with_(_st($HLVerticalSplitter())._with_with_(_st(self)._packagesListWidget(),_st(self)._classesListWidget()),_st($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)})},
 
- messageSends: ["with:", "with:with:", "packagesListWidget", "classesListWidget", "protocolsListWidget", "methodsListWidget", "sourceWidget", "focus"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "sourceWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLSourceCodeWidget(){return smalltalk.HLSourceCodeWidget||(typeof HLSourceCodeWidget=="undefined"?nil:HLSourceCodeWidget)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$3,$4,$1;
 
- $2=self["@sourceWidget"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- $3=_st($HLSourceCodeWidget())._new();
 
- _st($3)._browserModel_(_st(self)._model());
 
- $4=_st($3)._yourself();
 
- self["@sourceWidget"]=$4;
 
- $1=self["@sourceWidget"];
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"sourceWidget",{},smalltalk.HLBrowser)})},
 
- messageSends: ["ifNil:", "browserModel:", "model", "new", "yourself"]}),
 
- smalltalk.HLBrowser);
 
- smalltalk.HLBrowser.klass.iVarNames = ['nextId'];
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "canBeOpenAsTab",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return true;
 
- }, function($ctx1) {$ctx1.fill(self,"canBeOpenAsTab",{},smalltalk.HLBrowser.klass)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowser.klass);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "nextId",
 
- 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)})},
 
- messageSends: ["ifNil:", ",", "asString", "+"]}),
 
- smalltalk.HLBrowser.klass);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "tabLabel",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "Browser";
 
- }, function($ctx1) {$ctx1.fill(self,"tabLabel",{},smalltalk.HLBrowser.klass)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowser.klass);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "tabPriority",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=(0);
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"tabPriority",{},smalltalk.HLBrowser.klass)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowser.klass);
 
- smalltalk.addClass('HLBrowserListWidget', smalltalk.HLNavigationListWidget, ['model'], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "commandCategory",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(self)._label();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"commandCategory",{},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["label"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "label",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "List";
 
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLBrowserListWidget)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "menuCommands",
 
- fn: function (){
 
- var self=this;
 
- function $HLBrowserCommand(){return smalltalk.HLBrowserCommand||(typeof HLBrowserCommand=="undefined"?nil:HLBrowserCommand)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(_st($HLBrowserCommand())._concreteClasses())._collect_((function(each){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(each)._for_(_st(self)._model());
 
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._select_((function(each){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(_st(_st(each)._category()).__eq(_st(self)._commandCategory()))._and_((function(){
 
- return smalltalk.withContext(function($ctx3) {
 
- return _st(_st(each)._isAction())._and_((function(){
 
- return smalltalk.withContext(function($ctx4) {
 
- return _st(each)._isActive();
 
- }, function($ctx4) {$ctx4.fillBlock({},$ctx1)})}));
 
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
 
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"menuCommands",{},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["select:", "and:", "isActive", "isAction", "=", "commandCategory", "category", "collect:", "for:", "model", "concreteClasses"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "model",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "model:",
 
- fn: function (aBrowserModel){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- self["@model"]=aBrowserModel;
 
- $1=self;
 
- _st($1)._observeSystem();
 
- $2=_st($1)._observeModel();
 
- return self}, function($ctx1) {$ctx1.fill(self,"model:",{aBrowserModel:aBrowserModel},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["observeSystem", "observeModel"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeModel",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},smalltalk.HLBrowserListWidget)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeSystem",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},smalltalk.HLBrowserListWidget)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderContentOn:",
 
- fn: function (html){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._renderHeadOn_(html);
 
- smalltalk.HLNavigationListWidget.fn.prototype._renderContentOn_.apply(_st(self), [html]);
 
- return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["renderHeadOn:", "renderContentOn:"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderHeadOn:",
 
- fn: function (html){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(html)._div();
 
- _st($1)._class_("list-label");
 
- $2=_st($1)._with_((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- _st(html)._with_(_st(self)._label());
 
- return _st(self)._renderMenuOn_(html);
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"renderHeadOn:",{html:html},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["class:", "div", "with:", "label", "renderMenuOn:"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderMenuOn:",
 
- fn: function (html){
 
- var self=this;
 
- var commands;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3,$5,$6,$7,$9,$10,$8,$4;
 
- commands=_st(self)._menuCommands();
 
- $1=_st(commands)._isEmpty();
 
- if(smalltalk.assert($1)){
 
- $2=self;
 
- return $2;
 
- };
 
- $3=_st(html)._div();
 
- _st($3)._class_("btn-group cog");
 
- $4=_st($3)._with_((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- $5=_st(html)._a();
 
- _st($5)._class_("btn dropdown-toggle");
 
- _st($5)._at_put_("data-toggle","dropdown");
 
- $6=_st($5)._with_((function(){
 
- return smalltalk.withContext(function($ctx3) {
 
- return _st(_st(html)._tag_("i"))._class_("icon-cog");
 
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
 
- $6;
 
- $7=_st(html)._ul();
 
- _st($7)._class_("dropdown-menu pull-right");
 
- $8=_st($7)._with_((function(){
 
- return smalltalk.withContext(function($ctx3) {
 
- return _st(_st(self)._menuCommands())._do_((function(each){
 
- return smalltalk.withContext(function($ctx4) {
 
- return _st(_st(html)._li())._with_((function(){
 
- return smalltalk.withContext(function($ctx5) {
 
- $9=_st(html)._a();
 
- _st($9)._with_(_st(each)._menuLabel());
 
- $10=_st($9)._onClick_((function(){
 
- return smalltalk.withContext(function($ctx6) {
 
- return _st(self)._execute_(each);
 
- }, function($ctx6) {$ctx6.fillBlock({},$ctx1)})}));
 
- return $10;
 
- }, function($ctx5) {$ctx5.fillBlock({},$ctx1)})}));
 
- }, function($ctx4) {$ctx4.fillBlock({each:each},$ctx1)})}));
 
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
 
- return $8;
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"renderMenuOn:",{html:html,commands:commands},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["menuCommands", "ifTrue:", "isEmpty", "class:", "div", "with:", "a", "at:put:", "tag:", "ul", "do:", "menuLabel", "onClick:", "execute:", "li"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedItem:",
 
- fn: function (anItem){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- smalltalk.HLNavigationListWidget.fn.prototype._selectedItem_.apply(_st(self), [anItem]);
 
- _st(self)._updateMenu();
 
- return self}, function($ctx1) {$ctx1.fill(self,"selectedItem:",{anItem:anItem},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["selectedItem:", "updateMenu"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "updateMenu",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(_st(_st(self)._wrapper())._asJQuery())._find_(".cog"))._remove();
 
- _st((function(html){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._renderMenuOn_(html);
 
- }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1)})}))._appendToJQuery_(_st(_st(_st(self)._wrapper())._asJQuery())._find_(".list-label"));
 
- return self}, function($ctx1) {$ctx1.fill(self,"updateMenu",{},smalltalk.HLBrowserListWidget)})},
 
- messageSends: ["remove", "find:", "asJQuery", "wrapper", "appendToJQuery:", "renderMenuOn:"]}),
 
- smalltalk.HLBrowserListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "on:",
 
- 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)})},
 
- messageSends: ["model:", "new", "yourself"]}),
 
- smalltalk.HLBrowserListWidget.klass);
 
- smalltalk.addClass('HLClassesListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusMethodsListWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLMethodsListFocus(){return smalltalk.HLMethodsListFocus||(typeof HLMethodsListFocus=="undefined"?nil:HLMethodsListFocus)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(_st(self)._model())._announcer())._announce_(_st($HLMethodsListFocus())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusMethodsListWidget",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["announce:", "new", "announcer", "model"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusProtocolsListWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLProtocolsListFocus(){return smalltalk.HLProtocolsListFocus||(typeof HLProtocolsListFocus=="undefined"?nil:HLProtocolsListFocus)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(_st(self)._model())._announcer())._announce_(_st($HLProtocolsListFocus())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusProtocolsListWidget",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["announce:", "new", "announcer", "model"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "getChildrenOf:",
 
- 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)})},
 
- messageSends: ["select:", "=", "superclass", "items"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "getRootClassesOf:",
 
- 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)})},
 
- messageSends: ["select:", "not", "includes:", "superclass"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "iconForItem:",
 
- 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)})},
 
- messageSends: ["ifFalse:ifTrue:", "isEmpty", "comment", "theNonMetaClass"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "label",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "Classes";
 
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: []}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeModel",
 
- fn: function (){
 
- var self=this;
 
- function $HLPackageSelected(){return smalltalk.HLPackageSelected||(typeof HLPackageSelected=="undefined"?nil:HLPackageSelected)}
 
- function $HLShowInstanceToggled(){return smalltalk.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
 
- function $HLClassSelected(){return smalltalk.HLClassSelected||(typeof HLClassSelected=="undefined"?nil:HLClassSelected)}
 
- function $HLClassesFocusRequested(){return smalltalk.HLClassesFocusRequested||(typeof HLClassesFocusRequested=="undefined"?nil:HLClassesFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(self)._model())._announcer();
 
- _st($1)._on_do_($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_($HLShowInstanceToggled(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onShowInstanceToggled();
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- _st($1)._on_do_($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_($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)})},
 
- messageSends: ["on:do:", "onPackageSelected:", "item", "announcer", "model", "onShowInstanceToggled", "onClassSelected:", "onClassesFocusRequested"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeSystem",
 
- fn: function (){
 
- var self=this;
 
- function $ClassAdded(){return smalltalk.ClassAdded||(typeof ClassAdded=="undefined"?nil:ClassAdded)}
 
- function $ClassRemoved(){return smalltalk.ClassRemoved||(typeof ClassRemoved=="undefined"?nil:ClassRemoved)}
 
- function $ClassMoved(){return smalltalk.ClassMoved||(typeof ClassMoved=="undefined"?nil:ClassMoved)}
 
- function $ClassRenamed(){return smalltalk.ClassRenamed||(typeof ClassRenamed=="undefined"?nil:ClassRenamed)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(self)._model())._systemAnnouncer();
 
- _st($1)._on_do_($ClassAdded(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onClassAdded_(_st(ann)._theClass());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- _st($1)._on_do_($ClassRemoved(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onClassRemoved_(_st(ann)._theClass());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- _st($1)._on_do_($ClassMoved(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onClassMoved_from_(_st(ann)._theClass(),_st(ann)._oldPackage());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- $2=_st($1)._on_do_($ClassRenamed(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onClassRenamed_(_st(ann)._theClass());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["on:do:", "onClassAdded:", "theClass", "systemAnnouncer", "model", "onClassRemoved:", "onClassMoved:from:", "oldPackage", "onClassRenamed:"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onClassAdded:",
 
- 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)})},
 
- messageSends: ["ifFalse:", "=", "selectedPackage", "model", "package", "setItemsForSelectedPackage", "refresh"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onClassMoved:from:",
 
- fn: function (aClass,aPackage){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3,$4,$5;
 
- $1=_st(_st(aPackage).__eq(_st(_st(self)._model())._selectedPackage()))._or_((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(_st(aClass)._package()).__eq(_st(_st(self)._model())._selectedPackage());
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- if(! smalltalk.assert($1)){
 
- $2=self;
 
- return $2;
 
- };
 
- $3=_st(aPackage).__eq(_st(_st(self)._model())._selectedPackage());
 
- if(smalltalk.assert($3)){
 
- $4=self;
 
- _st($4)._selectedItem_(nil);
 
- $5=_st($4)._selectItem_(nil);
 
- $5;
 
- };
 
- _st(self)._setItemsForSelectedPackage();
 
- _st(self)._refresh();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onClassMoved:from:",{aClass:aClass,aPackage:aPackage},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["ifFalse:", "or:", "=", "selectedPackage", "model", "package", "ifTrue:", "selectedItem:", "selectItem:", "setItemsForSelectedPackage", "refresh"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onClassRemoved:",
 
- 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)})},
 
- messageSends: ["ifFalse:", "=", "selectedPackage", "model", "package", "ifTrue:", "selectItem:", "selectedClass", "setItemsForSelectedPackage", "refresh"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onClassRenamed:",
 
- 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,"onClassRenamed:",{aClass:aClass},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["ifFalse:", "=", "selectedPackage", "model", "package", "setItemsForSelectedPackage", "refresh"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onClassSelected:",
 
- fn: function (aClass){
 
- var self=this;
 
- var selectedClass;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3,$4,$5;
 
- $1=aClass;
 
- if(($receiver = $1) == nil || $receiver == undefined){
 
- $2=self;
 
- return $2;
 
- } else {
 
- $1;
 
- };
 
- selectedClass=_st(aClass)._theNonMetaClass();
 
- _st(self)._selectedItem_(selectedClass);
 
- $3=_st(self)._hasFocus();
 
- if(! smalltalk.assert($3)){
 
- $4=self;
 
- _st($4)._activateItem_(selectedClass);
 
- $5=_st($4)._focus();
 
- $5;
 
- };
 
- return self}, function($ctx1) {$ctx1.fill(self,"onClassSelected:",{aClass:aClass,selectedClass:selectedClass},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["ifNil:", "theNonMetaClass", "selectedItem:", "ifFalse:", "activateItem:", "focus", "hasFocus"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onClassesFocusRequested",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._focus();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onClassesFocusRequested",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["focus"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onPackageSelected:",
 
- 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)})},
 
- messageSends: ["selectedItem:", "setItemsForSelectedPackage", "refresh"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onShowInstanceToggled",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._refresh();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onShowInstanceToggled",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["refresh"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderButtonsOn:",
 
- fn: function (html){
 
- var self=this;
 
- function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$3,$4,$5,$6,$7,$8,$9,$10,$11,$2;
 
- $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($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($String())._streamContents_((function(str){
 
- return smalltalk.withContext(function($ctx3) {
 
- _st(str)._nextPutAll_("btn");
 
- $7=_st(self)._showClass();
 
- 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(self)._showInstance_(false);
 
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
 
- $8;
 
- $9=_st(html)._button();
 
- _st($9)._class_(_st($String())._streamContents_((function(str){
 
- return smalltalk.withContext(function($ctx3) {
 
- _st(str)._nextPutAll_("btn");
 
- $10=_st(self)._showComment();
 
- if(smalltalk.assert($10)){
 
- return _st(str)._nextPutAll_(" active");
 
- };
 
- }, function($ctx3) {$ctx3.fillBlock({str:str},$ctx1)})})));
 
- _st($9)._with_("Doc");
 
- $11=_st($9)._onClick_((function(){
 
- return smalltalk.withContext(function($ctx3) {
 
- return _st(self)._showComment_(true);
 
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
 
- return $11;
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"renderButtonsOn:",{html:html},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["class:", "div", "at:put:", "with:", "streamContents:", "nextPutAll:", "ifTrue:", "showInstance", "button", "onClick:", "showInstance:", "showClass", "showComment", "showComment:"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderItem:level:on:",
 
- fn: function (aClass,anInteger,html){
 
- var self=this;
 
- var li;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$3,$4,$2;
 
- li=_st(html)._li();
 
- _st(self)._registerMappingFrom_to_(aClass,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)})},
 
- messageSends: ["li", "registerMappingFrom:to:", "at:put:", "indexOf:", "items", "class:", "cssClassForItem:", "with:", "iconForItem:", "tag:", "renderItemLabel:level:on:", "a", "onClick:", "activateListItem:", "asJQuery", "do:", "renderItem:level:on:", "+", "getChildrenOf:"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderItem:on:",
 
- 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)})},
 
- messageSends: ["renderItem:on:", "do:", "renderItem:level:on:", "getChildrenOf:"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderItemLabel:level:on:",
 
- fn: function (aClass,anInteger,html){
 
- var self=this;
 
- function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(_st(html)._span())._asJQuery())._html_(_st($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)})},
 
- messageSends: ["html:", "streamContents:", "timesRepeat:", "nextPutAll:", "name", "asJQuery", "span"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderItemLabel:on:",
 
- 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)})},
 
- messageSends: ["renderItemLabel:level:on:"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderListOn:",
 
- 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)})},
 
- messageSends: ["do:", "renderItem:on:", "getRootClassesOf:", "items"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectItem:",
 
- 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)})},
 
- messageSends: ["selectedClass:", "model"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "setItemsForPackage:",
 
- 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)})},
 
- messageSends: ["items:", "ifNil:ifNotNil:", "sort:", "<", "name", "asArray", "asSet", "collect:", "theNonMetaClass", "classes"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "setItemsForSelectedPackage",
 
- 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)})},
 
- messageSends: ["setItemsForPackage:", "selectedPackage", "model"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showClass",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(_st(_st(self)._model())._showInstance())._not())._and_((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(_st(_st(self)._model())._showComment())._not();
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"showClass",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["and:", "not", "showComment", "model", "showInstance"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showComment",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._model())._showComment();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"showComment",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["showComment", "model"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showComment:",
 
- fn: function (aBoolean){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._model())._showComment_(aBoolean);
 
- return self}, function($ctx1) {$ctx1.fill(self,"showComment:",{aBoolean:aBoolean},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["showComment:", "model"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showInstance",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(_st(self)._model())._showInstance())._and_((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(_st(_st(self)._model())._showComment())._not();
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"showInstance",{},smalltalk.HLClassesListWidget)})},
 
- messageSends: ["and:", "not", "showComment", "model", "showInstance"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showInstance:",
 
- 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)})},
 
- messageSends: ["showInstance:", "model"]}),
 
- smalltalk.HLClassesListWidget);
 
- smalltalk.addClass('HLMethodsListWidget', smalltalk.HLBrowserListWidget, ['selectorsCache'], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "allProtocol",
 
- 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)})},
 
- messageSends: ["allProtocol", "model"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "iconForItem:",
 
- 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)})},
 
- messageSends: ["methodForSelector:", "isOverride:", "isOverridden:", "ifTrue:ifFalse:"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "isOverridden:",
 
- 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)})},
 
- messageSends: ["isOverridden:", "selectorsCache"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "isOverride:",
 
- 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)})},
 
- messageSends: ["isOverride:", "selectorsCache"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "label",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "Methods";
 
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLMethodsListWidget)})},
 
- messageSends: []}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "methodForSelector:",
 
- 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)})},
 
- messageSends: ["at:", "methodDictionary", "selectedClass", "model"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "methodsInProtocol:",
 
- fn: function (aString){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$4,$3;
 
- $1=_st(_st(self)._model())._selectedClass();
 
- if(($receiver = $1) == nil || $receiver == undefined){
 
- $2=[];
 
- return $2;
 
- } else {
 
- $1;
 
- };
 
- $4=_st(aString).__eq(_st(self)._allProtocol());
 
- if(smalltalk.assert($4)){
 
- $3=_st(_st(_st(self)._model())._selectedClass())._methods();
 
- } else {
 
- $3=_st(_st(_st(self)._model())._selectedClass())._methodsInProtocol_(aString);
 
- };
 
- return $3;
 
- }, function($ctx1) {$ctx1.fill(self,"methodsInProtocol:",{aString:aString},smalltalk.HLMethodsListWidget)})},
 
- messageSends: ["ifNil:", "selectedClass", "model", "ifTrue:ifFalse:", "methods", "methodsInProtocol:", "=", "allProtocol"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeModel",
 
- fn: function (){
 
- var self=this;
 
- function $HLProtocolSelected(){return smalltalk.HLProtocolSelected||(typeof HLProtocolSelected=="undefined"?nil:HLProtocolSelected)}
 
- function $HLShowInstanceToggled(){return smalltalk.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
 
- function $HLMethodSelected(){return smalltalk.HLMethodSelected||(typeof HLMethodSelected=="undefined"?nil:HLMethodSelected)}
 
- function $HLMethodsFocusRequested(){return smalltalk.HLMethodsFocusRequested||(typeof HLMethodsFocusRequested=="undefined"?nil:HLMethodsFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(self)._model())._announcer();
 
- _st($1)._on_do_($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_($HLShowInstanceToggled(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onProtocolSelected_(nil);
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- _st($1)._on_do_($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_($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)})},
 
- messageSends: ["on:do:", "onProtocolSelected:", "item", "announcer", "model", "onMethodSelected:", "onMethodsFocusRequested"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeSystem",
 
- fn: function (){
 
- var self=this;
 
- function $ProtocolAdded(){return smalltalk.ProtocolAdded||(typeof ProtocolAdded=="undefined"?nil:ProtocolAdded)}
 
- function $ProtocolRemoved(){return smalltalk.ProtocolRemoved||(typeof ProtocolRemoved=="undefined"?nil:ProtocolRemoved)}
 
- function $MethodAdded(){return smalltalk.MethodAdded||(typeof MethodAdded=="undefined"?nil:MethodAdded)}
 
- function $MethodRemoved(){return smalltalk.MethodRemoved||(typeof MethodRemoved=="undefined"?nil:MethodRemoved)}
 
- function $MethodMoved(){return smalltalk.MethodMoved||(typeof MethodMoved=="undefined"?nil:MethodMoved)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(self)._model())._systemAnnouncer();
 
- _st($1)._on_do_($ProtocolAdded(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onProtocolAdded_(_st(ann)._theClass());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- _st($1)._on_do_($ProtocolRemoved(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onProtocolRemoved_(_st(ann)._theClass());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- _st($1)._on_do_($MethodAdded(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onMethodAdded_(_st(ann)._method());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- _st($1)._on_do_($MethodRemoved(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onMethodRemoved_(_st(ann)._method());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- $2=_st($1)._on_do_($MethodMoved(),(function(ann){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(self)._onMethodMoved_(_st(ann)._method());
 
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"observeSystem",{},smalltalk.HLMethodsListWidget)})},
 
- messageSends: ["on:do:", "onProtocolAdded:", "theClass", "systemAnnouncer", "model", "onProtocolRemoved:", "onMethodAdded:", "method", "onMethodRemoved:", "onMethodMoved:"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onMethodAdded:",
 
- 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)})},
 
- messageSends: ["ifFalse:", "=", "methodClass", "selectedClass", "model", "setItemsForSelectedProtocol", "refresh"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onMethodMoved:",
 
- fn: function (aMethod){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3,$4,$5;
 
- $1=_st(_st(_st(self)._model())._selectedMethod()).__eq(aMethod);
 
- if(! smalltalk.assert($1)){
 
- $2=self;
 
- return $2;
 
- };
 
- $3=_st(_st(_st(self)._model())._selectedProtocol()).__eq(_st(_st(self)._model())._allProtocol());
 
- if(! smalltalk.assert($3)){
 
- $4=self;
 
- _st($4)._selectedItem_(nil);
 
- _st($4)._selectItem_(nil);
 
- _st($4)._setItemsForSelectedProtocol();
 
- $5=_st($4)._refresh();
 
- $5;
 
- };
 
- return self}, function($ctx1) {$ctx1.fill(self,"onMethodMoved:",{aMethod:aMethod},smalltalk.HLMethodsListWidget)})},
 
- messageSends: ["ifFalse:", "=", "selectedMethod", "model", "selectedItem:", "selectItem:", "setItemsForSelectedProtocol", "refresh", "allProtocol", "selectedProtocol"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onMethodRemoved:",
 
- fn: function (aMethod){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3,$4,$5;
 
- 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)){
 
- $4=self;
 
- _st($4)._selectedItem_(nil);
 
- $5=_st($4)._selectItem_(nil);
 
- $5;
 
- };
 
- };
 
- _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)})},
 
- messageSends: ["detect:ifNone:", "=", "selector", "items", "ifNotNil:", "ifTrue:", "selectedItem:", "selectItem:", "and:", "selectedItem", "selectedClass", "model", "methodClass", "setItemsForSelectedProtocol", "refresh"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onMethodSelected:",
 
- fn: function (aMethod){
 
- var self=this;
 
- var selector;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3;
 
- $1=_st(aMethod)._isCompiledMethod();
 
- if(smalltalk.assert($1)){
 
- selector=_st(aMethod)._selector();
 
- } else {
 
- selector=nil;
 
- };
 
- $2=self;
 
- _st($2)._selectedItem_(selector);
 
- $3=_st($2)._activateItem_(selector);
 
- return self}, function($ctx1) {$ctx1.fill(self,"onMethodSelected:",{aMethod:aMethod,selector:selector},smalltalk.HLMethodsListWidget)})},
 
- messageSends: ["ifTrue:ifFalse:", "selector", "isCompiledMethod", "selectedItem:", "activateItem:"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onMethodsFocusRequested",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._focus();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onMethodsFocusRequested",{},smalltalk.HLMethodsListWidget)})},
 
- messageSends: ["focus"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onProtocolAdded:",
 
- fn: function (aClass){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(_st(self)._model())._selectedClass()).__eq(aClass);
 
- if(! smalltalk.assert($1)){
 
- $2=self;
 
- return $2;
 
- };
 
- _st(self)._setItemsForSelectedProtocol();
 
- _st(self)._refresh();
 
- _st(self)._focus();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onProtocolAdded:",{aClass:aClass},smalltalk.HLMethodsListWidget)})},
 
- messageSends: ["ifFalse:", "=", "selectedClass", "model", "setItemsForSelectedProtocol", "refresh", "focus"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onProtocolRemoved:",
 
- fn: function (aClass){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(_st(self)._model())._selectedClass()).__eq(aClass);
 
- if(! smalltalk.assert($1)){
 
- $2=self;
 
- return $2;
 
- };
 
- _st(self)._setItemsForSelectedProtocol();
 
- _st(self)._refresh();
 
- _st(self)._focus();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onProtocolRemoved:",{aClass:aClass},smalltalk.HLMethodsListWidget)})},
 
- messageSends: ["ifFalse:", "=", "selectedClass", "model", "setItemsForSelectedProtocol", "refresh", "focus"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onProtocolSelected:",
 
- 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)})},
 
- messageSends: ["selectedItem:", "setItemsForSelectedProtocol", "refresh"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "overrideSelectors",
 
- fn: function (){
 
- var self=this;
 
- function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
 
- 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($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)})},
 
- messageSends: ["at:ifAbsentPut:", "inject:into:", "new", "addAll:", "selectors", "yourself", "allSuperclasses", "selectedClass", "model", "selectorsCache"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "overridenSelectors",
 
- fn: function (){
 
- var self=this;
 
- function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
 
- 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($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)})},
 
- messageSends: ["at:ifAbsentPut:", "inject:into:", "new", "addAll:", "selectors", "yourself", "allSubclasses", "selectedClass", "model", "selectorsCache"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderContentOn:",
 
- 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)})},
 
- messageSends: ["ifFalse:ifTrue:", "class:", "div", "with:", "renderContentOn:", "showInstance", "model"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderItemLabel:on:",
 
- 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)})},
 
- messageSends: ["with:"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectItem:",
 
- 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)})},
 
- messageSends: ["ifNil:", "selectedMethod:", "model", "methodForSelector:"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectorsCache",
 
- 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)})},
 
- messageSends: ["selectorsCache", "class"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectorsInProtocol:",
 
- 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)})},
 
- messageSends: ["collect:", "selector", "methodsInProtocol:"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "setItemsForProtocol:",
 
- 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)})},
 
- messageSends: ["items:", "ifNil:ifNotNil:", "selectorsInProtocol:"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "setItemsForSelectedProtocol",
 
- 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)})},
 
- messageSends: ["setItemsForProtocol:", "selectedProtocol", "model"]}),
 
- smalltalk.HLMethodsListWidget);
 
- smalltalk.HLMethodsListWidget.klass.iVarNames = ['selectorsCache'];
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectorsCache",
 
- fn: function (){
 
- var self=this;
 
- function $HLSelectorsCache(){return smalltalk.HLSelectorsCache||(typeof HLSelectorsCache=="undefined"?nil:HLSelectorsCache)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st($HLSelectorsCache())._current();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"selectorsCache",{},smalltalk.HLMethodsListWidget.klass)})},
 
- messageSends: ["current"]}),
 
- smalltalk.HLMethodsListWidget.klass);
 
- smalltalk.addClass('HLPackagesListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "commitPackage",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._model())._commitPackage();
 
- return self}, function($ctx1) {$ctx1.fill(self,"commitPackage",{},smalltalk.HLPackagesListWidget)})},
 
- messageSends: ["commitPackage", "model"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusClassesListWidget",
 
- fn: function (){
 
- var self=this;
 
- function $HLClassesListFocus(){return smalltalk.HLClassesListFocus||(typeof HLClassesListFocus=="undefined"?nil:HLClassesListFocus)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(_st(self)._model())._announcer())._announce_(_st($HLClassesListFocus())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusClassesListWidget",{},smalltalk.HLPackagesListWidget)})},
 
- messageSends: ["announce:", "new", "announcer", "model"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "initializeItems",
 
- 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)})},
 
- messageSends: ["sort:", "<", "name", "packages", "model"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "items",
 
- 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)})},
 
- messageSends: ["ifNil:", "initializeItems"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "label",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "Packages";
 
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLPackagesListWidget)})},
 
- messageSends: []}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeModel",
 
- fn: function (){
 
- var self=this;
 
- function $HLPackageSelected(){return smalltalk.HLPackageSelected||(typeof HLPackageSelected=="undefined"?nil:HLPackageSelected)}
 
- function $HLPackagesFocusRequested(){return smalltalk.HLPackagesFocusRequested||(typeof HLPackagesFocusRequested=="undefined"?nil:HLPackagesFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(self)._model())._announcer();
 
- _st($1)._on_do_($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_($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)})},
 
- messageSends: ["on:do:", "onPackageSelected:", "item", "announcer", "model", "onPackagesFocusRequested"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onPackageSelected:",
 
- fn: function (aPackage){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3;
 
- _st(self)._selectedItem_(aPackage);
 
- $1=_st(self)._hasFocus();
 
- if(! smalltalk.assert($1)){
 
- $2=self;
 
- _st($2)._activateItem_(aPackage);
 
- $3=_st($2)._focus();
 
- $3;
 
- };
 
- return self}, function($ctx1) {$ctx1.fill(self,"onPackageSelected:",{aPackage:aPackage},smalltalk.HLPackagesListWidget)})},
 
- messageSends: ["selectedItem:", "ifFalse:", "activateItem:", "focus", "hasFocus"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onPackagesFocusRequested",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._focus();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onPackagesFocusRequested",{},smalltalk.HLPackagesListWidget)})},
 
- messageSends: ["focus"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderButtonsOn:",
 
- fn: function (html){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$3,$4,$2;
 
- $1=_st(html)._div();
 
- _st($1)._class_("buttons");
 
- $2=_st($1)._with_((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- $3=_st(html)._button();
 
- _st($3)._class_("btn");
 
- _st($3)._with_("Commit");
 
- $4=_st($3)._onClick_((function(){
 
- return smalltalk.withContext(function($ctx3) {
 
- return _st(self)._commitPackage();
 
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
 
- return $4;
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"renderButtonsOn:",{html:html},smalltalk.HLPackagesListWidget)})},
 
- messageSends: ["class:", "div", "with:", "button", "onClick:", "commitPackage"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderItemLabel:on:",
 
- fn: function (aPackage,html){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(html)._with_(_st(aPackage)._name());
 
- return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{aPackage:aPackage,html:html},smalltalk.HLPackagesListWidget)})},
 
- messageSends: ["with:", "name"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectItem:",
 
- 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)})},
 
- messageSends: ["selectedPackage:", "model"]}),
 
- smalltalk.HLPackagesListWidget);
 
- smalltalk.addClass('HLProtocolsListWidget', smalltalk.HLBrowserListWidget, [], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "allProtocol",
 
- 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)})},
 
- messageSends: ["allProtocol", "model"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "label",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "Protocols";
 
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLProtocolsListWidget)})},
 
- messageSends: []}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeModel",
 
- fn: function (){
 
- var self=this;
 
- function $HLClassSelected(){return smalltalk.HLClassSelected||(typeof HLClassSelected=="undefined"?nil:HLClassSelected)}
 
- function $HLShowInstanceToggled(){return smalltalk.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
 
- function $HLProtocolSelected(){return smalltalk.HLProtocolSelected||(typeof HLProtocolSelected=="undefined"?nil:HLProtocolSelected)}
 
- function $HLProtocolsFocusRequested(){return smalltalk.HLProtocolsFocusRequested||(typeof HLProtocolsFocusRequested=="undefined"?nil:HLProtocolsFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(self)._model())._announcer();
 
- _st($1)._on_do_($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_($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_($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_($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)})},
 
- messageSends: ["on:do:", "onClassSelected:", "item", "announcer", "model", "selectedClass", "onProtocolSelected:", "onProtocolsFocusRequested"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeSystem",
 
- fn: function (){
 
- var self=this;
 
- function $ProtocolAdded(){return smalltalk.ProtocolAdded||(typeof ProtocolAdded=="undefined"?nil:ProtocolAdded)}
 
- function $ProtocolRemoved(){return smalltalk.ProtocolRemoved||(typeof ProtocolRemoved=="undefined"?nil:ProtocolRemoved)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st(_st(self)._model())._systemAnnouncer();
 
- _st($1)._on_do_($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_($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)})},
 
- messageSends: ["on:do:", "onProtocolAdded:to:", "protocol", "theClass", "systemAnnouncer", "model", "onProtocolRemoved:from:"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onClassSelected:",
 
- 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)})},
 
- messageSends: ["selectedItem:", "setItemsForSelectedClass", "refresh"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onProtocolAdded:to:",
 
- 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)})},
 
- messageSends: ["ifFalse:", "=", "selectedClass", "model", "setItemsForSelectedClass", "refresh"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onProtocolRemoved:from:",
 
- fn: function (aString,aClass){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3,$4,$5;
 
- $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)){
 
- $4=self;
 
- _st($4)._selectedItem_(nil);
 
- $5=_st($4)._selectItem_(nil);
 
- $5;
 
- };
 
- _st(self)._setItemsForSelectedClass();
 
- _st(self)._refresh();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onProtocolRemoved:from:",{aString:aString,aClass:aClass},smalltalk.HLProtocolsListWidget)})},
 
- messageSends: ["ifFalse:", "=", "selectedClass", "model", "ifTrue:", "selectedItem:", "selectItem:", "selectedProtocol", "setItemsForSelectedClass", "refresh"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onProtocolSelected:",
 
- fn: function (aString){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$3,$4,$5;
 
- _st(self)._selectedItem_(aString);
 
- $1=aString;
 
- if(($receiver = $1) == nil || $receiver == undefined){
 
- $2=self;
 
- return $2;
 
- } else {
 
- $1;
 
- };
 
- $3=_st(self)._hasFocus();
 
- if(! smalltalk.assert($3)){
 
- $4=self;
 
- _st($4)._activateItem_(aString);
 
- $5=_st($4)._focus();
 
- $5;
 
- };
 
- return self}, function($ctx1) {$ctx1.fill(self,"onProtocolSelected:",{aString:aString},smalltalk.HLProtocolsListWidget)})},
 
- messageSends: ["selectedItem:", "ifNil:", "ifFalse:", "activateItem:", "focus", "hasFocus"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onProtocolsFocusRequested",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._focus();
 
- return self}, function($ctx1) {$ctx1.fill(self,"onProtocolsFocusRequested",{},smalltalk.HLProtocolsListWidget)})},
 
- messageSends: ["focus"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renderContentOn:",
 
- 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)})},
 
- messageSends: ["ifFalse:ifTrue:", "class:", "div", "with:", "renderContentOn:", "showInstance", "model"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectItem:",
 
- 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)})},
 
- messageSends: ["selectedProtocol:", "model"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedItem",
 
- 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)})},
 
- messageSends: ["selectedItem"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "setItemsForClass:",
 
- fn: function (aClass){
 
- var self=this;
 
- function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$3,$4,$5,$2;
 
- $1=self;
 
- $3=aClass;
 
- if(($receiver = $3) == nil || $receiver == undefined){
 
- $2=_st($Array())._with_(_st(self)._allProtocol());
 
- } else {
 
- $4=_st($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)})},
 
- messageSends: ["items:", "ifNil:ifNotNil:", "with:", "allProtocol", "addAll:", "protocols", "yourself"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "setItemsForSelectedClass",
 
- 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)})},
 
- messageSends: ["setItemsForClass:", "selectedClass", "model"]}),
 
- smalltalk.HLProtocolsListWidget);
 
- smalltalk.addClass('HLBrowserModel', smalltalk.Object, ['announcer', 'environment', 'selectedPackage', 'selectedClass', 'selectedProtocol', 'selectedSelector', 'showInstance', 'showComment'], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "addInstVarNamed:",
 
- fn: function (aString){
 
- var self=this;
 
- function $HLInstVarAdded(){return smalltalk.HLInstVarAdded||(typeof HLInstVarAdded=="undefined"?nil:HLInstVarAdded)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- _st(_st(self)._environment())._addInstVarNamed_to_(aString,_st(self)._selectedClass());
 
- $1=_st($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)})},
 
- messageSends: ["addInstVarNamed:to:", "selectedClass", "environment", "announce:", "theClass:", "new", "variableName:", "yourself", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "allProtocol",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "-- all --";
 
- }, function($ctx1) {$ctx1.fill(self,"allProtocol",{},smalltalk.HLBrowserModel)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "announcer",
 
- fn: function (){
 
- var self=this;
 
- function $Announcer(){return smalltalk.Announcer||(typeof Announcer=="undefined"?nil:Announcer)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@announcer"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@announcer"]=_st($Announcer())._new();
 
- $1=self["@announcer"];
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"announcer",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifNil:", "new"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "availableClassNames",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._environment())._availableClassNames();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"availableClassNames",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["availableClassNames", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "availablePackageNames",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._environment())._availablePackageNames();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"availablePackageNames",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["availablePackageNames", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "availablePackages",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._environment())._availablePackageNames();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"availablePackages",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["availablePackageNames", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "availableProtocols",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._environment())._availableProtocolsFor_(_st(self)._selectedClass());
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"availableProtocols",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["availableProtocolsFor:", "selectedClass", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "commitPackage",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._withHelperLabelled_do_(_st(_st("Committing package ").__comma(_st(_st(self)._selectedPackage())._name())).__comma("..."),(function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- return _st(_st(self)._environment())._commitPackage_(_st(self)._selectedPackage());
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"commitPackage",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["withHelperLabelled:do:", ",", "name", "selectedPackage", "commitPackage:", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "compilationProtocol",
 
- 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)})},
 
- messageSends: ["selectedProtocol", "ifNil:", "unclassifiedProtocol", "ifNotNil:", "protocol", "selectedMethod", "ifTrue:ifFalse:", "=", "allProtocol"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "compileClassComment:",
 
- 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)})},
 
- messageSends: ["compileClassComment:for:", "selectedClass", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "compileClassDefinition:",
 
- 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)})},
 
- messageSends: ["compileClassDefinition:", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "compileMethod:",
 
- fn: function (aString){
 
- var self=this;
 
- var method;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._withCompileErrorHandling_((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- method=_st(_st(self)._environment())._compileMethod_for_protocol_(aString,_st(self)._selectedClass(),_st(self)._compilationProtocol());
 
- method;
 
- return _st(self)._selectedMethod_(method);
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 
- return self}, function($ctx1) {$ctx1.fill(self,"compileMethod:",{aString:aString,method:method},smalltalk.HLBrowserModel)})},
 
- messageSends: ["withCompileErrorHandling:", "compileMethod:for:protocol:", "selectedClass", "compilationProtocol", "environment", "selectedMethod:"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "copyClassTo:",
 
- fn: function (aClassName){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._environment())._copyClass_to_(_st(_st(self)._selectedClass())._theNonMetaClass(),aClassName);
 
- return self}, function($ctx1) {$ctx1.fill(self,"copyClassTo:",{aClassName:aClassName},smalltalk.HLBrowserModel)})},
 
- messageSends: ["copyClass:to:", "theNonMetaClass", "selectedClass", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "environment",
 
- fn: function (){
 
- var self=this;
 
- function $HLManager(){return smalltalk.HLManager||(typeof HLManager=="undefined"?nil:HLManager)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@environment"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- $1=_st(_st($HLManager())._current())._environment();
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"environment",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifNil:", "environment", "current"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "environment:",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusOnClasses",
 
- fn: function (){
 
- var self=this;
 
- function $HLClassesFocusRequested(){return smalltalk.HLClassesFocusRequested||(typeof HLClassesFocusRequested=="undefined"?nil:HLClassesFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._announcer())._announce_(_st($HLClassesFocusRequested())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusOnClasses",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusOnMethods",
 
- fn: function (){
 
- var self=this;
 
- function $HLMethodsFocusRequested(){return smalltalk.HLMethodsFocusRequested||(typeof HLMethodsFocusRequested=="undefined"?nil:HLMethodsFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._announcer())._announce_(_st($HLMethodsFocusRequested())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusOnMethods",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusOnPackages",
 
- fn: function (){
 
- var self=this;
 
- function $HLPackagesFocusRequested(){return smalltalk.HLPackagesFocusRequested||(typeof HLPackagesFocusRequested=="undefined"?nil:HLPackagesFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._announcer())._announce_(_st($HLPackagesFocusRequested())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusOnPackages",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusOnProtocols",
 
- fn: function (){
 
- var self=this;
 
- function $HLProtocolsFocusRequested(){return smalltalk.HLProtocolsFocusRequested||(typeof HLProtocolsFocusRequested=="undefined"?nil:HLProtocolsFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._announcer())._announce_(_st($HLProtocolsFocusRequested())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusOnProtocols",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "focusOnSourceCode",
 
- fn: function (){
 
- var self=this;
 
- function $HLSourceCodeFocusRequested(){return smalltalk.HLSourceCodeFocusRequested||(typeof HLSourceCodeFocusRequested=="undefined"?nil:HLSourceCodeFocusRequested)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._announcer())._announce_(_st($HLSourceCodeFocusRequested())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"focusOnSourceCode",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "handleCompileError:",
 
- fn: function (anError){
 
- var self=this;
 
- function $HLCompileErrorRaised(){return smalltalk.HLCompileErrorRaised||(typeof HLCompileErrorRaised=="undefined"?nil:HLCompileErrorRaised)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st($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)})},
 
- messageSends: ["announce:", "error:", "new", "yourself", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "handleParseError:",
 
- fn: function (anError){
 
- var self=this;
 
- var split,line,column,messageToInsert;
 
- function $HLParseErrorRaised(){return smalltalk.HLParseErrorRaised||(typeof HLParseErrorRaised=="undefined"?nil:HLParseErrorRaised)}
 
- 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($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)})},
 
- messageSends: ["tokenize:", "messageText", "second", "copyFrom:to:", "size", "first", "announce:", "line:", "asNumber", "new", "column:", "message:", "error:", "yourself", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "handleUnkownVariableError:",
 
- fn: function (anError){
 
- var self=this;
 
- function $HLUnknownVariableErrorRaised(){return smalltalk.HLUnknownVariableErrorRaised||(typeof HLUnknownVariableErrorRaised=="undefined"?nil:HLUnknownVariableErrorRaised)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st($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)})},
 
- messageSends: ["announce:", "error:", "new", "yourself", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "manager",
 
- fn: function (){
 
- var self=this;
 
- function $HLManager(){return smalltalk.HLManager||(typeof HLManager=="undefined"?nil:HLManager)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st($HLManager())._current();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"manager",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["current"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "moveClassToPackage:",
 
- fn: function (aPackageName){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._environment())._moveClass_toPackage_(_st(_st(self)._selectedClass())._theNonMetaClass(),aPackageName);
 
- return self}, function($ctx1) {$ctx1.fill(self,"moveClassToPackage:",{aPackageName:aPackageName},smalltalk.HLBrowserModel)})},
 
- messageSends: ["moveClass:toPackage:", "theNonMetaClass", "selectedClass", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "moveMethodToClass:",
 
- fn: function (aClassName){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._environment())._moveMethod_toClass_(_st(self)._selectedMethod(),aClassName);
 
- return self}, function($ctx1) {$ctx1.fill(self,"moveMethodToClass:",{aClassName:aClassName},smalltalk.HLBrowserModel)})},
 
- messageSends: ["moveMethod:toClass:", "selectedMethod", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "moveMethodToProtocol:",
 
- fn: function (aProtocol){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._environment())._moveMethod_toProtocol_(_st(self)._selectedMethod(),aProtocol);
 
- return self}, function($ctx1) {$ctx1.fill(self,"moveMethodToProtocol:",{aProtocol:aProtocol},smalltalk.HLBrowserModel)})},
 
- messageSends: ["moveMethod:toProtocol:", "selectedMethod", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "openClassNamed:",
 
- fn: function (aString){
 
- var self=this;
 
- var class_;
 
- return smalltalk.withContext(function($ctx1) { 
 
- class_=_st(_st(self)._environment())._classNamed_(aString);
 
- _st(self)._selectedPackage_(_st(class_)._package());
 
- _st(self)._selectedClass_(class_);
 
- return self}, function($ctx1) {$ctx1.fill(self,"openClassNamed:",{aString:aString,class_:class_},smalltalk.HLBrowserModel)})},
 
- messageSends: ["classNamed:", "environment", "selectedPackage:", "package", "selectedClass:"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "packages",
 
- 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)})},
 
- messageSends: ["packages", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "removeClass",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._manager())._confirm_(_st("Do you REALLY want to remove class ").__comma(_st(_st(self)._selectedClass())._name()));
 
- if(smalltalk.assert($1)){
 
- _st(_st(self)._environment())._removeClass_(_st(self)._selectedClass());
 
- };
 
- return self}, function($ctx1) {$ctx1.fill(self,"removeClass",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifTrue:", "removeClass:", "selectedClass", "environment", "confirm:", ",", "name", "manager"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "removeMethod",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._manager())._confirm_(_st(_st(_st("Do you REALLY want to remove method ").__comma(_st(_st(_st(self)._selectedMethod())._methodClass())._name())).__comma(" >> #")).__comma(_st(_st(self)._selectedMethod())._selector()));
 
- if(smalltalk.assert($1)){
 
- _st(_st(self)._environment())._removeMethod_(_st(self)._selectedMethod());
 
- };
 
- return self}, function($ctx1) {$ctx1.fill(self,"removeMethod",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifTrue:", "removeMethod:", "selectedMethod", "environment", "confirm:", ",", "selector", "name", "methodClass", "manager"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "renameClassTo:",
 
- fn: function (aClassName){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._environment())._renameClass_to_(_st(_st(self)._selectedClass())._theNonMetaClass(),aClassName);
 
- return self}, function($ctx1) {$ctx1.fill(self,"renameClassTo:",{aClassName:aClassName},smalltalk.HLBrowserModel)})},
 
- messageSends: ["renameClass:to:", "theNonMetaClass", "selectedClass", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "save:",
 
- 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)})},
 
- messageSends: ["ifTrue:ifFalse:", "compileClassDefinition:", "compileMethod:", "shouldCompileClassDefinition:"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "saveSourceCode",
 
- fn: function (){
 
- var self=this;
 
- function $HLSaveSourceCode(){return smalltalk.HLSaveSourceCode||(typeof HLSaveSourceCode=="undefined"?nil:HLSaveSourceCode)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(_st(self)._announcer())._announce_(_st($HLSaveSourceCode())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"saveSourceCode",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedClass",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedClass:",
 
- fn: function (aClass){
 
- var self=this;
 
- function $HLClassSelected(){return smalltalk.HLClassSelected||(typeof HLClassSelected=="undefined"?nil:HLClassSelected)}
 
- 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($HLClassSelected())._on_(_st(self)._selectedClass()));
 
- return self}, function($ctx1) {$ctx1.fill(self,"selectedClass:",{aClass:aClass},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifTrue:", "ifNil:", "selectedProtocol:", "=", "ifNil:ifNotNil:", "ifTrue:ifFalse:", "theNonMetaClass", "theMetaClass", "showInstance", "announce:", "on:", "selectedClass", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedMethod",
 
- 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)})},
 
- messageSends: ["ifNotNil:", "at:ifAbsent:", "methodDictionary", "selectedClass"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedMethod:",
 
- fn: function (aCompiledMethod){
 
- var self=this;
 
- function $HLMethodSelected(){return smalltalk.HLMethodSelected||(typeof HLMethodSelected=="undefined"?nil:HLMethodSelected)}
 
- 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($HLMethodSelected())._on_(aCompiledMethod));
 
- return self}, function($ctx1) {$ctx1.fill(self,"selectedMethod:",{aCompiledMethod:aCompiledMethod},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifTrue:", "=", "ifNil:ifNotNil:", "selector", "announce:", "on:", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedPackage",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedPackage:",
 
- fn: function (aPackage){
 
- var self=this;
 
- function $HLPackageSelected(){return smalltalk.HLPackageSelected||(typeof HLPackageSelected=="undefined"?nil:HLPackageSelected)}
 
- 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($HLPackageSelected())._on_(aPackage));
 
- return self}, function($ctx1) {$ctx1.fill(self,"selectedPackage:",{aPackage:aPackage},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifTrue:", "=", "selectedClass:", "announce:", "on:", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedProtocol",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectedProtocol:",
 
- fn: function (aString){
 
- var self=this;
 
- function $HLProtocolSelected(){return smalltalk.HLProtocolSelected||(typeof HLProtocolSelected=="undefined"?nil:HLProtocolSelected)}
 
- 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($HLProtocolSelected())._on_(aString));
 
- return self}, function($ctx1) {$ctx1.fill(self,"selectedProtocol:",{aString:aString},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifTrue:", "=", "selectedMethod:", "announce:", "on:", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "shouldCompileClassDefinition:",
 
- 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)})},
 
- messageSends: ["or:", "=", "first", "asUppercase", "isNil", "selectedClass"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showComment",
 
- 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)})},
 
- messageSends: ["ifNil:"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showComment:",
 
- fn: function (aBoolean){
 
- var self=this;
 
- function $HLShowCommentToggled(){return smalltalk.HLShowCommentToggled||(typeof HLShowCommentToggled=="undefined"?nil:HLShowCommentToggled)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@showComment"]=aBoolean;
 
- _st(_st(self)._announcer())._announce_(_st($HLShowCommentToggled())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"showComment:",{aBoolean:aBoolean},smalltalk.HLBrowserModel)})},
 
- messageSends: ["announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showInstance",
 
- 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)})},
 
- messageSends: ["ifNil:"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "showInstance:",
 
- fn: function (aBoolean){
 
- var self=this;
 
- function $HLShowInstanceToggled(){return smalltalk.HLShowInstanceToggled||(typeof HLShowInstanceToggled=="undefined"?nil:HLShowInstanceToggled)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2,$4,$3;
 
- self["@showInstance"]=aBoolean;
 
- self["@showComment"]=false;
 
- $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($HLShowInstanceToggled())._new());
 
- return self}, function($ctx1) {$ctx1.fill(self,"showInstance:",{aBoolean:aBoolean},smalltalk.HLBrowserModel)})},
 
- messageSends: ["ifNotNil:", "selectedClass:", "ifTrue:ifFalse:", "theNonMetaClass", "selectedClass", "theMetaClass", "announce:", "new", "announcer"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "systemAnnouncer",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st(_st(self)._environment())._systemAnnouncer();
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"systemAnnouncer",{},smalltalk.HLBrowserModel)})},
 
- messageSends: ["systemAnnouncer", "environment"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "unclassifiedProtocol",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "as yet unclassified";
 
- }, function($ctx1) {$ctx1.fill(self,"unclassifiedProtocol",{},smalltalk.HLBrowserModel)})},
 
- messageSends: []}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "withCompileErrorHandling:",
 
- fn: function (aBlock){
 
- var self=this;
 
- function $CompilerError(){return smalltalk.CompilerError||(typeof CompilerError=="undefined"?nil:CompilerError)}
 
- function $UnknownVariableError(){return smalltalk.UnknownVariableError||(typeof UnknownVariableError=="undefined"?nil:UnknownVariableError)}
 
- function $ParseError(){return smalltalk.ParseError||(typeof ParseError=="undefined"?nil:ParseError)}
 
- 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_($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_($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_($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)})},
 
- messageSends: ["on:do:", "handleCompileError:", "handleUnkownVariableError:", "handleParseError:"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "withHelperLabelled:do:",
 
- fn: function (aString,aBlock){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- _st(_st(window)._jQuery_("#helper"))._remove();
 
- _st((function(html){
 
- return smalltalk.withContext(function($ctx2) {
 
- $1=_st(html)._div();
 
- _st($1)._id_("helper");
 
- $2=_st($1)._with_(aString);
 
- return $2;
 
- }, function($ctx2) {$ctx2.fillBlock({html:html},$ctx1)})}))._appendToJQuery_(_st("body")._asJQuery());
 
- _st((function(){
 
- return smalltalk.withContext(function($ctx2) {
 
- _st(aBlock)._value();
 
- return _st(_st(window)._jQuery_("#helper"))._remove();
 
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._valueWithTimeout_((10));
 
- return self}, function($ctx1) {$ctx1.fill(self,"withHelperLabelled:do:",{aString:aString,aBlock:aBlock},smalltalk.HLBrowserModel)})},
 
- messageSends: ["remove", "jQuery:", "appendToJQuery:", "asJQuery", "id:", "div", "with:", "valueWithTimeout:", "value"]}),
 
- smalltalk.HLBrowserModel);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "on:",
 
- 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)})},
 
- messageSends: ["environment:", "new", "yourself"]}),
 
- smalltalk.HLBrowserModel.klass);
 
- smalltalk.addClass('HLClassCache', smalltalk.Object, ['class', 'selectorsCache', 'overrideCache', 'overriddenCache'], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "invalidateChildrenSelector:",
 
- 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)})},
 
- messageSends: ["do:", "removeSelector:", "cacheFor:", "selectorsCache", "invalidateChildrenSelector:", "subclasses", "theClass"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "invalidateParentSelector:",
 
- 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)})},
 
- messageSends: ["ifNotNil:", "removeSelector:", "cacheFor:", "superclass", "theClass", "selectorsCache", "invalidateParentSelector:"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "invalidateSelector:",
 
- 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)})},
 
- messageSends: ["invalidateParentSelector:", "invalidateChildrenSelector:", "removeSelector:"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "isOverridden:",
 
- 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)})},
 
- messageSends: ["at:ifAbsentPut:", "selector", "isOverridden", "overriddenCache"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "isOverride:",
 
- 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)})},
 
- messageSends: ["at:ifAbsentPut:", "selector", "isOverride", "overrideCache"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "overriddenCache",
 
- fn: function (){
 
- var self=this;
 
- function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@overriddenCache"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@overriddenCache"]=_st($HashedCollection())._new();
 
- $1=self["@overriddenCache"];
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"overriddenCache",{},smalltalk.HLClassCache)})},
 
- messageSends: ["ifNil:", "new"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "overrideCache",
 
- fn: function (){
 
- var self=this;
 
- function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@overrideCache"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@overrideCache"]=_st($HashedCollection())._new();
 
- $1=self["@overrideCache"];
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"overrideCache",{},smalltalk.HLClassCache)})},
 
- messageSends: ["ifNil:", "new"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "removeSelector:",
 
- 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)})},
 
- messageSends: ["removeKey:ifAbsent:", "overriddenCache", "overrideCache"]}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectorsCache",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "selectorsCache:",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "theClass",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "theClass:",
 
- 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)})},
 
- messageSends: []}),
 
- smalltalk.HLClassCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "on:selectorsCache:",
 
- 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)})},
 
- messageSends: ["theClass:", "new", "selectorsCache:", "yourself"]}),
 
- smalltalk.HLClassCache.klass);
 
- smalltalk.addClass('HLSelectorsCache', smalltalk.Object, ['classesCache'], 'Helios-Browser');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "cacheFor:",
 
- 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)})},
 
- messageSends: ["ifNil:", "at:ifAbsentPut:", "name", "newCacheFor:", "classesCache"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "classesCache",
 
- fn: function (){
 
- var self=this;
 
- function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$1;
 
- $2=self["@classesCache"];
 
- if(($receiver = $2) == nil || $receiver == undefined){
 
- self["@classesCache"]=_st($HashedCollection())._new();
 
- $1=self["@classesCache"];
 
- } else {
 
- $1=$2;
 
- };
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"classesCache",{},smalltalk.HLSelectorsCache)})},
 
- messageSends: ["ifNil:", "new"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "initialize",
 
- 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)})},
 
- messageSends: ["initialize", "observeSystem"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "invalidateCacheFor:",
 
- 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)})},
 
- messageSends: ["invalidateSelector:", "selector", "cacheFor:", "methodClass"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "isOverridden:",
 
- 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)})},
 
- messageSends: ["isOverridden:", "cacheFor:", "methodClass"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "isOverride:",
 
- 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)})},
 
- messageSends: ["isOverride:", "cacheFor:", "methodClass"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "newCacheFor:",
 
- fn: function (aClass){
 
- var self=this;
 
- function $HLClassCache(){return smalltalk.HLClassCache||(typeof HLClassCache=="undefined"?nil:HLClassCache)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=_st($HLClassCache())._on_selectorsCache_(aClass,self);
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"newCacheFor:",{aClass:aClass},smalltalk.HLSelectorsCache)})},
 
- messageSends: ["on:selectorsCache:"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "observeSystem",
 
- fn: function (){
 
- var self=this;
 
- function $MethodAdded(){return smalltalk.MethodAdded||(typeof MethodAdded=="undefined"?nil:MethodAdded)}
 
- function $SystemAnnouncer(){return smalltalk.SystemAnnouncer||(typeof SystemAnnouncer=="undefined"?nil:SystemAnnouncer)}
 
- function $MethodRemoved(){return smalltalk.MethodRemoved||(typeof MethodRemoved=="undefined"?nil:MethodRemoved)}
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1,$2;
 
- $1=_st($SystemAnnouncer())._current();
 
- _st($1)._on_do_($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_($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)})},
 
- messageSends: ["on:do:", "onMethodAdded:", "method", "current", "onMethodRemoved:"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onMethodAdded:",
 
- 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)})},
 
- messageSends: ["invalidateCacheFor:"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "onMethodRemoved:",
 
- 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)})},
 
- messageSends: ["invalidateCacheFor:"]}),
 
- smalltalk.HLSelectorsCache);
 
- smalltalk.HLSelectorsCache.klass.iVarNames = ['current'];
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "current",
 
- 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)})},
 
- messageSends: ["ifNil:", "new"]}),
 
- smalltalk.HLSelectorsCache.klass);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "flush",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@current"]=nil;
 
- return self}, function($ctx1) {$ctx1.fill(self,"flush",{},smalltalk.HLSelectorsCache.klass)})},
 
- messageSends: []}),
 
- smalltalk.HLSelectorsCache.klass);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "new",
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- _st(self)._shouldNotImplement();
 
- return self}, function($ctx1) {$ctx1.fill(self,"new",{},smalltalk.HLSelectorsCache.klass)})},
 
- messageSends: ["shouldNotImplement"]}),
 
- smalltalk.HLSelectorsCache.klass);
 
 
  |