Lines Matching refs:Function
66 function makeSparseArray() {
81 function makeNonConstantArray() { return [ [ n ] ]; }
87 function makeNonConstantObject() { return { a: { b: n } }; }
94 function makeRegexpInArray() { return [ [ /a*/, {} ] ]; }
101 function makeRegexpInObject() { return { a: { b: /b*/, c: {} } }; }
123 "function",
143 function testKeywordProperty(keyword) {
172 // Function property, called.
174 function test_call() { this.was_called = true; was_called = true; }
180 // Function property, constructed.
181 function construct() { this.constructed = true; }