function actAsDecorator(object) {
object.setupDecoratorFor = function( method) {
if (! (객체의 'original_' 메서드) ) {
object['original_' method] = object[method];
객체['before_' 메소드] = [ ];
객체['after_' 메소드] = [ ];
객체[메소드] = function() {
var i;
var b = this['before_' 메소드];
var a = this['after_' 메소드];
var rv;
for (i = 0; i b[i].call(this, 인수);
}
rv = this['original_' 메소드].apply(this, 인수);
for (i = 0; i a[i].call(this, 인수);
}
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 = 함수{
alert(s);
}
this.say2 = 함수{
경고;
}
}
var t = new Test();
actsAsDecorator(t);
t.before("say1",beforeHander);
t.after("say2",afterHander);
테스트();