Home | History | Annotate | Download | only in NativeObjects

Lines Matching refs:Function

26     Description:        Every built-in function and every built-in constructor
27 has the Function prototype object, which is the value of
28 the expression Function.prototype as the value of its
29 internal [[Prototype]] property, except the Function
33 constructors should be the Function.prototype object.
48 function getTestCases() {
52 array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ );
53 array[item++] = new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
54 array[item++] = new TestCase( SECTION, "String.__proto__", Function.prototype, String.__proto__ );
55 array[item++] = new TestCase( SECTION, "Boolean.__proto__", Function.prototype, Boolean.__proto__ );
56 array[item++] = new TestCase( SECTION, "Number.__proto__", Function.prototype, Number.__proto__ );
57 array[item++] = new TestCase( SECTION, "Date.__proto__", Function.prototype, Date.__proto__ );
58 array[item++] = new TestCase( SECTION, "TestCase.__proto__", Function.prototype, TestCase.__proto__ );
60 array[item++] = new TestCase( SECTION, "eval.__proto__", Function.prototype, eval.__proto__ );
61 array[item++] = new TestCase( SECTION, "Math.pow.__proto__", Function.prototype, Math.pow.__proto__ );
62 array[item++] = new TestCase( SECTION, "String.prototype.indexOf.__proto__", Function.prototype, String.prototype.indexOf.__proto__ );
66 function test() {