File indexing completed on 2024-04-28 15:28:38

0001 shouldBe("Object.prototype.__proto__ == Object.prototype","false");
0002 shouldBe("Function.prototype.__proto__","Object.prototype");
0003 shouldBe("Array.prototype.__proto__","Object.prototype");
0004 shouldBe("String.prototype.__proto__","Object.prototype");
0005 shouldBe("Boolean.prototype.__proto__","Object.prototype");
0006 shouldBe("Number.prototype.__proto__","Object.prototype");
0007 shouldBe("Date.prototype.__proto__","Object.prototype");
0008 shouldBe("RegExp.prototype.__proto__","Object.prototype");
0009 shouldBe("Error.prototype.__proto__","Object.prototype");
0010 shouldBe("o = {}; v = 'FAIL'; try { o.__proto__ = o; } catch (e) { v = 'PA' }; o.foo = 'SS'; v = v + o.foo;","'PASS'");