Lines Matching defs:func
56 function func() {
60 const callsfunc = tracker.calls(func, 1);
62 // Expects callsfunc() to call func() which throws an error.
83 function func() {}
85 const callsfunc = tracker.calls(func);
90 function func(a, b, c = 2) {}
92 const callsfunc = tracker.calls(func);
97 function func(a, b, c = 2) {}
98 delete func.length;
100 const callsfunc = tracker.calls(func);
115 function func(a, b, c = 2) {
118 func.customProperty = customPropertyValue;
119 Object.defineProperty(func, 'length', { get: common.mustNotCall() });
121 const callsfunc = tracker.calls(func);