test262/test/built-ins/RegExp/unicodeSets/generated/character-intersection-char...

32 lines
744 B
JavaScript

// Copyright 2022 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Extended character classes enabled by the RegExp `v` flag support
properties of strings, string literals, and set operations
info: |
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
Unicode v14.0.0
esid: sec-patterns
features: [regexp-v-flag]
includes: [regExpUtils.js]
---*/
testExtendedCharacterClass({
regExp: /^[_&&[0-9]]+$/v,
expression: "[_&&[0-9]]",
matchStrings: [],
nonMatchStrings: [
"6\uFE0F\u20E3",
"7",
"9\uFE0F\u20E3",
"C",
"_",
"\u2603",
"\u{1D306}",
"\u{1F1E7}\u{1F1EA}"
],
});