blob: 4c1777a35c6b04932c83a0624a37c41d876144e9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
load(libdir + "immutable-prototype.js");
// Random chosen test: js/src/jit-test/tests/auto-regress/bug700295.js
if (globalPrototypeChainIsMutable()) {
__proto__ = null;
Object.prototype.__proto__ = this;
}
// Random chosen test: js/src/jit-test/tests/debug/Memory-takeCensus-05.js
Debugger(newGlobal()).memory.takeCensus();
|