1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114 |
- smalltalk.addPackage('Helios-References');
- smalltalk.addClass('HLMethodReference', smalltalk.Object, ['selector', 'methodClass'], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initializeFromMethod:",
- category: 'initialization',
- fn: function (aCompiledMethod){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self;
- _st($1)._selector_(_st(aCompiledMethod)._selector());
- $2=_st($1)._methodClass_(_st(aCompiledMethod)._methodClass());
- return self}, function($ctx1) {$ctx1.fill(self,"initializeFromMethod:",{aCompiledMethod:aCompiledMethod},smalltalk.HLMethodReference)})},
- args: ["aCompiledMethod"],
- source: "initializeFromMethod: aCompiledMethod\x0a\x09self\x0a\x09\x09selector: aCompiledMethod selector;\x0a\x09\x09methodClass: aCompiledMethod methodClass",
- messageSends: ["selector:", "selector", "methodClass:", "methodClass"],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "method",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._methodClass())._methodAt_(_st(self)._selector());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"method",{},smalltalk.HLMethodReference)})},
- args: [],
- source: "method\x0a\x09^ self methodClass methodAt: self selector",
- messageSends: ["methodAt:", "selector", "methodClass"],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "methodClass",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@methodClass"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"methodClass",{},smalltalk.HLMethodReference)})},
- args: [],
- source: "methodClass\x0a\x09^ methodClass",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "methodClass:",
- category: 'accessing',
- fn: function (aClass){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@methodClass"]=aClass;
- return self}, function($ctx1) {$ctx1.fill(self,"methodClass:",{aClass:aClass},smalltalk.HLMethodReference)})},
- args: ["aClass"],
- source: "methodClass: aClass\x0a\x09methodClass := aClass",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selector",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@selector"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"selector",{},smalltalk.HLMethodReference)})},
- args: [],
- source: "selector\x0a\x09^ selector",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selector:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@selector"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"selector:",{aString:aString},smalltalk.HLMethodReference)})},
- args: ["aString"],
- source: "selector: aString\x0a\x09selector := aString",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "source",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._method())._source();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"source",{},smalltalk.HLMethodReference)})},
- args: [],
- source: "source\x0a\x09^ self method source",
- messageSends: ["source", "method"],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "on:",
- category: 'instance creation',
- fn: function (aCompiledMethod){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st(self)._new();
- _st($2)._initializeFromMethod_(aCompiledMethod);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"on:",{aCompiledMethod:aCompiledMethod},smalltalk.HLMethodReference.klass)})},
- args: ["aCompiledMethod"],
- source: "on: aCompiledMethod\x0a\x09^ self new\x0a\x09\x09initializeFromMethod: aCompiledMethod;\x0a\x09\x09yourself",
- messageSends: ["initializeFromMethod:", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.HLMethodReference.klass);
- smalltalk.addClass('HLReferences', smalltalk.HLWidget, ['model', 'sendersListWidget', 'implementorsListWidget', 'classReferencesListWidget', 'regexpListWidget', 'sourceCodeWidget'], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "classReferencesListWidget",
- category: 'accessing',
- fn: function (){
- var self=this;
- function $HLClassReferencesListWidget(){return smalltalk.HLClassReferencesListWidget||(typeof HLClassReferencesListWidget=="undefined"?nil:HLClassReferencesListWidget)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@classReferencesListWidget"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@classReferencesListWidget"]=_st($HLClassReferencesListWidget())._on_(_st(self)._model());
- self["@classReferencesListWidget"];
- $1=_st(self["@classReferencesListWidget"])._next_(_st(self)._regexpListWidget());
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"classReferencesListWidget",{},smalltalk.HLReferences)})},
- args: [],
- source: "classReferencesListWidget\x0a\x09^ classReferencesListWidget ifNil: [\x0a \x09classReferencesListWidget := HLClassReferencesListWidget on: self model.\x0a\x09\x09classReferencesListWidget next: self regexpListWidget ]",
- messageSends: ["ifNil:", "on:", "model", "next:", "regexpListWidget"],
- referencedClasses: ["HLClassReferencesListWidget"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "implementorsListWidget",
- category: 'accessing',
- fn: function (){
- var self=this;
- function $HLImplementorsListWidget(){return smalltalk.HLImplementorsListWidget||(typeof HLImplementorsListWidget=="undefined"?nil:HLImplementorsListWidget)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@implementorsListWidget"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@implementorsListWidget"]=_st($HLImplementorsListWidget())._on_(_st(self)._model());
- self["@implementorsListWidget"];
- $1=_st(self["@implementorsListWidget"])._next_(_st(self)._classReferencesListWidget());
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"implementorsListWidget",{},smalltalk.HLReferences)})},
- args: [],
- source: "implementorsListWidget\x0a\x09^ implementorsListWidget ifNil: [\x0a \x09implementorsListWidget := HLImplementorsListWidget on: self model.\x0a\x09\x09implementorsListWidget next: self classReferencesListWidget ]",
- messageSends: ["ifNil:", "on:", "model", "next:", "classReferencesListWidget"],
- referencedClasses: ["HLImplementorsListWidget"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model",
- category: 'accessing',
- fn: function (){
- var self=this;
- function $HLReferencesModel(){return smalltalk.HLReferencesModel||(typeof HLReferencesModel=="undefined"?nil:HLReferencesModel)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$4,$1;
- $2=self["@model"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $3=_st($HLReferencesModel())._new();
- _st($3)._environment_(_st(_st(self)._manager())._environment());
- $4=_st($3)._yourself();
- self["@model"]=$4;
- $1=self["@model"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"model",{},smalltalk.HLReferences)})},
- args: [],
- source: "model\x0a\x09^ model ifNil: [\x0a\x09\x09model := (HLReferencesModel new\x0a\x09\x09\x09environment: self manager environment;\x0a\x09\x09\x09yourself) ]",
- messageSends: ["ifNil:", "environment:", "environment", "manager", "new", "yourself"],
- referencedClasses: ["HLReferencesModel"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (aModel){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@model"]=aModel;
- return self}, function($ctx1) {$ctx1.fill(self,"model:",{aModel:aModel},smalltalk.HLReferences)})},
- args: ["aModel"],
- source: "model: aModel\x0a\x09model := aModel",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "regexpListWidget",
- category: 'accessing',
- fn: function (){
- var self=this;
- function $HLRegexpListWidget(){return smalltalk.HLRegexpListWidget||(typeof HLRegexpListWidget=="undefined"?nil:HLRegexpListWidget)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@regexpListWidget"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@regexpListWidget"]=_st($HLRegexpListWidget())._on_(_st(self)._model());
- self["@regexpListWidget"];
- $1=_st(self["@regexpListWidget"])._next_(_st(self)._sourceCodeWidget());
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"regexpListWidget",{},smalltalk.HLReferences)})},
- args: [],
- source: "regexpListWidget\x0a\x09^ regexpListWidget ifNil: [\x0a \x09regexpListWidget := HLRegexpListWidget on: self model.\x0a\x09\x09regexpListWidget next: self sourceCodeWidget ]",
- messageSends: ["ifNil:", "on:", "model", "next:", "sourceCodeWidget"],
- referencedClasses: ["HLRegexpListWidget"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "registerBindingsOn:",
- category: 'actions',
- fn: function (aBindingGroup){
- var self=this;
- function $HLToolCommand(){return smalltalk.HLToolCommand||(typeof HLToolCommand=="undefined"?nil:HLToolCommand)}
- return smalltalk.withContext(function($ctx1) {
- _st($HLToolCommand())._registerConcreteClassesOn_for_(aBindingGroup,_st(self)._model());
- return self}, function($ctx1) {$ctx1.fill(self,"registerBindingsOn:",{aBindingGroup:aBindingGroup},smalltalk.HLReferences)})},
- args: ["aBindingGroup"],
- source: "registerBindingsOn: aBindingGroup\x0a\x09HLToolCommand \x0a\x09\x09registerConcreteClassesOn: aBindingGroup \x0a\x09\x09for: self model",
- messageSends: ["registerConcreteClassesOn:for:", "model"],
- referencedClasses: ["HLToolCommand"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderContentOn:",
- category: 'rendering',
- 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)._sendersListWidget(),_st(self)._implementorsListWidget()),_st($HLVerticalSplitter())._with_with_(_st(self)._classReferencesListWidget(),_st(self)._regexpListWidget())),_st(self)._sourceCodeWidget())));
- _st(_st(self)._sendersListWidget())._focus();
- return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.HLReferences)})},
- args: ["html"],
- source: "renderContentOn: html\x0a\x09html with: (HLContainer with: (HLHorizontalSplitter \x0a \x09with: (HLVerticalSplitter\x0a \x09with: (HLVerticalSplitter\x0a \x09with: self sendersListWidget\x0a with: self implementorsListWidget)\x0a with: (HLVerticalSplitter\x0a \x09with: self classReferencesListWidget\x0a with: self regexpListWidget)) \x0a with: self sourceCodeWidget)).\x0a\x09\x0a\x09self sendersListWidget focus",
- messageSends: ["with:", "with:with:", "sendersListWidget", "implementorsListWidget", "classReferencesListWidget", "regexpListWidget", "sourceCodeWidget", "focus"],
- referencedClasses: ["HLVerticalSplitter", "HLHorizontalSplitter", "HLContainer"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "search:",
- category: 'actions',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(self)._model())._search_(aString);
- return self}, function($ctx1) {$ctx1.fill(self,"search:",{aString:aString},smalltalk.HLReferences)})},
- args: ["aString"],
- source: "search: aString\x0a\x09self model search: aString",
- messageSends: ["search:", "model"],
- referencedClasses: []
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "sendersListWidget",
- category: 'accessing',
- fn: function (){
- var self=this;
- function $HLSendersListWidget(){return smalltalk.HLSendersListWidget||(typeof HLSendersListWidget=="undefined"?nil:HLSendersListWidget)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@sendersListWidget"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@sendersListWidget"]=_st($HLSendersListWidget())._on_(_st(self)._model());
- self["@sendersListWidget"];
- $1=_st(self["@sendersListWidget"])._next_(_st(self)._implementorsListWidget());
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"sendersListWidget",{},smalltalk.HLReferences)})},
- args: [],
- source: "sendersListWidget\x0a\x09^ sendersListWidget ifNil: [\x0a \x09sendersListWidget := HLSendersListWidget on: self model.\x0a\x09\x09sendersListWidget next: self implementorsListWidget ]",
- messageSends: ["ifNil:", "on:", "model", "next:", "implementorsListWidget"],
- referencedClasses: ["HLSendersListWidget"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "sourceCodeWidget",
- category: 'accessing',
- fn: function (){
- var self=this;
- function $HLBrowserCodeWidget(){return smalltalk.HLBrowserCodeWidget||(typeof HLBrowserCodeWidget=="undefined"?nil:HLBrowserCodeWidget)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$4,$1;
- $2=self["@sourceCodeWidget"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $3=_st($HLBrowserCodeWidget())._new();
- _st($3)._browserModel_(_st(self)._model());
- $4=_st($3)._yourself();
- self["@sourceCodeWidget"]=$4;
- $1=self["@sourceCodeWidget"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"sourceCodeWidget",{},smalltalk.HLReferences)})},
- args: [],
- source: "sourceCodeWidget\x0a\x09^ sourceCodeWidget ifNil: [\x0a \x09sourceCodeWidget := HLBrowserCodeWidget new\x0a\x09\x09\x09browserModel: self model;\x0a\x09\x09\x09yourself ]",
- messageSends: ["ifNil:", "browserModel:", "model", "new", "yourself"],
- referencedClasses: ["HLBrowserCodeWidget"]
- }),
- smalltalk.HLReferences);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "canBeOpenAsTab",
- category: 'testing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return false;
- }, function($ctx1) {$ctx1.fill(self,"canBeOpenAsTab",{},smalltalk.HLReferences.klass)})},
- args: [],
- source: "canBeOpenAsTab\x0a\x09^ false",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferences.klass);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "tabClass",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "references";
- }, function($ctx1) {$ctx1.fill(self,"tabClass",{},smalltalk.HLReferences.klass)})},
- args: [],
- source: "tabClass\x0a\x09^ 'references'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferences.klass);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "tabLabel",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "References";
- }, function($ctx1) {$ctx1.fill(self,"tabLabel",{},smalltalk.HLReferences.klass)})},
- args: [],
- source: "tabLabel\x0a\x09^ 'References'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferences.klass);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "tabPriority",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=(100);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"tabPriority",{},smalltalk.HLReferences.klass)})},
- args: [],
- source: "tabPriority\x0a\x09^ 100",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferences.klass);
- smalltalk.addClass('HLReferencesListWidget', smalltalk.HLToolListWidget, [], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "activateListItem:",
- category: 'actions',
- fn: function (anItem){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(self)._model())._withChangesDo_((function(){
- return smalltalk.withContext(function($ctx2) {
- return smalltalk.HLToolListWidget.fn.prototype._activateListItem_.apply(_st(self), [anItem]);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"activateListItem:",{anItem:anItem},smalltalk.HLReferencesListWidget)})},
- args: ["anItem"],
- source: "activateListItem: anItem\x0a\x09self model withChangesDo: [ super activateListItem: anItem ]",
- messageSends: ["withChangesDo:", "activateListItem:", "model"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "commandCategory",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "Methods";
- }, function($ctx1) {$ctx1.fill(self,"commandCategory",{},smalltalk.HLReferencesListWidget)})},
- args: [],
- source: "commandCategory\x0a\x09^ 'Methods'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "label",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "List";
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLReferencesListWidget)})},
- args: [],
- source: "label\x0a\x09^ 'List'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "observeModel",
- category: 'actions',
- fn: function (){
- var self=this;
- function $HLSearchReferences(){return smalltalk.HLSearchReferences||(typeof HLSearchReferences=="undefined"?nil:HLSearchReferences)}
- function $HLMethodSelected(){return smalltalk.HLMethodSelected||(typeof HLMethodSelected=="undefined"?nil:HLMethodSelected)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st(_st(self)._model())._announcer();
- _st($1)._on_do_($HLSearchReferences(),(function(ann){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._onSearchReferences_(_st(ann)._searchString());
- }, function($ctx2) {$ctx2.fillBlock({ann:ann},$ctx1)})}));
- $2=_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)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"observeModel",{},smalltalk.HLReferencesListWidget)})},
- args: [],
- source: "observeModel\x0a\x09self model announcer\x0a\x09\x09on: HLSearchReferences\x0a\x09\x09do: [ :ann | self onSearchReferences: ann searchString ];\x0a\x09\x09on: HLMethodSelected\x0a\x09\x09do: [ :ann | self onMethodSelected: ann item ]",
- messageSends: ["on:do:", "onSearchReferences:", "searchString", "announcer", "model", "onMethodSelected:", "item"],
- referencedClasses: ["HLSearchReferences", "HLMethodSelected"]
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onMethodSelected:",
- category: 'reactions',
- fn: function (aMethod){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4,$5;
- var $early={};
- try {
- $1=aMethod;
- if(($receiver = $1) == nil || $receiver == undefined){
- $2=self;
- return $2;
- } else {
- $1;
- };
- _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) {
- $3=self;
- throw $early=[$3];
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- $4=self;
- _st($4)._selectedItem_(_st(aMethod)._selector());
- $5=_st($4)._activateItem_(_st(aMethod)._selector());
- return self}
- catch(e) {if(e===$early)return e[0]; throw e}
- }, function($ctx1) {$ctx1.fill(self,"onMethodSelected:",{aMethod:aMethod},smalltalk.HLReferencesListWidget)})},
- args: ["aMethod"],
- source: "onMethodSelected: aMethod\x0a\x09aMethod ifNil: [ ^ self ].\x0a\x09self items detect: [ :each | each = aMethod selector ] ifNone: [ ^ self ].\x0a\x09\x0a\x09self \x0a\x09\x09selectedItem: aMethod selector;\x0a\x09\x09activateItem: aMethod selector\x09",
- messageSends: ["ifNil:", "detect:ifNone:", "=", "selector", "items", "selectedItem:", "activateItem:"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onSearchReferences:",
- category: 'reactions',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._subclassResponsibility();
- return self}, function($ctx1) {$ctx1.fill(self,"onSearchReferences:",{aString:aString},smalltalk.HLReferencesListWidget)})},
- args: ["aString"],
- source: "onSearchReferences: aString\x0a\x09self subclassResponsibility",
- messageSends: ["subclassResponsibility"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "renderItemLabel:on:",
- category: 'rendering',
- fn: function (aMethod,html){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(html)._with_(_st(_st(_st(_st(aMethod)._methodClass())._name()).__comma(" >> #")).__comma(_st(aMethod)._selector()));
- return self}, function($ctx1) {$ctx1.fill(self,"renderItemLabel:on:",{aMethod:aMethod,html:html},smalltalk.HLReferencesListWidget)})},
- args: ["aMethod", "html"],
- source: "renderItemLabel: aMethod on: html\x0a\x09html with: aMethod methodClass name, ' >> #', aMethod selector",
- messageSends: ["with:", ",", "selector", "name", "methodClass"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selectItem:",
- category: 'actions',
- fn: function (aMethod){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(self)._model())._selectedMethod_(aMethod);
- return self}, function($ctx1) {$ctx1.fill(self,"selectItem:",{aMethod:aMethod},smalltalk.HLReferencesListWidget)})},
- args: ["aMethod"],
- source: "selectItem: aMethod\x0a\x09self model selectedMethod: aMethod",
- messageSends: ["selectedMethod:", "model"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "on:",
- category: 'instance creation',
- fn: function (aModel){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st(self)._new();
- _st($2)._model_(aModel);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"on:",{aModel:aModel},smalltalk.HLReferencesListWidget.klass)})},
- args: ["aModel"],
- source: "on: aModel\x0a\x09^ self new \x0a\x09\x09model: aModel; \x0a\x09\x09yourself",
- messageSends: ["model:", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesListWidget.klass);
- smalltalk.addClass('HLClassReferencesListWidget', smalltalk.HLReferencesListWidget, [], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "label",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "Class references";
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLClassReferencesListWidget)})},
- args: [],
- source: "label\x0a\x09^ 'Class references'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLClassReferencesListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onSearchReferences:",
- category: 'reactions',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._selectItem_(nil);
- _st(self)._items_(_st(_st(self)._model())._classReferencesOf_(aString));
- _st(self)._refresh();
- return self}, function($ctx1) {$ctx1.fill(self,"onSearchReferences:",{aString:aString},smalltalk.HLClassReferencesListWidget)})},
- args: ["aString"],
- source: "onSearchReferences: aString\x0a\x09self selectItem: nil.\x0a\x09self items: (self model classReferencesOf: aString).\x0a\x09self refresh",
- messageSends: ["selectItem:", "items:", "classReferencesOf:", "model", "refresh"],
- referencedClasses: []
- }),
- smalltalk.HLClassReferencesListWidget);
- smalltalk.addClass('HLImplementorsListWidget', smalltalk.HLReferencesListWidget, [], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "label",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "Implementors";
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLImplementorsListWidget)})},
- args: [],
- source: "label\x0a\x09^ 'Implementors'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLImplementorsListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onSearchReferences:",
- category: 'reactions',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._selectItem_(nil);
- _st(self)._items_(_st(_st(self)._model())._implementorsOf_(aString));
- _st(self)._refresh();
- return self}, function($ctx1) {$ctx1.fill(self,"onSearchReferences:",{aString:aString},smalltalk.HLImplementorsListWidget)})},
- args: ["aString"],
- source: "onSearchReferences: aString\x0a\x09self selectItem: nil.\x0a\x09self items: (self model implementorsOf: aString).\x0a\x09self refresh",
- messageSends: ["selectItem:", "items:", "implementorsOf:", "model", "refresh"],
- referencedClasses: []
- }),
- smalltalk.HLImplementorsListWidget);
- smalltalk.addClass('HLRegexpListWidget', smalltalk.HLReferencesListWidget, [], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "label",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "Source search";
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRegexpListWidget)})},
- args: [],
- source: "label\x0a\x09^ 'Source search'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLRegexpListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onSearchReferences:",
- category: 'reactions',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._selectItem_(nil);
- _st(self)._items_(_st(_st(self)._model())._regexpReferencesOf_(aString));
- _st(self)._refresh();
- return self}, function($ctx1) {$ctx1.fill(self,"onSearchReferences:",{aString:aString},smalltalk.HLRegexpListWidget)})},
- args: ["aString"],
- source: "onSearchReferences: aString\x0a\x09self selectItem: nil.\x0a\x09self items: (self model regexpReferencesOf: aString).\x0a\x09self refresh",
- messageSends: ["selectItem:", "items:", "regexpReferencesOf:", "model", "refresh"],
- referencedClasses: []
- }),
- smalltalk.HLRegexpListWidget);
- smalltalk.addClass('HLSendersListWidget', smalltalk.HLReferencesListWidget, [], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "label",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "Senders";
- }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLSendersListWidget)})},
- args: [],
- source: "label\x0a\x09^ 'Senders'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLSendersListWidget);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "onSearchReferences:",
- category: 'reactions',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._selectItem_(nil);
- _st(self)._items_(_st(_st(self)._model())._sendersOf_(aString));
- _st(self)._refresh();
- return self}, function($ctx1) {$ctx1.fill(self,"onSearchReferences:",{aString:aString},smalltalk.HLSendersListWidget)})},
- args: ["aString"],
- source: "onSearchReferences: aString\x0a\x09self selectItem: nil.\x0a\x09self items: (self model sendersOf: aString).\x0a\x09self refresh",
- messageSends: ["selectItem:", "items:", "sendersOf:", "model", "refresh"],
- referencedClasses: []
- }),
- smalltalk.HLSendersListWidget);
- smalltalk.addClass('HLReferencesModel', smalltalk.HLToolModel, ['methodsCache', 'classesAndMetaclassesCache'], 'Helios-References');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "allMethods",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self)._methodsCache();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"allMethods",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "allMethods\x0a\x09^ self methodsCache",
- messageSends: ["methodsCache"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "allSelectors",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(_st(self)._allMethods())._collect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each)._selector();
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._asSet();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"allSelectors",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "allSelectors\x0a\x09^ (self allMethods \x0a\x09\x09collect: [ :each | each selector ])\x0a\x09\x09asSet",
- messageSends: ["asSet", "collect:", "selector", "allMethods"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "classReferencesOf:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- var references;
- function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- references=_st($OrderedCollection())._new();
- _st(_st(self)._classesAndMetaclasses())._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(_st(each)._methodDictionary())._values())._do_((function(method){
- return smalltalk.withContext(function($ctx3) {
- $1=_st(_st(method)._referencedClasses())._includes_(aString);
- if(smalltalk.assert($1)){
- return _st(references)._add_(method);
- };
- }, function($ctx3) {$ctx3.fillBlock({method:method},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- $2=references;
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"classReferencesOf:",{aString:aString,references:references},smalltalk.HLReferencesModel)})},
- args: ["aString"],
- source: "classReferencesOf: aString\x0a\x09\x22Answer all methods referencing the class named aString\x22\x0a\x09\x0a\x09| references |\x0a\x09\x0a\x09references := OrderedCollection new.\x0a\x09\x0a\x09self classesAndMetaclasses do: [ :each |\x0a\x09\x09each methodDictionary values do: [ :method |\x0a\x09\x09\x09(method referencedClasses includes: aString) ifTrue: [\x0a\x09\x09\x09\x09references add: method ] ] ].\x0a\x09\x09\x09\x09\x0a\x09^ references",
- messageSends: ["new", "do:", "ifTrue:", "add:", "includes:", "referencedClasses", "values", "methodDictionary", "classesAndMetaclasses"],
- referencedClasses: ["OrderedCollection"]
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "classesAndMetaclasses",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self)._classesAndMetaclassesCache();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"classesAndMetaclasses",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "classesAndMetaclasses\x0a\x09^ self classesAndMetaclassesCache",
- messageSends: ["classesAndMetaclassesCache"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "classesAndMetaclassesCache",
- category: 'cache',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self["@classesAndMetaclassesCache"];
- if(($receiver = $1) == nil || $receiver == undefined){
- _st(self)._updateClassesAndMetaclassesCache();
- } else {
- $1;
- };
- $2=self["@classesAndMetaclassesCache"];
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"classesAndMetaclassesCache",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "classesAndMetaclassesCache\x0a\x09classesAndMetaclassesCache ifNil: [ self updateClassesAndMetaclassesCache ].\x0a\x09\x0a\x09^ classesAndMetaclassesCache",
- messageSends: ["ifNil:", "updateClassesAndMetaclassesCache"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "implementorsOf:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(_st(self)._allMethods())._select_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(each)._selector()).__eq(aString);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._collect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._methodReferenceOn_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"implementorsOf:",{aString:aString},smalltalk.HLReferencesModel)})},
- args: ["aString"],
- source: "implementorsOf: aString\x0a\x09^ (self allMethods select: [ :each |\x0a\x09\x09each selector = aString ])\x0a\x09\x09\x09collect: [ :each | self methodReferenceOn: each ]",
- messageSends: ["collect:", "methodReferenceOn:", "select:", "=", "selector", "allMethods"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isReferencesModel",
- category: 'testing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return true;
- }, function($ctx1) {$ctx1.fill(self,"isReferencesModel",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "isReferencesModel\x0a\x09^ true",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "methodReferenceOn:",
- category: 'accessing',
- fn: function (aCompiledMethod){
- var self=this;
- function $HLMethodReference(){return smalltalk.HLMethodReference||(typeof HLMethodReference=="undefined"?nil:HLMethodReference)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st($HLMethodReference())._on_(aCompiledMethod);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"methodReferenceOn:",{aCompiledMethod:aCompiledMethod},smalltalk.HLReferencesModel)})},
- args: ["aCompiledMethod"],
- source: "methodReferenceOn: aCompiledMethod\x0a\x09^ HLMethodReference on: aCompiledMethod",
- messageSends: ["on:"],
- referencedClasses: ["HLMethodReference"]
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "methodsCache",
- category: 'cache',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self["@methodsCache"];
- if(($receiver = $1) == nil || $receiver == undefined){
- _st(self)._updateMethodsCache();
- } else {
- $1;
- };
- $2=self["@methodsCache"];
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"methodsCache",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "methodsCache\x0a\x09methodsCache ifNil: [ self updateMethodsCache ].\x0a\x09\x0a\x09^ methodsCache",
- messageSends: ["ifNil:", "updateMethodsCache"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "regexpReferencesOf:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(_st(self)._allMethods())._select_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(each)._source())._match_(aString);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._collect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._methodReferenceOn_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"regexpReferencesOf:",{aString:aString},smalltalk.HLReferencesModel)})},
- args: ["aString"],
- source: "regexpReferencesOf: aString\x0a\x09^ (self allMethods select: [ :each |\x0a\x09\x09each source match: aString ])\x0a\x09\x09\x09collect: [ :each | self methodReferenceOn: each ]",
- messageSends: ["collect:", "methodReferenceOn:", "select:", "match:", "source", "allMethods"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "search:",
- category: 'actions',
- fn: function (aString){
- var self=this;
- function $HLSearchReferences(){return smalltalk.HLSearchReferences||(typeof HLSearchReferences=="undefined"?nil:HLSearchReferences)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- _st(self)._updateCaches();
- $1=_st($HLSearchReferences())._new();
- _st($1)._searchString_(aString);
- $2=_st($1)._yourself();
- _st(_st(self)._announcer())._announce_($2);
- return self}, function($ctx1) {$ctx1.fill(self,"search:",{aString:aString},smalltalk.HLReferencesModel)})},
- args: ["aString"],
- source: "search: aString\x0a\x09self updateCaches.\x0a\x09\x0a\x09self announcer announce: (HLSearchReferences new\x0a\x09\x09searchString: aString;\x0a\x09\x09yourself)",
- messageSends: ["updateCaches", "announce:", "searchString:", "new", "yourself", "announcer"],
- referencedClasses: ["HLSearchReferences"]
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "sendersOf:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(_st(self)._allMethods())._select_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(each)._messageSends())._includes_(aString);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._collect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._methodReferenceOn_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"sendersOf:",{aString:aString},smalltalk.HLReferencesModel)})},
- args: ["aString"],
- source: "sendersOf: aString\x0a\x09^ (self allMethods select: [ :each |\x0a\x09\x09each messageSends includes: aString ])\x0a\x09\x09\x09collect: [ :each | self methodReferenceOn: each ]",
- messageSends: ["collect:", "methodReferenceOn:", "select:", "includes:", "messageSends", "allMethods"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "updateCaches",
- category: 'cache',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self;
- _st($1)._updateClassesAndMetaclassesCache();
- $2=_st($1)._updateMethodsCache();
- return self}, function($ctx1) {$ctx1.fill(self,"updateCaches",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "updateCaches\x0a\x09self \x0a\x09\x09updateClassesAndMetaclassesCache;\x0a\x09\x09updateMethodsCache",
- messageSends: ["updateClassesAndMetaclassesCache", "updateMethodsCache"],
- referencedClasses: []
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "updateClassesAndMetaclassesCache",
- category: 'cache',
- fn: function (){
- var self=this;
- function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- self["@classesAndMetaclassesCache"]=_st(_st(_st(self)._environment())._classes())._inject_into_(_st($OrderedCollection())._new(),(function(acc,each){
- return smalltalk.withContext(function($ctx2) {
- $1=acc;
- _st($1)._add_(each);
- _st($1)._add_(_st(each)._class());
- $2=_st($1)._yourself();
- return $2;
- }, function($ctx2) {$ctx2.fillBlock({acc:acc,each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"updateClassesAndMetaclassesCache",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "updateClassesAndMetaclassesCache\x0a\x09classesAndMetaclassesCache := self environment classes \x0a\x09\x09inject: OrderedCollection new \x0a\x09\x09into: [ :acc :each |\x0a\x09\x09\x09acc \x0a\x09\x09\x09\x09add: each; \x0a\x09\x09\x09\x09add: each class;\x0a\x09\x09\x09\x09yourself ]",
- messageSends: ["inject:into:", "new", "add:", "class", "yourself", "classes", "environment"],
- referencedClasses: ["OrderedCollection"]
- }),
- smalltalk.HLReferencesModel);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "updateMethodsCache",
- category: 'cache',
- fn: function (){
- var self=this;
- function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
- return smalltalk.withContext(function($ctx1) {
- self["@methodsCache"]=_st(_st(self)._classesAndMetaclasses())._inject_into_(_st($OrderedCollection())._new(),(function(acc,each){
- return smalltalk.withContext(function($ctx2) {
- return _st(acc).__comma(_st(each)._methods());
- }, function($ctx2) {$ctx2.fillBlock({acc:acc,each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"updateMethodsCache",{},smalltalk.HLReferencesModel)})},
- args: [],
- source: "updateMethodsCache\x0a\x09methodsCache := self classesAndMetaclasses\x0a\x09\x09inject: OrderedCollection new\x0a\x09\x09into: [ :acc :each |\x0a\x09\x09\x09acc, each methods ]",
- messageSends: ["inject:into:", "new", ",", "methods", "classesAndMetaclasses"],
- referencedClasses: ["OrderedCollection"]
- }),
- smalltalk.HLReferencesModel);
|