|
@@ -185,7 +185,7 @@ var 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(aSilk)._attrAt_put_(self["@key"],self["@value"]);
|
|
|
|
|
|
+$recv(self["@key"])._attrPut_on_(self["@value"],aSilk);
|
|
return self;
|
|
return self;
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
}, function($ctx1) {$ctx1.fill(self,"renderOnSilk:",{aSilk:aSilk},$globals.Association)});
|
|
}, function($ctx1) {$ctx1.fill(self,"renderOnSilk:",{aSilk:aSilk},$globals.Association)});
|
|
@@ -193,10 +193,10 @@ return self;
|
|
},
|
|
},
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
args: ["aSilk"],
|
|
args: ["aSilk"],
|
|
-source: "renderOnSilk: aSilk\x0a\x09aSilk attrAt: key put: value",
|
|
|
|
|
|
+source: "renderOnSilk: aSilk\x0a\x09key attrPut: value on: aSilk",
|
|
referencedClasses: [],
|
|
referencedClasses: [],
|
|
//>>excludeEnd("ide");
|
|
//>>excludeEnd("ide");
|
|
-messageSends: ["attrAt:put:"]
|
|
|
|
|
|
+messageSends: ["attrPut:on:"]
|
|
}),
|
|
}),
|
|
$globals.Association);
|
|
$globals.Association);
|
|
|
|
|
|
@@ -326,4 +326,28 @@ messageSends: []
|
|
}),
|
|
}),
|
|
$globals.Object);
|
|
$globals.Object);
|
|
|
|
|
|
|
|
+$core.addMethod(
|
|
|
|
+$core.method({
|
|
|
|
+selector: "attrPut:on:",
|
|
|
|
+protocol: '*Silk',
|
|
|
|
+fn: function (anObject,aSilk){
|
|
|
|
+var self=this;
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+return $core.withContext(function($ctx1) {
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+$recv(aSilk)._attrAt_put_(self,anObject);
|
|
|
|
+return self;
|
|
|
|
+//>>excludeStart("ctx", pragmas.excludeDebugContexts);
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"attrPut:on:",{anObject:anObject,aSilk:aSilk},$globals.String)});
|
|
|
|
+//>>excludeEnd("ctx");
|
|
|
|
+},
|
|
|
|
+//>>excludeStart("ide", pragmas.excludeIdeData);
|
|
|
|
+args: ["anObject", "aSilk"],
|
|
|
|
+source: "attrPut: anObject on: aSilk\x0a\x09aSilk attrAt: self put: anObject",
|
|
|
|
+referencedClasses: [],
|
|
|
|
+//>>excludeEnd("ide");
|
|
|
|
+messageSends: ["attrAt:put:"]
|
|
|
|
+}),
|
|
|
|
+$globals.String);
|
|
|
|
+
|
|
});
|
|
});
|