// Getter must throw if it is a ClassConstructor
(function() { var o = {};
Object.defineProperty(o, "prop", { get: Base }); function f() { o.prop }; try { f() } catch (e) {} try { f() } catch (e) {}
assertEq(cnt, 1);
})();
// Setter must throw if it is a ClassConstructor
(function() { var o = {};
Object.defineProperty(o, "prop", { set: Base }); function f() { o.prop = 1 }; try { f() } catch (e) {} try { f() } catch (e) {}
assertEq(cnt, 1);
})();
// Proxy apply must throw if it is a ClassConstructor
(function() { var o = new Proxy(function() { }, { apply: Base }); function f() { o() }; try { f() } catch (e) {} try { f() } catch (e) {}
assertEq(cnt, 1);
})();
// Proxy get must throw if it is a ClassConstructor
(function() { var o = new Proxy({}, { get: Base }); function f() { o.x } try { f() } catch (e) {} try { f() } catch (e) {}
assertEq(cnt, 1);
})();
Messung V0.5
¤ Dauer der Verarbeitung: 0.0 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.