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

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

Issue 1780183002: [regexp] extend property classes by unicode blocks. (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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Flags: --harmony-regexp-property --harmony-unicode-regexps
6
7 function t(re, s) { assertTrue(re.test(s)); }
8 function f(re, s) { assertFalse(re.test(s)); }
9
10 t(/\p{ASCII}+/u, ".");
11 t(/\p{ASCII}+/u, "supercalifragilisticexpialidocious");
12 t(/\p{BasicLatin}+/u, ".");
13 t(/\p{BasicLatin}+/u, "supercalifragilisticexpialidocious");
14 t(/\p{InBasic_Latin}+/u, ".");
15 t(/\p{InBasic_Latin}+/u, "supercalifragilisticexpialidocious");
16 t(/\p{InBasicLatin}+/u, ".");
17 t(/\p{InBasicLatin}+/u, "supercalifragilisticexpialidocious");
18
19 t(/\p{CJK}+/u, "话说天下大势,分久必合,合久必分");
20 t(/\p{InCJK}+/u, "吾庄后有一桃园,花开正盛");
21 f(/\p{CJKUnifiedIdeographs}+/u, "おはようございます");
22 f(/\p{In CJK unified ideographs}+/u,
23 "Something is rotten in the state of Denmark");
24
25 t(/\p{Latin_1}+/u, "Wie froh bin ich, daß ich weg bin!");
26 f(/\p{ASCII}+/u, "奔腾千里荡尘埃,渡水登山紫雾开");
27 f(/\p{Latin_1}+/u, "いただきます");
28
29 t(/\p{InHiragana}/u, "いただきます");
30 t(/\p{Hiragana}/u, "\u{1b001}"); // This refers to the script "Hiragana".
31 t(/\p{IsHiragana}/u, "\u{1b001}"); // This refers to the script "Hiragana".
32 f(/\p{InHiragana}/u, "\u{1b001}"); // This refers to the block "Hiragana".
33
34 t(/\p{GreekAndCoptic}/u, "ἄνδρα μοι ἔννεπε, μοῦσα, πολύτροπον, ὃς μάλα πολλὰ");
35 t(/\p{InGreek}/u, "μῆνιν ἄειδε θεὰ Πηληϊάδεω Ἀχιλῆος");
36
37 assertThrows("/\\p{In}/u");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698