blob: 7659d534b8254bb24df9c007b568a699040c3e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
load(libdir + "immutable-prototype.js");
if (globalPrototypeChainIsMutable()) {
this.__proto__ = null;
Object.prototype.__proto__ = this;
}
for (var y in Object.prototype)
continue;
for (var x in this)
continue;
|