Remove bogus support for \U escapes

Issue #147
This commit is contained in:
Marijn Haverbeke 2014-10-21 16:39:48 +02:00
parent 437ce2d9be
commit 5ff7e59a0a

View File

@ -1091,7 +1091,6 @@
case 114: return "\r"; // 'r' -> '\r'
case 120: return String.fromCharCode(readHexChar(2)); // 'x'
case 117: return readCodePoint(); // 'u'
case 85: return String.fromCharCode(readHexChar(8)); // 'U'
case 116: return "\t"; // 't' -> '\t'
case 98: return "\b"; // 'b' -> '\b'
case 118: return "\u000b"; // 'v' -> '\u000b'