diff options
Diffstat (limited to 'deps/v8/test/mjsunit/harmony/regexp-property-binary.js')
-rw-r--r-- | deps/v8/test/mjsunit/harmony/regexp-property-binary.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/harmony/regexp-property-binary.js b/deps/v8/test/mjsunit/harmony/regexp-property-binary.js index 8ab3f19329..d0c4dc577b 100644 --- a/deps/v8/test/mjsunit/harmony/regexp-property-binary.js +++ b/deps/v8/test/mjsunit/harmony/regexp-property-binary.js @@ -71,8 +71,8 @@ f(/\p{Dia}/u, "1"); t(/\p{Emoji}/u, "\u2603"); f(/\p{Emoji}/u, "x"); -// t(/\p{Emoji_Component}/u, "\u2603"); -// f(/\p{Emoji_Component}/u, "x"); +t(/\p{Emoji_Component}/u, "\u{1F1E6}"); +f(/\p{Emoji_Component}/u, "x"); t(/\p{Emoji_Modifier_Base}/u, "\u{1F6CC}"); f(/\p{Emoji_Modifier_Base}/u, "x"); @@ -137,6 +137,9 @@ f(/\p{QMark}/u, "A"); t(/\p{Radical}/u, "\u2FAD"); f(/\p{Radical}/u, "A"); +t(/\p{Regional_Indicator}/u, "\u{1F1E6}"); +f(/\p{Regional_Indicator}/u, "A"); + t(/\p{Sentence_Terminal}/u, "!"); f(/\p{STerm}/u, "A"); |