var Class = require('../utils/Class'); var Event = new Class({ initialize: function Event(type){ this.type = type; this.target; this._propagate = true ; } , reset: function (target){ _AN_Write_target('target', this, false , target); this._propagate = true ; } , stopPropagation: function (){ this._propagate = false ; } } ); module.exports = Event;