Raising hard execution limit from one million to three million statements.

This commit is contained in:
Nick Winter 2015-04-04 09:34:31 -07:00
parent 383e64d6dc
commit 04ccb2273f

View file

@ -24,7 +24,7 @@ module.exports.createAetherOptions = (options) ->
aether_MissingThis: {level: 'error'}
problemContext: options.problemContext
#functionParameters: # TODOOOOO
executionLimit: 1 * 1000 * 1000
executionLimit: 3 * 1000 * 1000
language: options.codeLanguage
parameters = functionParameters[options.functionName]
unless parameters