Merge pull request #5150 from SaintPeter/fix/increse-loop-protect-timeout

Increase Loop Protect Timeout to 1000
This commit is contained in:
Logan Tegman
2015-12-11 14:04:13 -08:00

View File

@ -20,7 +20,7 @@ if (typeof DEBUG === 'undefined') { DEBUG = true; }
var reSingle = /\b(for|while|do)\b/;
var labelRe = /\b([a-z_]{1}\w+:)/i;
var comments = /(?:\/\*(?:[\s\S]*?)\*\/)|(?:([\s;])+\/\/(?:.*)$)/gm;
var loopTimeout = 500;
var loopTimeout = 1000;
var loopProtect = rewriteLoops;