| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- smalltalk.addPackage('Trapped-Backend', {});
- smalltalk.addClass('EavModel', smalltalk.Object, ['getBlock', 'putBlock'], 'Trapped-Backend');
- smalltalk.addMethod(
- "_getBlock_",
- smalltalk.method({
- selector: "getBlock:",
- fn: function (aBlock){
- var self=this;
- self["@getBlock"]=aBlock;
- return self}
- }),
- smalltalk.EavModel);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- fn: function (){
- var self=this;
- smalltalk.send(self,"_initialize",[],smalltalk.Object);
- self["@getBlock"]=(function(){
- return smalltalk.send(self,"_error_",["No getter block."]);
- });
- self["@putBlock"]=(function(){
- return smalltalk.send(self,"_error_",["No putter block."]);
- });
- return self}
- }),
- smalltalk.EavModel);
- smalltalk.addMethod(
- "_on_",
- smalltalk.method({
- selector: "on:",
- fn: function (anObject){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@getBlock"],"_value_",[anObject]);
- return $1;
- }
- }),
- smalltalk.EavModel);
- smalltalk.addMethod(
- "_on_put_",
- smalltalk.method({
- selector: "on:put:",
- fn: function (anObject,anObject2){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@putBlock"],"_value_value_",[anObject,anObject2]);
- return $1;
- }
- }),
- smalltalk.EavModel);
- smalltalk.addMethod(
- "_putBlock_",
- smalltalk.method({
- selector: "putBlock:",
- fn: function (aBlock){
- var self=this;
- self["@putBlock"]=aBlock;
- return self}
- }),
- smalltalk.EavModel);
- smalltalk.addClass('Isolator', smalltalk.Object, ['root'], 'Trapped-Backend');
- smalltalk.addMethod(
- "_model_modify_",
- smalltalk.method({
- selector: "model:modify:",
- fn: function (anEavModel,aBlock){
- var self=this;
- var newValue;
- newValue=smalltalk.send(aBlock,"_value_",[smalltalk.send(anEavModel,"_on_",[self])]);
- smalltalk.send(anEavModel,"_on_put_",[self,smalltalk.send(newValue,"_deepCopy",[])]);
- return self}
- }),
- smalltalk.Isolator);
- smalltalk.addMethod(
- "_model_read_",
- smalltalk.method({
- selector: "model:read:",
- fn: function (anEavModel,aBlock){
- var self=this;
- smalltalk.send(aBlock,"_value_",[smalltalk.send(smalltalk.send(anEavModel,"_on_",[self]),"_deepCopy",[])]);
- return self}
- }),
- smalltalk.Isolator);
- smalltalk.addMethod(
- "_root",
- smalltalk.method({
- selector: "root",
- fn: function (){
- var self=this;
- return self["@root"];
- }
- }),
- smalltalk.Isolator);
- smalltalk.addMethod(
- "_root_",
- smalltalk.method({
- selector: "root:",
- fn: function (anObject){
- var self=this;
- self["@root"]=anObject;
- return self}
- }),
- smalltalk.Isolator);
- smalltalk.addMethod(
- "_on_",
- smalltalk.method({
- selector: "on:",
- fn: function (anObject){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self,"_new",[]),"_root_",[anObject]);
- return $1;
- }
- }),
- smalltalk.Isolator.klass);
- smalltalk.addMethod(
- "_asEavModel",
- smalltalk.method({
- selector: "asEavModel",
- fn: function (){
- var self=this;
- var $1;
- var model;
- model=smalltalk.send((smalltalk.EavModel || EavModel),"_new",[]);
- smalltalk.send(model,"_getBlock_",[(function(anObject){
- return smalltalk.send(self,"_inject_into_",[anObject,(function(soFar,segment){
- if(($receiver = soFar) == nil || $receiver == undefined){
- return soFar;
- } else {
- return smalltalk.send(segment,"_reverseTrapAt_",[soFar]);
- };
- })]);
- })]);
- $1=smalltalk.send(self,"_isEmpty",[]);
- if(! smalltalk.assert($1)){
- smalltalk.send(model,"_putBlock_",[(function(anObject,value){
- var penultimate;
- penultimate=smalltalk.send(smalltalk.send(self,"_allButLast",[]),"_inject_into_",[anObject,(function(soFar,segment){
- if(($receiver = soFar) == nil || $receiver == undefined){
- return soFar;
- } else {
- return smalltalk.send(segment,"_reverseTrapAt_",[soFar]);
- };
- })]);
- penultimate;
- return smalltalk.send(smalltalk.send(self,"_last",[]),"_reverseTrapAt_put_",[penultimate,value]);
- })]);
- };
- return model;
- }
- }),
- smalltalk.SequenceableCollection);
|