firebugの計測関数(console.time/console.timEnd)をつかってメソッドの実行時間の計測するときなどに、計測関数を挿入忘れと削除忘れしないために自動的に挿入するためのコードです 開発のときには、ブックマークレットで呼び出しておいて使うと便利かも(しません)。 フレームワーク部分(interceptor.js) aop = {}; aop.interceptors = {}; aop.interceptors.TimeInterceptor = function(){}; aop.interceptors.TimeInterceptor.prototype.create = function(lambda) { var module = this.module; return function() { console.time(module); lambda.ap