最初に私はで解決策をarguments.callee
見つけましたが、それはひどいものでした。
私はそれがグローバルな厳格なモードで壊れると期待していましたが、それはそこでさえ機能するようです。
class Smth extends Function {
constructor (x) {
super('return arguments.callee.x');
this.x = x;
}
}
(new Smth(90))()
を使用しarguments.callee
、コードを文字列として渡し、非厳密モードでの実行を強制するため、これは悪い方法でした。しかし、オーバーライドするという考えがapply
現れました。
var global = (1,eval)("this");
class Smth extends Function {
constructor(x) {
super('return arguments.callee.apply(this, arguments)');
this.x = x;
}
apply(me, [y]) {
me = me !== global && me || this;
return me.x + y;
}
}
そしてテストは、これをさまざまな方法で関数として実行できることを示しています:
var f = new Smth(100);
[
f instanceof Smth,
f(1),
f.call(f, 2),
f.apply(f, [3]),
f.call(null, 4),
f.apply(null, [5]),
Function.prototype.apply.call(f, f, [6]),
Function.prototype.apply.call(f, null, [7]),
f.bind(f)(8),
f.bind(null)(9),
(new Smth(200)).call(new Smth(300), 1),
(new Smth(200)).apply(new Smth(300), [2]),
isNaN(f.apply(window, [1])) === isNaN(f.call(window, 1)),
isNaN(f.apply(window, [1])) === isNaN(Function.prototype.apply.call(f, window, [1])),
] == "true,101,102,103,104,105,106,107,108,109,301,302,true,true"
バージョン
super('return arguments.callee.apply(arguments.callee, arguments)');
実際にはbind
機能が含まれています:
(new Smth(200)).call(new Smth(300), 1) === 201
バージョン
super('return arguments.callee.apply(this===(1,eval)("this") ? null : this, arguments)');
...
me = me || this;
作るcall
とapply
のwindow
矛盾:
isNaN(f.apply(window, [1])) === isNaN(f.call(window, 1)),
isNaN(f.apply(window, [1])) === isNaN(Function.prototype.apply.call(f, window, [1])),
したがって、チェックは次の場所に移動する必要がありますapply
。
super('return arguments.callee.apply(this, arguments)');
...
me = me !== global && me || this;