Show:
/* copyright © 2015 David Valdman */

define(function(require, exports, module) {
    /**
     * Queue that batches `end` and `dirty` events.
     *  This queue is traversed after the `postTickQueue` by the Engine.
     *
     *  @private
     */

    module.exports = [];
});