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

0001 var myfunc = Function();
0002 shouldBe("myfunc.prototype.constructor.__proto__ == Function.prototype","true");
0003 shouldBe("myfunc.prototype.constructor.__proto__.__proto__ == Object.prototype","true");
0004 shouldBe("myfunc.prototype.constructor == myfunc","true");
0005 shouldBe("Function.prototype.constructor == Function","true");
0006 shouldBe("myfunc.prototype.toString == Object.prototype.toString","true");
0007 shouldBe("myfunc.toString == Function.prototype.toString","true");
0008 
0009 //printValue("myfunc"); = "(Internal function)" ### should display code
0010 //printValue("myfunc.prototype.constructor"); = "(Internal function)" ### should display code