Lines Matching refs:wrapper
173 * Creates a wrapper function to execute the callback using the aggregated
177 * The wrapper function is decorated with the callback configuration as
182 * @return {Function} a decorated function wrapper to execute the callback
196 wrapper = Y.bind(function () {
197 if (!wrapper._running) {
198 wrapper.iterations--;
200 if (isFunction(wrapper.fn)) {
201 wrapper.fn.apply(wrapper.context || Y,
202 Y.Array(wrapper.args));
206 return Y.mix(wrapper, config);