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

Side by Side Diff: test/mjsunit/harmony/regexp-property-general-category.js

Issue 1824613002: [regexp] require exact match for unicode property names. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « test/mjsunit/harmony/regexp-property-exact-match.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --harmony-regexp-property --harmony-unicode-regexps 5 // Flags: --harmony-regexp-property --harmony-unicode-regexps
6 6
7 assertThrows("/\\p/u"); 7 assertThrows("/\\p/u");
8 assertThrows("/\\p{garbage}/u"); 8 assertThrows("/\\p{garbage}/u");
9 assertThrows("/\\p{}/u"); 9 assertThrows("/\\p{}/u");
10 assertThrows("/\\p{/u"); 10 assertThrows("/\\p{/u");
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 assertTrue(/\pL/u.test("a")); 57 assertTrue(/\pL/u.test("a"));
58 assertFalse(/\PL/u.test("a")); 58 assertFalse(/\PL/u.test("a"));
59 assertFalse(/\pL/u.test("1")); 59 assertFalse(/\pL/u.test("1"));
60 assertTrue(/\PL/u.test("1")); 60 assertTrue(/\PL/u.test("1"));
61 assertTrue(/\pL/u.test("\u1FAB")); 61 assertTrue(/\pL/u.test("\u1FAB"));
62 assertFalse(/\PL/u.test("\u1FAB")); 62 assertFalse(/\PL/u.test("\u1FAB"));
63 assertFalse(/\p{L}/u.test("\uA6EE")); 63 assertFalse(/\p{L}/u.test("\uA6EE"));
64 assertTrue(/\P{L}/u.test("\uA6EE")); 64 assertTrue(/\P{L}/u.test("\uA6EE"));
65 65
66 assertTrue(/\p{Lowercase_Letter}/u.test("a")); 66 assertTrue(/\p{Lowercase_Letter}/u.test("a"));
67 assertTrue(/\p{LowercaseLetter}/u.test("a")); 67 assertTrue(/\p{Math_Symbol}/u.test("+"));
68 assertTrue(/\p{Lowercaseletter}/u.test("a"));
69 assertTrue(/\p{lowercase letter}/u.test("a"));
70 assertTrue(/\p{lowercase letter}/u.test("a"));
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/regexp-property-exact-match.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698