var nativeCode = "function () {\n [native code]\n}";
var proxy = new Proxy(function() {}, {});
assertEq(Function.prototype.toString.call(proxy), nativeCode); var o = Proxy.revocable(function() {}, {});
assertEq(Function.prototype.toString.call(o.proxy), nativeCode);
o.revoke();
assertEq(Function.prototype.toString.call(o.proxy), nativeCode);
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.