this
javascriptのjavascriptジェネレーターの値は何ですか? 以下のコードでは、両方の比較で false が返され、 を実行すると , が空のよう.toSource()
にthis
見えますObject
。ECMA または MDN ドキュメントへの参照は役に立ちますが、どちらにも何も見つかりませんでした。
function thisGenerator(){
while(1)
yield this;
}
var gen=new thisGenerator();
alert(gen.next()==thisGenerator);
alert(gen.next()==gen);