Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: test/mjsunit/harmony/regexp-named-captures.js

Issue 2788423003: [regexp] Updates for unicode escapes in capture names (Closed)
Patch Set: Address comments and rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/regexp/regexp-parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/regexp-named-captures.js
diff --git a/test/mjsunit/harmony/regexp-named-captures.js b/test/mjsunit/harmony/regexp-named-captures.js
index b61bf45a3bdbb8613d94d71d14677b846da849e7..6de899f7641d5d893940a904c7475b1279965b2c 100644
--- a/test/mjsunit/harmony/regexp-named-captures.js
+++ b/test/mjsunit/harmony/regexp-named-captures.js
@@ -187,6 +187,31 @@ assertThrows("/\\1(?<=a)./u", SyntaxError);
assertThrows("/\\1(?<!a)./u", SyntaxError);
assertEquals(["a", "a"], /\1(?<a>.)/u.exec("abcd"));
+// Unicode escapes in capture names.
+assertTrue(/(?<a\uD801\uDCA4>.)/u.test("a")); // \u Lead \u Trail
+assertThrows("/(?<a\\uD801>.)/u", SyntaxError); // \u Lead
+assertThrows("/(?<a\\uDCA4>.)/u", SyntaxError); // \u Trail
+assertTrue(/(?<\u0041>.)/u.test("a")); // \u NonSurrogate
+assertTrue(/(?<\u{0041}>.)/u.test("a")); // \u{ Non-surrogate }
+assertTrue(/(?<a\u{104A4}>.)/u.test("a")); // \u{ Surrogate, ID_Continue }
+assertThrows("/(?<a\\u{110000}>.)/u", SyntaxError); // \u{ Out-of-bounds }
+assertThrows("/(?<a\uD801>.)/u", SyntaxError); // Lead
+assertThrows("/(?<a\uDCA4>.)/u", SyntaxError); // Trail
+assertTrue(RegExp("(?<\u{0041}>.)", "u").test("a")); // Non-surrogate
+assertTrue(RegExp("(?<a\u{104A4}>.)", "u").test("a")); // Surrogate,ID_Continue
+
+assertThrows("/(?<a\\uD801\uDCA4>.)/", SyntaxError);
+assertThrows("/(?<a\\uD801>.)/", SyntaxError);
+assertThrows("/(?<a\\uDCA4>.)/", SyntaxError);
+assertTrue(/(?<\u0041>.)/.test("a"));
+assertThrows("/(?<\\u{0041}>.)/", SyntaxError);
+assertThrows("/(?<a\\u{104A4}>.)/", SyntaxError);
+assertThrows("/(?<a\\u{10FFFF}>.)/", SyntaxError);
+assertThrows("/(?<a\uD801>.)/", SyntaxError); // Lead
+assertThrows("/(?<a\uDCA4>.)/", SyntaxError); // Trail
+assertTrue(RegExp("(?<\u{0041}>.)").test("a")); // Non-surrogate
+assertTrue(RegExp("(?<a\u{104A4}>.)").test("a")); // Surrogate, ID_Continue
+
// @@replace with a callable replacement argument (no named captures).
{
let result = "abcd".replace(/(.)(.)/u, (match, fst, snd, offset, str) => {
« no previous file with comments | « src/regexp/regexp-parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698