Merge pull request #5150 from SaintPeter/fix/increse-loop-protect-timeout
Increase Loop Protect Timeout to 1000
This commit is contained in:
@ -20,7 +20,7 @@ if (typeof DEBUG === 'undefined') { DEBUG = true; }
|
|||||||
var reSingle = /\b(for|while|do)\b/;
|
var reSingle = /\b(for|while|do)\b/;
|
||||||
var labelRe = /\b([a-z_]{1}\w+:)/i;
|
var labelRe = /\b([a-z_]{1}\w+:)/i;
|
||||||
var comments = /(?:\/\*(?:[\s\S]*?)\*\/)|(?:([\s;])+\/\/(?:.*)$)/gm;
|
var comments = /(?:\/\*(?:[\s\S]*?)\*\/)|(?:([\s;])+\/\/(?:.*)$)/gm;
|
||||||
var loopTimeout = 500;
|
var loopTimeout = 1000;
|
||||||
|
|
||||||
var loopProtect = rewriteLoops;
|
var loopProtect = rewriteLoops;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user