|
@@ -6675,17 +6675,17 @@ selector: "dive",
|
|
protocol: "actions",
|
|
protocol: "actions",
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
args: [],
|
|
args: [],
|
|
-source: "dive\x0a\x09(self variables at: self selectedVariable) inspect",
|
|
|
|
|
|
+source: "dive\x0a\x09self selectedVariableValue inspect",
|
|
referencedClasses: [],
|
|
referencedClasses: [],
|
|
//>>excludeEnd("ide");
|
|
//>>excludeEnd("ide");
|
|
pragmas: [],
|
|
pragmas: [],
|
|
-messageSends: ["inspect", "at:", "variables", "selectedVariable"]
|
|
|
|
|
|
+messageSends: ["inspect", "selectedVariableValue"]
|
|
}, function ($methodClass){ return function (){
|
|
}, function ($methodClass){ return function (){
|
|
var self=this,$self=this;
|
|
var self=this,$self=this;
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
return $core.withContext(function($ctx1) {
|
|
return $core.withContext(function($ctx1) {
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
-$recv($recv($self._variables())._at_($self._selectedVariable()))._inspect();
|
|
|
|
|
|
+$recv($self._selectedVariableValue())._inspect();
|
|
return self;
|
|
return self;
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
}, function($ctx1) {$ctx1.fill(self,"dive",{})});
|
|
}, function($ctx1) {$ctx1.fill(self,"dive",{})});
|
|
@@ -7129,6 +7129,37 @@ return self;
|
|
}; }),
|
|
}; }),
|
|
$globals.IDEInspector);
|
|
$globals.IDEInspector);
|
|
|
|
|
|
|
|
+$core.addMethod(
|
|
|
|
+$core.method({
|
|
|
|
+selector: "selectedVariableValue",
|
|
|
|
+protocol: "accessing",
|
|
|
|
+//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
|
|
+args: [],
|
|
|
|
+source: "selectedVariableValue\x0a\x09^ (self variables detect: [ :each | each key = self selectedVariable ]) value",
|
|
|
|
+referencedClasses: [],
|
|
|
|
+//>>excludeEnd("ide");
|
|
|
|
+pragmas: [],
|
|
|
|
+messageSends: ["value", "detect:", "variables", "=", "key", "selectedVariable"]
|
|
|
|
+}, function ($methodClass){ return function (){
|
|
|
|
+var self=this,$self=this;
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+return $core.withContext(function($ctx1) {
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+return $recv($recv($self._variables())._detect_((function(each){
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+return $core.withContext(function($ctx2) {
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+return $recv($recv(each)._key()).__eq($self._selectedVariable());
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+})))._value();
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"selectedVariableValue",{})});
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+}; }),
|
|
|
|
+$globals.IDEInspector);
|
|
|
|
+
|
|
$core.addMethod(
|
|
$core.addMethod(
|
|
$core.method({
|
|
$core.method({
|
|
selector: "setLabel:",
|
|
selector: "setLabel:",
|
|
@@ -7154,16 +7185,25 @@ selector: "setVariables:",
|
|
protocol: "accessing",
|
|
protocol: "accessing",
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
args: ["aCollection"],
|
|
args: ["aCollection"],
|
|
-source: "setVariables: aCollection\x0a\x09variables := aCollection",
|
|
|
|
|
|
+source: "setVariables: aCollection\x0a\x09variables := \x0a\x09\x09(aCollection respondsTo: #associations)\x0a\x09\x09\x09ifTrue: [ aCollection associations ]\x0a\x09\x09\x09ifFalse: [ aCollection ]",
|
|
referencedClasses: [],
|
|
referencedClasses: [],
|
|
//>>excludeEnd("ide");
|
|
//>>excludeEnd("ide");
|
|
pragmas: [],
|
|
pragmas: [],
|
|
-messageSends: []
|
|
|
|
|
|
+messageSends: ["ifTrue:ifFalse:", "respondsTo:", "associations"]
|
|
}, function ($methodClass){ return function (aCollection){
|
|
}, function ($methodClass){ return function (aCollection){
|
|
var self=this,$self=this;
|
|
var self=this,$self=this;
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+return $core.withContext(function($ctx1) {
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+if($core.assert($recv(aCollection)._respondsTo_("associations"))){
|
|
|
|
+$self.variables=$recv(aCollection)._associations();
|
|
|
|
+} else {
|
|
$self.variables=aCollection;
|
|
$self.variables=aCollection;
|
|
|
|
+}
|
|
return self;
|
|
return self;
|
|
-
|
|
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"setVariables:",{aCollection:aCollection})});
|
|
|
|
+//>>excludeEnd("ctx");
|
|
}; }),
|
|
}; }),
|
|
$globals.IDEInspector);
|
|
$globals.IDEInspector);
|
|
|
|
|
|
@@ -7191,21 +7231,17 @@ selector: "updateButtons",
|
|
protocol: "updating",
|
|
protocol: "updating",
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
args: [],
|
|
args: [],
|
|
-source: "updateButtons\x0a\x09(self selectedVariable notNil and: [ (self variables at: self selectedVariable) notNil ])\x0a\x09\x09ifFalse: [ diveButton at: 'disabled' put: true ]\x0a\x09\x09ifTrue: [ diveButton removeAt: 'disabled' ]",
|
|
|
|
|
|
+source: "updateButtons\x0a\x09(self selectedVariable notNil and: [ self selectedVariableValue notNil ])\x0a\x09\x09ifFalse: [ diveButton at: 'disabled' put: true ]\x0a\x09\x09ifTrue: [ diveButton removeAt: 'disabled' ]",
|
|
referencedClasses: [],
|
|
referencedClasses: [],
|
|
//>>excludeEnd("ide");
|
|
//>>excludeEnd("ide");
|
|
pragmas: [],
|
|
pragmas: [],
|
|
-messageSends: ["ifFalse:ifTrue:", "and:", "notNil", "selectedVariable", "at:", "variables", "at:put:", "removeAt:"]
|
|
|
|
|
|
+messageSends: ["ifFalse:ifTrue:", "and:", "notNil", "selectedVariable", "selectedVariableValue", "at:put:", "removeAt:"]
|
|
}, function ($methodClass){ return function (){
|
|
}, function ($methodClass){ return function (){
|
|
var self=this,$self=this;
|
|
var self=this,$self=this;
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
return $core.withContext(function($ctx1) {
|
|
return $core.withContext(function($ctx1) {
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
-if($core.assert($recv([$recv([$self._selectedVariable()
|
|
|
|
-//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
-,$ctx1.sendIdx["selectedVariable"]=1
|
|
|
|
-//>>excludeEnd("ctx");
|
|
|
|
-][0])._notNil()
|
|
|
|
|
|
+if($core.assert($recv([$recv($self._selectedVariable())._notNil()
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
,$ctx1.sendIdx["notNil"]=1
|
|
,$ctx1.sendIdx["notNil"]=1
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
@@ -7213,7 +7249,7 @@ if($core.assert($recv([$recv([$self._selectedVariable()
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
return $core.withContext(function($ctx2) {
|
|
return $core.withContext(function($ctx2) {
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
-return $recv($recv($self._variables())._at_($self._selectedVariable()))._notNil();
|
|
|
|
|
|
+return $recv($self._selectedVariableValue())._notNil();
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});
|
|
}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
@@ -7235,11 +7271,11 @@ selector: "updateValueTextarea",
|
|
protocol: "updating",
|
|
protocol: "updating",
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
args: [],
|
|
args: [],
|
|
-source: "updateValueTextarea\x0a\x09valueTextarea asJQuery val: (self selectedVariable isNil\x0a\x09\x09ifTrue: [ '' ]\x0a\x09\x09ifFalse: [ (self variables at: self selectedVariable) printString ])",
|
|
|
|
|
|
+source: "updateValueTextarea\x0a\x09valueTextarea asJQuery val: (self selectedVariable isNil\x0a\x09\x09ifTrue: [ '' ]\x0a\x09\x09ifFalse: [ self selectedVariableValue printString ])",
|
|
referencedClasses: [],
|
|
referencedClasses: [],
|
|
//>>excludeEnd("ide");
|
|
//>>excludeEnd("ide");
|
|
pragmas: [],
|
|
pragmas: [],
|
|
-messageSends: ["val:", "asJQuery", "ifTrue:ifFalse:", "isNil", "selectedVariable", "printString", "at:", "variables"]
|
|
|
|
|
|
+messageSends: ["val:", "asJQuery", "ifTrue:ifFalse:", "isNil", "selectedVariable", "printString", "selectedVariableValue"]
|
|
}, function ($methodClass){ return function (){
|
|
}, function ($methodClass){ return function (){
|
|
var self=this,$self=this;
|
|
var self=this,$self=this;
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
@@ -7247,14 +7283,10 @@ return $core.withContext(function($ctx1) {
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
var $1,$2;
|
|
var $1,$2;
|
|
$1=$recv($self.valueTextarea)._asJQuery();
|
|
$1=$recv($self.valueTextarea)._asJQuery();
|
|
-if($core.assert($recv([$self._selectedVariable()
|
|
|
|
-//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
-,$ctx1.sendIdx["selectedVariable"]=1
|
|
|
|
-//>>excludeEnd("ctx");
|
|
|
|
-][0])._isNil())){
|
|
|
|
|
|
+if($core.assert($recv($self._selectedVariable())._isNil())){
|
|
$2="";
|
|
$2="";
|
|
} else {
|
|
} else {
|
|
-$2=$recv($recv($self._variables())._at_($self._selectedVariable()))._printString();
|
|
|
|
|
|
+$2=$recv($self._selectedVariableValue())._printString();
|
|
}
|
|
}
|
|
$recv($1)._val_($2);
|
|
$recv($1)._val_($2);
|
|
return self;
|
|
return self;
|
|
@@ -7270,11 +7302,11 @@ selector: "updateVariablesList",
|
|
protocol: "updating",
|
|
protocol: "updating",
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
args: [],
|
|
args: [],
|
|
-source: "updateVariablesList\x0a\x09variablesList contents: [ :html |\x0a\x09\x09self variables keysDo: [ :each || li |\x0a\x09\x09\x09li := html li.\x0a\x09\x09\x09li\x0a\x09\x09\x09\x09with: each;\x0a\x09\x09\x09\x09onClick: [ self selectVariable: each ].\x0a\x09\x09\x09self selectedVariable = each ifTrue: [\x0a\x09\x09\x09\x09li class: 'selected' ]] ]",
|
|
|
|
|
|
+source: "updateVariablesList\x0a\x09variablesList contents: [ :html |\x0a\x09\x09self variables do: [ :each || li |\x0a\x09\x09\x09li := html li.\x0a\x09\x09\x09li\x0a\x09\x09\x09\x09with: each key;\x0a\x09\x09\x09\x09onClick: [ self selectVariable: each key ].\x0a\x09\x09\x09self selectedVariable = each key ifTrue: [\x0a\x09\x09\x09\x09li class: 'selected' ]] ]",
|
|
referencedClasses: [],
|
|
referencedClasses: [],
|
|
//>>excludeEnd("ide");
|
|
//>>excludeEnd("ide");
|
|
pragmas: [],
|
|
pragmas: [],
|
|
-messageSends: ["contents:", "keysDo:", "variables", "li", "with:", "onClick:", "selectVariable:", "ifTrue:", "=", "selectedVariable", "class:"]
|
|
|
|
|
|
+messageSends: ["contents:", "do:", "variables", "li", "with:", "key", "onClick:", "selectVariable:", "ifTrue:", "=", "selectedVariable", "class:"]
|
|
}, function ($methodClass){ return function (){
|
|
}, function ($methodClass){ return function (){
|
|
var self=this,$self=this;
|
|
var self=this,$self=this;
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
@@ -7285,24 +7317,32 @@ $recv($self.variablesList)._contents_((function(html){
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
return $core.withContext(function($ctx2) {
|
|
return $core.withContext(function($ctx2) {
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
-return $recv($self._variables())._keysDo_((function(each){
|
|
|
|
|
|
+return $recv($self._variables())._do_((function(each){
|
|
var li;
|
|
var li;
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
return $core.withContext(function($ctx3) {
|
|
return $core.withContext(function($ctx3) {
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
li=$recv(html)._li();
|
|
li=$recv(html)._li();
|
|
$1=li;
|
|
$1=li;
|
|
-$recv($1)._with_(each);
|
|
|
|
|
|
+$recv($1)._with_([$recv(each)._key()
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+,$ctx3.sendIdx["key"]=1
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+][0]);
|
|
$recv($1)._onClick_((function(){
|
|
$recv($1)._onClick_((function(){
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
return $core.withContext(function($ctx4) {
|
|
return $core.withContext(function($ctx4) {
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
-return $self._selectVariable_(each);
|
|
|
|
|
|
+return $self._selectVariable_([$recv(each)._key()
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+,$ctx4.sendIdx["key"]=2
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+][0]);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
}, function($ctx4) {$ctx4.fillBlock({},$ctx3,3)});
|
|
}, function($ctx4) {$ctx4.fillBlock({},$ctx3,3)});
|
|
//>>excludeEnd("ctx");
|
|
//>>excludeEnd("ctx");
|
|
}));
|
|
}));
|
|
-if($core.assert($recv($self._selectedVariable()).__eq(each))){
|
|
|
|
|
|
+if($core.assert($recv($self._selectedVariable()).__eq($recv(each)._key()))){
|
|
return $recv(li)._class_("selected");
|
|
return $recv(li)._class_("selected");
|
|
}
|
|
}
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|