Lines Matching refs:calls
34 #calls;
41 this.#calls = [];
49 * Gets an array of recorded calls made to the mock function.
50 * @returns {Array} An array of recorded calls.
52 get calls() {
53 return ArrayPrototypeSlice(this.#calls, 0);
61 return this.#calls.length;
80 const nextCall = this.#calls.length;
103 * Resets the recorded calls to the mock function
106 this.#calls = [];
114 ArrayPrototypePush(this.#calls, call);
122 const nextCall = this.#calls.length;