だから、私はこのようなことをしたいです:
var a = 'a';
var dummy = function() {
// Print out var 'a', from the scope above
console.log('Dummy a: ' + a);
// Print out 'b', from the 'compelled' scope
console.log('Dummy b: ' + b);
}
(function() {
var b = 'otherscope';
// I know apply won't work, I also don't want to merge scopes
dummy.apply(this);
// I want something like this:
dummy.compel(this, [], {b: 'injected!'});
})();
しかし、それはうまくいきません。
関数が2つのスコープに到達できるようにしたくはありません。ダミー関数の内部で使用される「b」変数を、外部から設定できるようにしたいのです。