// Ensure readGeckoProfilingStack() doesn't crash with Ion // getter/setter ICs on the stack. function getObjects() { var objs = [];
objs.push({x: 0, get prop() {
readGeckoProfilingStack(); return ++this.x;
}, set prop(v) {
readGeckoProfilingStack(); this.x = v + 2;
}});
objs.push({x: 0, y: 0, get prop() {
readGeckoProfilingStack(); returnthis.y;
}, set prop(v) {
readGeckoProfilingStack(); this.y = v;
}}); return objs;
} function f() { var objs = getObjects(); var res = 0; for (var i=0; i<100; i++) { var o = objs[i % objs.length];
res += o.prop;
o.prop = i;
}
assertEq(res, 4901);
}
enableGeckoProfiling();
f();
Messung V0.5
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.