changed generateEventsHelper to use engine.eval instead of eval (fix travis build problem)

This commit is contained in:
walterhiggins 2014-04-26 21:08:18 +01:00
parent e0d5abb5f6
commit f1a960680a

View file

@ -42,7 +42,7 @@ while ( ( entry = zis.nextEntry) != null) {
// abstract events don't have a static getHandlerList method so
// shouldn't be added to this module
var hasHandlerList = eval(name + '.getHandlerList');
var hasHandlerList = engine.eval(name + '.getHandlerList');
if ( !hasHandlerList ) {
continue;
}