Lines Matching refs:wrapper
171 * Creates a wrapper function to execute the callback using the aggregated
175 * The wrapper function is decorated with the callback configuration as
180 * @return {Function} a decorated function wrapper to execute the callback
194 wrapper = Y.bind(function () {
195 if (!wrapper._running) {
196 wrapper.iterations--;
198 if (isFunction(wrapper.fn)) {
199 wrapper.fn.apply(wrapper.context || Y,
200 Y.Array(wrapper.args));
204 return Y.mix(wrapper, config);