Add a semicolon to avoid relying on ASI in one place in String.js. No bug, r=trivial

This commit is contained in:
Jeff Walden 2015-12-23 21:51:43 -06:00
parent 41e2463206
commit ed35295043

View File

@ -68,7 +68,7 @@ function String_substr(start, length) {
intStart = std_Math_max(intStart + size, 0);
// Step 9.
var resultLength = std_Math_min(std_Math_max(end, 0), size - intStart)
var resultLength = std_Math_min(std_Math_max(end, 0), size - intStart);
// Step 10.
if (resultLength <= 0)