function actAsDecorator(object) {
object.setupDecoratorFor = function(メソッド) {
if (! (オブジェクト内の 'original_' メソッド) ) {
オブジェクト['original_' メソッド] = オブジェクト[メソッド];
オブジェクト['before_' メソッド] = [ ];
オブジェクト['after_' メソッド] = [ ];
オブジェクト[メソッド] = function() {
var i;
var b = this['before_' メソッド];
var a = this['after_' メソッド];
var rv;
for (i = 0; i
b[i].call(this, argument);
}
rv = this['original_' メソッド].apply(this, argument);
for (i = 0; i a[i].call(this, argument);
}
rv を返します。
}
}
};
object.before = function(method, f) {
object.setupDecoratorFor(method);
オブジェクト['before_' メソッド].unshift(f);
};
object.after = function(method, f) {
object.setupDecoratorFor(method);
オブジェクト['after_' メソッド].push(f);
};
}
/**
を呼び出しています*/
function Test(){
this.say1 = function(s){
alert(s);
}
this.say2 = function(s){
alert(s);
}
}
var t = new Test();
actsAsDecorator(t);
t.before("say1",beforeHander);
t.after("say2",afterHander);
テスト();