12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403 |
- smalltalk.addPackage('Helios-Inspector', {});
- smalltalk.addClass('HLInspector', smalltalk.HLWidget, ['model', 'variables', 'display', 'code', 'label'], 'Helios-Inspector');
- smalltalk.addMethod(
- "_code",
- smalltalk.method({
- selector: "code",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@code"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeCode",[]);
- } else {
- $1=self["@code"];
- };
- return $1;
- },
- args: [],
- source: "code\x0a\x0a\x09^ code ifNil:[self initializeCode]",
- messageSends: ["ifNil:", "initializeCode"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_display",
- smalltalk.method({
- selector: "display",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@display"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeDisplay",[]);
- } else {
- $1=self["@display"];
- };
- return $1;
- },
- args: [],
- source: "display\x0a\x0a\x09^ display ifNil:[self initializeDisplay]",
- messageSends: ["ifNil:", "initializeDisplay"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_ensureModel",
- smalltalk.method({
- selector: "ensureModel",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_observeVariables",[]);
- if(($receiver = self["@model"]) == nil || $receiver == undefined){
- smalltalk.send(self,"_model_",[smalltalk.send(self,"_model",[])]);
- } else {
- self["@model"];
- };
- return self},
- args: [],
- source: "ensureModel\x0a\x09\x22Sends the #model: initialization message if needed.\x22\x0a\x0a\x09self observeVariables.\x0a \x0a\x09model ifNil:[\x0a\x09\x09self model: self model]\x0a\x09",
- messageSends: ["observeVariables", "ifNil:", "model:", "model"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_initializeCode",
- smalltalk.method({
- selector: "initializeCode",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@code"]=smalltalk.send(self,"_makeCode",[]);
- $1=self["@code"];
- return $1;
- },
- args: [],
- source: "initializeCode\x0a\x0a\x09^ code := self makeCode.",
- messageSends: ["makeCode"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_initializeDisplay",
- smalltalk.method({
- selector: "initializeDisplay",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@display"]=smalltalk.send(self,"_makeDisplay",[]);
- $1=self["@display"];
- return $1;
- },
- args: [],
- source: "initializeDisplay\x0a\x09^ display := self makeDisplay",
- messageSends: ["makeDisplay"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_initializeLabel",
- smalltalk.method({
- selector: "initializeLabel",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@label"]=smalltalk.send(smalltalk.send(self["@model"],"_inspectee",[]),"_printString",[]);
- $1=self["@label"];
- return $1;
- },
- args: [],
- source: "initializeLabel\x0a\x09^ label := model inspectee printString",
- messageSends: ["printString", "inspectee"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_initializeModel",
- smalltalk.method({
- selector: "initializeModel",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@model"]=smalltalk.send((smalltalk.HLInspectorModel || HLInspectorModel),"_new",[]);
- $1=self["@model"];
- return $1;
- },
- args: [],
- source: "initializeModel\x0a\x0a\x09^ model := HLInspectorModel new",
- messageSends: ["new"],
- referencedClasses: ["HLInspectorModel"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_initializeVariables",
- smalltalk.method({
- selector: "initializeVariables",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@variables"]=smalltalk.send(self,"_makeVariables",[]);
- $1=self["@variables"];
- return $1;
- },
- args: [],
- source: "initializeVariables\x0a\x09^ variables := self makeVariables",
- messageSends: ["makeVariables"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_inspect_",
- smalltalk.method({
- selector: "inspect:",
- category: 'actions',
- fn: function (anObject){
- var self=this;
- var $1;
- smalltalk.send(smalltalk.send(self,"_model",[]),"_inspect_on_",[anObject,self]);
- smalltalk.send(self,"_refreshVariables",[]);
- smalltalk.send(self,"_refreshDisplay",[]);
- $1=smalltalk.send(self,"_yourself",[]);
- return self},
- args: ["anObject"],
- source: "inspect: anObject\x0a\x0a\x09self model inspect: anObject on: self.\x0a \x0a\x09self \x0a \x09refreshVariables;\x0a\x09\x09refreshDisplay;\x0a yourself",
- messageSends: ["inspect:on:", "model", "refreshVariables", "refreshDisplay", "yourself"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_inspectee",
- smalltalk.method({
- selector: "inspectee",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self,"_model",[]),"_inspectee",[]);
- return $1;
- },
- args: [],
- source: "inspectee\x0a\x0a\x09^ self model inspectee",
- messageSends: ["inspectee", "model"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_inspectee_",
- smalltalk.method({
- selector: "inspectee:",
- category: 'accessing',
- fn: function (anObject){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_model",[]),"_inspectee_",[anObject]);
- return self},
- args: ["anObject"],
- source: "inspectee: anObject\x0a\x0a\x09self model inspectee: anObject",
- messageSends: ["inspectee:", "model"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_label",
- smalltalk.method({
- selector: "label",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@label"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeLabel",[]);
- } else {
- $1=self["@label"];
- };
- return $1;
- },
- args: [],
- source: "label\x0a\x09\x0a ^ label ifNil:[self initializeLabel]",
- messageSends: ["ifNil:", "initializeLabel"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_makeCode",
- smalltalk.method({
- selector: "makeCode",
- category: 'actions',
- fn: function (){
- var self=this;
- var $2,$3,$1;
- $2=smalltalk.send((smalltalk.HLCodeWidget || HLCodeWidget),"_new",[]);
- smalltalk.send($2,"_model_",[smalltalk.send(self["@model"],"_code",[])]);
- smalltalk.send($2,"_receiver_",[smalltalk.send(self["@model"],"_inspectee",[])]);
- $3=smalltalk.send($2,"_yourself",[]);
- $1=$3;
- return $1;
- },
- args: [],
- source: "makeCode\x0a\x0a\x09^ HLCodeWidget new\x0a \x09model: model code;\x0a receiver: model inspectee;\x0a yourself.\x0a \x0a",
- messageSends: ["model:", "code", "new", "receiver:", "inspectee", "yourself"],
- referencedClasses: ["HLCodeWidget"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_makeDisplay",
- smalltalk.method({
- selector: "makeDisplay",
- category: 'actions',
- fn: function (){
- var self=this;
- var $2,$3,$1;
- $2=smalltalk.send((smalltalk.HLInspectorDisplay || HLInspectorDisplay),"_new",[]);
- smalltalk.send($2,"_model_",[smalltalk.send(self,"_model",[])]);
- $3=smalltalk.send($2,"_yourself",[]);
- $1=$3;
- return $1;
- },
- args: [],
- source: "makeDisplay\x0a\x0a\x09^ HLInspectorDisplay new\x0a \x09model: self model;\x0a yourself\x0a",
- messageSends: ["model:", "model", "new", "yourself"],
- referencedClasses: ["HLInspectorDisplay"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_makeVariables",
- smalltalk.method({
- selector: "makeVariables",
- category: 'actions',
- fn: function (){
- var self=this;
- var $2,$3,$1;
- $2=smalltalk.send((smalltalk.HLInspectorVariables || HLInspectorVariables),"_new",[]);
- smalltalk.send($2,"_model_",[smalltalk.send(self,"_model",[])]);
- $3=smalltalk.send($2,"_yourself",[]);
- $1=$3;
- return $1;
- },
- args: [],
- source: "makeVariables\x0a\x0a\x09^ HLInspectorVariables new\x0a \x09model: self model;\x0a yourself\x0a",
- messageSends: ["model:", "model", "new", "yourself"],
- referencedClasses: ["HLInspectorVariables"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_model",
- smalltalk.method({
- selector: "model",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@model"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeModel",[]);
- } else {
- $1=self["@model"];
- };
- return $1;
- },
- args: [],
- source: "model\x0a\x0a\x09^ model ifNil:[self initializeModel]",
- messageSends: ["ifNil:", "initializeModel"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_model_",
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (aModel){
- var self=this;
- self["@model"]=aModel;
- smalltalk.send(smalltalk.send(self,"_code",[]),"_model_",[smalltalk.send(aModel,"_code",[])]);
- smalltalk.send(self,"_observeCode",[]);
- return self},
- args: ["aModel"],
- source: "model: aModel\x0a\x0a\x09model := aModel.\x0a \x0a self code model: aModel code.\x0a self observeCode.\x0a ",
- messageSends: ["model:", "code", "observeCode"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_observeCode",
- smalltalk.method({
- selector: "observeCode",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(smalltalk.send(self,"_code",[]),"_announcer",[]),"_on_do_",[(smalltalk.HLDoItExecuted || HLDoItExecuted),(function(){
- return smalltalk.send(self,"_onDoneIt",[]);
- })]);
- return self},
- args: [],
- source: "observeCode\x0a\x0a\x09self code announcer \x0a \x09on: HLDoItExecuted \x0a do: [self onDoneIt]\x0a",
- messageSends: ["on:do:", "onDoneIt", "announcer", "code"],
- referencedClasses: ["HLDoItExecuted"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_observeVariables",
- smalltalk.method({
- selector: "observeVariables",
- category: 'actions',
- fn: function (){
- var self=this;
- var $1,$2,$3,$4;
- $1=smalltalk.send(smalltalk.send(self,"_variables",[]),"_announcer",[]);
- smalltalk.send($1,"_on_do_",[(smalltalk.HLRefreshRequested || HLRefreshRequested),(function(ann){
- return smalltalk.send(self,"_onRefresh",[]);
- })]);
- $2=smalltalk.send($1,"_yourself",[]);
- $3=smalltalk.send(smalltalk.send(self,"_model",[]),"_announcer",[]);
- smalltalk.send($3,"_on_do_",[(smalltalk.HLInstanceVariableSelected || HLInstanceVariableSelected),(function(ann){
- return smalltalk.send(self,"_onInstanceVariableSelected",[]);
- })]);
- $4=smalltalk.send($3,"_yourself",[]);
- return self},
- args: [],
- source: "observeVariables\x0a\x0a\x09self variables announcer \x0a \x09on: HLRefreshRequested do:[:ann| self onRefresh];\x0a yourself.\x0a\x0a\x09self model announcer\x0a on: HLInstanceVariableSelected do:[:ann| self onInstanceVariableSelected];\x0a yourself.\x0a ",
- messageSends: ["on:do:", "onRefresh", "announcer", "variables", "yourself", "onInstanceVariableSelected", "model"],
- referencedClasses: ["HLRefreshRequested", "HLInstanceVariableSelected"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_onDoIt",
- smalltalk.method({
- selector: "onDoIt",
- category: 'reactions',
- fn: function (){
- var self=this;
- return self},
- args: [],
- source: "onDoIt",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_onDoneIt",
- smalltalk.method({
- selector: "onDoneIt",
- category: 'reactions',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_refresh",[]);
- return self},
- args: [],
- source: "onDoneIt\x0a\x0a\x09self refresh",
- messageSends: ["refresh"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_onInspectIt",
- smalltalk.method({
- selector: "onInspectIt",
- category: 'reactions',
- fn: function (){
- var self=this;
- return self},
- args: [],
- source: "onInspectIt",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_onInstanceVariableSelected",
- smalltalk.method({
- selector: "onInstanceVariableSelected",
- category: 'reactions',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_refreshDisplay",[]);
- return self},
- args: [],
- source: "onInstanceVariableSelected\x0a\x0a\x09self refreshDisplay",
- messageSends: ["refreshDisplay"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_onPrintIt",
- smalltalk.method({
- selector: "onPrintIt",
- category: 'reactions',
- fn: function (){
- var self=this;
- return self},
- args: [],
- source: "onPrintIt",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_onRefresh",
- smalltalk.method({
- selector: "onRefresh",
- category: 'reactions',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_refresh",[]);
- return self},
- args: [],
- source: "onRefresh\x0a\x0a\x09self refresh",
- messageSends: ["refresh"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_open",
- smalltalk.method({
- selector: "open",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.HLManager || HLManager),"_current",[]),"_addTab_",[smalltalk.send((smalltalk.HLTab || HLTab),"_on_labelled_",[self,smalltalk.send(self,"_tabLabel",[])])]);
- return self},
- args: [],
- source: "open\x0a\x0a\x09HLManager current addTab: (HLTab on: self labelled: self tabLabel)\x0a",
- messageSends: ["addTab:", "on:labelled:", "tabLabel", "current"],
- referencedClasses: ["HLTab", "HLManager"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_refresh",
- smalltalk.method({
- selector: "refresh",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_inspect_",[smalltalk.send(self,"_inspectee",[])]);
- return self},
- args: [],
- source: "refresh\x0a\x0a\x09self inspect: self inspectee",
- messageSends: ["inspect:", "inspectee"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_refreshDisplay",
- smalltalk.method({
- selector: "refreshDisplay",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_display",[]),"_refresh",[]);
- return self},
- args: [],
- source: "refreshDisplay\x0a\x0a\x09self display refresh",
- messageSends: ["refresh", "display"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_refreshVariables",
- smalltalk.method({
- selector: "refreshVariables",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_variables",[]),"_refresh",[]);
- return self},
- args: [],
- source: "refreshVariables\x0a\x0a\x09self variables refresh",
- messageSends: ["refresh", "variables"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- category: 'rendering',
- fn: function (html){
- var self=this;
- smalltalk.send(self,"_ensureModel",[]);
- smalltalk.send(html,"_with_",[smalltalk.send((smalltalk.HLContainer || HLContainer),"_with_",[smalltalk.send((smalltalk.HLHorizontalSplitter || HLHorizontalSplitter),"_with_with_",[smalltalk.send((smalltalk.HLVerticalSplitter || HLVerticalSplitter),"_with_with_",[smalltalk.send(self,"_variables",[]),smalltalk.send(self,"_display",[])]),smalltalk.send(self,"_code",[])])])]);
- return self},
- args: ["html"],
- source: "renderContentOn: html\x0a\x0a\x09self ensureModel.\x0a \x0a \x09html with: (HLContainer with: (HLHorizontalSplitter\x0a \x09with: (HLVerticalSplitter \x0a \x09\x09with: self variables\x0a \x09 with: self display)\x0a with: self code))\x0a ",
- messageSends: ["ensureModel", "with:", "with:with:", "variables", "display", "code"],
- referencedClasses: ["HLVerticalSplitter", "HLHorizontalSplitter", "HLContainer"]
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_setLabel_",
- smalltalk.method({
- selector: "setLabel:",
- category: 'actions',
- fn: function (aString){
- var self=this;
- self["@label"]=aString;
- return self},
- args: ["aString"],
- source: "setLabel: aString\x0a\x09label := aString",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_setVariables_",
- smalltalk.method({
- selector: "setVariables:",
- category: 'actions',
- fn: function (aDictionary){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_model",[]),"_variables_",[aDictionary]);
- return self},
- args: ["aDictionary"],
- source: "setVariables: aDictionary\x0a\x0a\x09self model variables: aDictionary",
- messageSends: ["variables:", "model"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_tabLabel",
- smalltalk.method({
- selector: "tabLabel",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self,"_label",[]);
- return $1;
- },
- args: [],
- source: "tabLabel\x0a\x09\x0a ^ self label",
- messageSends: ["label"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_variables",
- smalltalk.method({
- selector: "variables",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@variables"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeVariables",[]);
- } else {
- $1=self["@variables"];
- };
- return $1;
- },
- args: [],
- source: "variables\x0a\x0a\x09^ variables ifNil:[self initializeVariables]",
- messageSends: ["ifNil:", "initializeVariables"],
- referencedClasses: []
- }),
- smalltalk.HLInspector);
- smalltalk.addMethod(
- "_canBeOpenAsTab",
- smalltalk.method({
- selector: "canBeOpenAsTab",
- category: 'testing',
- fn: function (){
- var self=this;
- return false;
- },
- args: [],
- source: "canBeOpenAsTab\x0a\x09^ false",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspector.klass);
- smalltalk.addMethod(
- "_tabLabel",
- smalltalk.method({
- selector: "tabLabel",
- category: 'accessing',
- fn: function (){
- var self=this;
- return "Inspector";
- },
- args: [],
- source: "tabLabel\x0a\x09^ 'Inspector'",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspector.klass);
- smalltalk.addMethod(
- "_tabPriority",
- smalltalk.method({
- selector: "tabPriority",
- category: 'accessing',
- fn: function (){
- var self=this;
- return (10);
- },
- args: [],
- source: "tabPriority\x0a\x09^ 10",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspector.klass);
- smalltalk.addClass('HLInspectorDisplay', smalltalk.HLNavigationListWidget, ['model'], 'Helios-Inspector');
- smalltalk.addMethod(
- "_model",
- smalltalk.method({
- selector: "model",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@model"];
- },
- args: [],
- source: "model\x0a\x0a\x09^ model",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorDisplay);
- smalltalk.addMethod(
- "_model_",
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (aModel){
- var self=this;
- self["@model"]=aModel;
- return self},
- args: ["aModel"],
- source: "model: aModel\x0a\x0a\x09model := aModel",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorDisplay);
- smalltalk.addMethod(
- "_renderContentOn_",
- smalltalk.method({
- selector: "renderContentOn:",
- category: 'rendering',
- fn: function (html){
- var self=this;
- smalltalk.send(smalltalk.send(html,"_div",[]),"_with_",[smalltalk.send(self,"_selectionDisplayString",[])]);
- return self},
- args: ["html"],
- source: "renderContentOn: html\x0a\x09\x0a html div with: self selectionDisplayString\x0a ",
- messageSends: ["with:", "selectionDisplayString", "div"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorDisplay);
- smalltalk.addMethod(
- "_selectionDisplayString",
- smalltalk.method({
- selector: "selectionDisplayString",
- category: 'rendering',
- fn: function (){
- var self=this;
- var $2,$1;
- var selection;
- selection=smalltalk.send(self["@model"],"_selection",[]);
- $2=smalltalk.send(smalltalk.send(smalltalk.send(self["@model"],"_variables",[]),"_keys",[]),"_includes_",[selection]);
- if(smalltalk.assert($2)){
- $1=smalltalk.send(smalltalk.send(self["@model"],"_instVarObjectAt_",[selection]),"_printString",[]);
- } else {
- $1="";
- };
- return $1;
- },
- args: [],
- source: "selectionDisplayString\x0a\x09|selection|\x0a\x09selection := model selection.\x0a ^ (model variables keys includes: selection)\x0a \x09ifTrue:[(model instVarObjectAt: selection) printString]\x0a \x09ifFalse:['']",
- messageSends: ["selection", "ifTrue:ifFalse:", "printString", "instVarObjectAt:", "includes:", "keys", "variables"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorDisplay);
- smalltalk.addClass('HLInspectorModel', smalltalk.Object, ['announcer', 'environment', 'inspectee', 'code', 'variables', 'selection'], 'Helios-Inspector');
- smalltalk.addMethod(
- "_announcer",
- smalltalk.method({
- selector: "announcer",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@announcer"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeAnnouncer",[]);
- } else {
- $1=self["@announcer"];
- };
- return $1;
- },
- args: [],
- source: "announcer\x0a\x09^ announcer ifNil: [ self initializeAnnouncer ]",
- messageSends: ["ifNil:", "initializeAnnouncer"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_beLocal",
- smalltalk.method({
- selector: "beLocal",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_initializeEnvironment",[]);
- return self},
- args: [],
- source: "beLocal\x0a\x0a\x09self initializeEnvironment\x0a",
- messageSends: ["initializeEnvironment"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_beRemoteOn_port_",
- smalltalk.method({
- selector: "beRemoteOn:port:",
- category: 'actions',
- fn: function (anIPAddress,aPort){
- var self=this;
- return self},
- args: ["anIPAddress", "aPort"],
- source: "beRemoteOn: anIPAddress port: aPort\x0a\x0a\x09\x22to-do\x22\x0a \x0a \x22environment := HLRemoteEnvironment on: anIPAddress port: aPort\x0a \x0a ...kind of stuff\x22\x0a \x0a",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_code",
- smalltalk.method({
- selector: "code",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@code"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeCode",[]);
- } else {
- $1=self["@code"];
- };
- return $1;
- },
- args: [],
- source: "code\x0a\x09\x22Answers the code model working for this workspace model\x22\x0a\x09^ code ifNil:[self initializeCode]",
- messageSends: ["ifNil:", "initializeCode"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_environment",
- smalltalk.method({
- selector: "environment",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@environment"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeEnvironment",[]);
- } else {
- $1=self["@environment"];
- };
- return $1;
- },
- args: [],
- source: "environment\x0a\x09^ environment ifNil: [ self initializeEnvironment]",
- messageSends: ["ifNil:", "initializeEnvironment"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_environment_",
- smalltalk.method({
- selector: "environment:",
- category: 'accessing',
- fn: function (anEnvironment){
- var self=this;
- self["@environment"]=anEnvironment;
- return self},
- args: ["anEnvironment"],
- source: "environment: anEnvironment\x0a\x09environment := anEnvironment",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_initializeAnnouncer",
- smalltalk.method({
- selector: "initializeAnnouncer",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@announcer"]=smalltalk.send((smalltalk.Announcer || Announcer),"_new",[]);
- $1=self["@announcer"];
- return $1;
- },
- args: [],
- source: "initializeAnnouncer\x0a\x09^ announcer := Announcer new",
- messageSends: ["new"],
- referencedClasses: ["Announcer"]
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_initializeCode",
- smalltalk.method({
- selector: "initializeCode",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@code"]=smalltalk.send((smalltalk.HLCodeModel || HLCodeModel),"_on_",[smalltalk.send(self,"_environment",[])]);
- $1=self["@code"];
- return $1;
- },
- args: [],
- source: "initializeCode\x0a\x0a\x09^ code := HLCodeModel on: self environment",
- messageSends: ["on:", "environment"],
- referencedClasses: ["HLCodeModel"]
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_initializeEnvironment",
- smalltalk.method({
- selector: "initializeEnvironment",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@environment"]=smalltalk.send((smalltalk.HLLocalEnvironment || HLLocalEnvironment),"_new",[]);
- $1=self["@environment"];
- return $1;
- },
- args: [],
- source: "initializeEnvironment\x0a\x09^ environment := HLLocalEnvironment new",
- messageSends: ["new"],
- referencedClasses: ["HLLocalEnvironment"]
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_initializeSelection",
- smalltalk.method({
- selector: "initializeSelection",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@selection"]="";
- $1=self["@selection"];
- return $1;
- },
- args: [],
- source: "initializeSelection\x0a\x0a\x09^ selection := ''",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_inspect_on_",
- smalltalk.method({
- selector: "inspect:on:",
- category: 'actions',
- fn: function (anObject,anInspector){
- var self=this;
- self["@inspectee"]=anObject;
- self["@variables"]=[];
- smalltalk.send(self["@inspectee"],"_inspectOn_",[anInspector]);
- return self},
- args: ["anObject", "anInspector"],
- source: "inspect: anObject on: anInspector\x0a\x0a\x09inspectee := anObject.\x0a\x09variables := #().\x0a\x09inspectee inspectOn: anInspector \x0a",
- messageSends: ["inspectOn:"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_inspectee",
- smalltalk.method({
- selector: "inspectee",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@inspectee"];
- },
- args: [],
- source: "inspectee \x0a\x0a\x09^ inspectee ",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_inspectee_",
- smalltalk.method({
- selector: "inspectee:",
- category: 'accessing',
- fn: function (anObject){
- var self=this;
- self["@inspectee"]=anObject;
- return self},
- args: ["anObject"],
- source: "inspectee: anObject \x0a\x0a\x09inspectee := anObject\x0a ",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_instVarObjectAt_",
- smalltalk.method({
- selector: "instVarObjectAt:",
- category: 'actions',
- fn: function (anInstVarName){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self,"_variables",[]),"_at_",[anInstVarName]);
- return $1;
- },
- args: ["anInstVarName"],
- source: "instVarObjectAt: anInstVarName\x0a\x0a\x09^ self variables at: anInstVarName",
- messageSends: ["at:", "variables"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_onKeyDown_",
- smalltalk.method({
- selector: "onKeyDown:",
- category: 'reactions',
- fn: function (anEvent){
- var self=this;
- if(anEvent.ctrlKey) {
- if(anEvent.keyCode === 80) { //ctrl+p
- self._printIt();
- anEvent.preventDefault();
- return false;
- }
- if(anEvent.keyCode === 68) { //ctrl+d
- self._doIt();
- anEvent.preventDefault();
- return false;
- }
- if(anEvent.keyCode === 73) { //ctrl+i
- self._inspectIt();
- anEvent.preventDefault();
- return false;
- }
- };
- ;
- return self},
- args: ["anEvent"],
- source: "onKeyDown: anEvent\x0a\x0a\x09<if(anEvent.ctrlKey) {\x0a\x09\x09if(anEvent.keyCode === 80) { //ctrl+p\x0a\x09\x09\x09self._printIt();\x0a\x09\x09\x09anEvent.preventDefault();\x0a\x09\x09\x09return false;\x0a\x09\x09}\x0a\x09\x09if(anEvent.keyCode === 68) { //ctrl+d\x0a\x09\x09\x09self._doIt();\x0a\x09\x09\x09anEvent.preventDefault();\x0a\x09\x09\x09return false;\x0a\x09\x09}\x0a\x09\x09if(anEvent.keyCode === 73) { //ctrl+i\x0a\x09\x09\x09self._inspectIt();\x0a\x09\x09\x09anEvent.preventDefault();\x0a\x09\x09\x09return false;\x0a\x09\x09}\x0a\x09}>",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_selectedInstVar_",
- smalltalk.method({
- selector: "selectedInstVar:",
- category: 'actions',
- fn: function (anInstVarName){
- var self=this;
- smalltalk.send(self,"_selection_",[anInstVarName]);
- return self},
- args: ["anInstVarName"],
- source: "selectedInstVar: anInstVarName\x0a\x0a self selection: anInstVarName\x0a\x0a\x09\x22self selection: (self variables keyAtValue: anInstVarObject)\x22",
- messageSends: ["selection:"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_selectedInstVarObject",
- smalltalk.method({
- selector: "selectedInstVarObject",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self,"_instVarObjectAt_",[smalltalk.send(self,"_selection",[])]);
- return $1;
- },
- args: [],
- source: "selectedInstVarObject\x0a\x0a\x09^ self instVarObjectAt: self selection\x0a ",
- messageSends: ["instVarObjectAt:", "selection"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_selection",
- smalltalk.method({
- selector: "selection",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@selection"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeSelection",[]);
- } else {
- $1=self["@selection"];
- };
- return $1;
- },
- args: [],
- source: "selection\x0a\x0a\x09^ selection ifNil:[self initializeSelection] ",
- messageSends: ["ifNil:", "initializeSelection"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_selection_",
- smalltalk.method({
- selector: "selection:",
- category: 'accessing',
- fn: function (anObject){
- var self=this;
- self["@selection"]=anObject;
- smalltalk.send(smalltalk.send(self,"_announcer",[]),"_announce_",[smalltalk.send((smalltalk.HLInstanceVariableSelected || HLInstanceVariableSelected),"_on_",[self["@selection"]])]);
- return self},
- args: ["anObject"],
- source: "selection: anObject\x0a\x0a\x09selection := anObject.\x0a\x0a\x09self announcer announce: (HLInstanceVariableSelected on: selection)\x0a ",
- messageSends: ["announce:", "on:", "announcer"],
- referencedClasses: ["HLInstanceVariableSelected"]
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_subscribe_",
- smalltalk.method({
- selector: "subscribe:",
- category: 'actions',
- fn: function (aWidget){
- var self=this;
- smalltalk.send(aWidget,"_subscribeTo_",[smalltalk.send(self,"_announcer",[])]);
- return self},
- args: ["aWidget"],
- source: "subscribe: aWidget\x0a\x09aWidget subscribeTo: self announcer",
- messageSends: ["subscribeTo:", "announcer"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_variables",
- smalltalk.method({
- selector: "variables",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@variables"];
- },
- args: [],
- source: "variables\x0a\x0a\x09^ variables",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_variables_",
- smalltalk.method({
- selector: "variables:",
- category: 'accessing',
- fn: function (aCollection){
- var self=this;
- self["@variables"]=aCollection;
- return self},
- args: ["aCollection"],
- source: "variables: aCollection\x0a\x0a\x09variables := aCollection\x0a ",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel);
- smalltalk.addMethod(
- "_on_",
- smalltalk.method({
- selector: "on:",
- category: 'actions',
- fn: function (anEnvironment){
- var self=this;
- var $2,$3,$1;
- $2=smalltalk.send(self,"_new",[]);
- smalltalk.send($2,"_environment_",[anEnvironment]);
- $3=smalltalk.send($2,"_yourself",[]);
- $1=$3;
- return $1;
- },
- args: ["anEnvironment"],
- source: "on: anEnvironment\x0a\x0a\x09^ self new\x0a \x09environment: anEnvironment;\x0a yourself",
- messageSends: ["environment:", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorModel.klass);
- smalltalk.addClass('HLInspectorVariables', smalltalk.HLNavigationListWidget, ['announcer', 'model', 'list', 'diveButton'], 'Helios-Inspector');
- smalltalk.addMethod(
- "_announcer",
- smalltalk.method({
- selector: "announcer",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@announcer"]) == nil || $receiver == undefined){
- $1=smalltalk.send(self,"_initializeAnnouncer",[]);
- } else {
- $1=self["@announcer"];
- };
- return $1;
- },
- args: [],
- source: "announcer\x0a\x0a\x09^ announcer ifNil:[self initializeAnnouncer]",
- messageSends: ["ifNil:", "initializeAnnouncer"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_initializeAnnouncer",
- smalltalk.method({
- selector: "initializeAnnouncer",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@announcer"]=smalltalk.send((smalltalk.Announcer || Announcer),"_new",[]);
- $1=self["@announcer"];
- return $1;
- },
- args: [],
- source: "initializeAnnouncer\x0a\x0a\x09^ announcer := Announcer new",
- messageSends: ["new"],
- referencedClasses: ["Announcer"]
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_initializeItems",
- smalltalk.method({
- selector: "initializeItems",
- category: 'initialization',
- fn: function (){
- var self=this;
- var $1;
- self["@items"]=smalltalk.send(smalltalk.send(smalltalk.send(self,"_model",[]),"_variables",[]),"_keys",[]);
- $1=self["@items"];
- return $1;
- },
- args: [],
- source: "initializeItems\x0a\x09^ items := self model variables keys",
- messageSends: ["keys", "variables", "model"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_model",
- smalltalk.method({
- selector: "model",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@model"];
- },
- args: [],
- source: "model\x0a\x09\x0a ^ model\x0a ",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_model_",
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (aModel){
- var self=this;
- self["@model"]=aModel;
- return self},
- args: ["aModel"],
- source: "model: aModel\x0a\x09\x0a model := aModel\x0a ",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_refresh",
- smalltalk.method({
- selector: "refresh",
- category: 'actions',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_resetItems",[]);
- smalltalk.send(self,"_refresh",[],smalltalk.HLNavigationListWidget);
- return self},
- args: [],
- source: "refresh\x0a\x0a\x09self resetItems.\x0a \x0a super refresh\x0a ",
- messageSends: ["resetItems", "refresh"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_renderButtonsOn_",
- smalltalk.method({
- selector: "renderButtonsOn:",
- category: 'rendering',
- fn: function (html){
- var self=this;
- var $1,$2,$3,$4;
- $1=smalltalk.send(html,"_button",[]);
- smalltalk.send($1,"_class_",["btn"]);
- smalltalk.send($1,"_with_",["Refresh"]);
- $2=smalltalk.send($1,"_onClick_",[(function(){
- return smalltalk.send(smalltalk.send(self,"_announcer",[]),"_announce_",[smalltalk.send((smalltalk.HLRefreshRequested || HLRefreshRequested),"_new",[])]);
- })]);
- $3=smalltalk.send(html,"_button",[]);
- smalltalk.send($3,"_class_",["btn"]);
- smalltalk.send($3,"_with_",["Dive"]);
- $4=smalltalk.send($3,"_onClick_",[(function(){
- return smalltalk.send(smalltalk.send(self,"_announcer",[]),"_announce_",[smalltalk.send((smalltalk.HLDiveRequested || HLDiveRequested),"_new",[])]);
- })]);
- self["@diveButton"]=$4;
- return self},
- args: ["html"],
- source: "renderButtonsOn: html\x0a\x0a\x09html button\x0a\x09\x09\x09class: 'btn';\x0a\x09\x09\x09with: 'Refresh';\x0a\x09\x09\x09onClick: [self announcer announce: HLRefreshRequested new].\x0a\x0a\x09diveButton := html button \x0a\x09\x09\x09\x09class: 'btn';\x0a\x09\x09\x09\x09with: 'Dive'; \x0a\x09\x09\x09\x09onClick: [self announcer announce: HLDiveRequested new]",
- messageSends: ["class:", "button", "with:", "onClick:", "announce:", "new", "announcer"],
- referencedClasses: ["HLRefreshRequested", "HLDiveRequested"]
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_resetItems",
- smalltalk.method({
- selector: "resetItems",
- category: 'actions',
- fn: function (){
- var self=this;
- self["@items"]=nil;
- return self},
- args: [],
- source: "resetItems\x0a\x0a\x09items := nil",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_selectItem_",
- smalltalk.method({
- selector: "selectItem:",
- category: 'reactions',
- fn: function (anObject){
- var self=this;
- smalltalk.send(self,"_selectItem_",[anObject],smalltalk.HLNavigationListWidget);
- smalltalk.send(smalltalk.send(self,"_model",[]),"_selectedInstVar_",[anObject]);
- return self},
- args: ["anObject"],
- source: "selectItem: anObject\x0a\x09 \x0a\x09super selectItem: anObject.\x0a \x0a self model selectedInstVar: anObject",
- messageSends: ["selectItem:", "selectedInstVar:", "model"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_selection",
- smalltalk.method({
- selector: "selection",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@model"],"_selection",[]);
- return $1;
- },
- args: [],
- source: "selection\x0a\x0a\x09^ model selection",
- messageSends: ["selection"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
- smalltalk.addMethod(
- "_variables",
- smalltalk.method({
- selector: "variables",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@model"],"_variables",[]);
- return $1;
- },
- args: [],
- source: "variables\x0a\x0a\x09^ model variables",
- messageSends: ["variables"],
- referencedClasses: []
- }),
- smalltalk.HLInspectorVariables);
|