don't escape null characters as \0 when followed by any digit (#2273)

fixes #2272
This commit is contained in:
Erik Desjardins
2017-08-14 00:30:08 -04:00
committed by Alex Lam S.L
parent e7c21e87e3
commit 16d40915b4
4 changed files with 9 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ concat_1: {
var c = 1 + x() + 2 + "boo";
var d = 1 + x() + 2 + 3 + "boo";
var e = 1 + x() + 2 + "X3boo";
var f = "\x00360\08\0";
var f = "\x00360\x008\0";
}
}