Home | History | Annotate | Download | only in js

Lines Matching refs:override

187  * @param {Object} receiver An object whose method to override.
188 * @param {string} methodName Name of the method to override.
189 * @param {Function} override A function that should be called right after the
194 TestSuite.prototype.addSniffer = function(receiver, methodName, override, opt_sticky)
198 this.fail("Cannot find method to override: " + methodName);
207 // In case of exception the override won't be called.
209 override.apply(this, arguments);
273 // addResource override.