Merge pull request #3820 from mathiasbynens/unicodeSets-breaking-changes-from-u-to-v

Add tests for RegExp `v` flag errors that were allowed with `u`
This commit is contained in:
Jordan Harband 2023-05-01 23:39:03 -07:00 committed by GitHub
commit 4fc741b008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 532 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[(]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[)]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[[]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[{]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[}]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[/]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[-]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[|]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[&&]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[!!]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[##]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[$$]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[%%]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[**]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[++]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[,,]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[..]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[::]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[;;]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[<<]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[==]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[>>]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[??]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[@@]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[``]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[~~]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[^^^]/v;

View File

@ -0,0 +1,19 @@
// Copyright 2023 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Some previously valid patterns with the `u` flag are now expected to
throw an early SyntaxError with the `v` flag.
https://github.com/tc39/proposal-regexp-v-flag#how-is-the-v-flag-different-from-the-u-flag
esid: sec-parsepattern
negative:
phase: parse
type: SyntaxError
features: [regexp-v-flag]
---*/
$DONOTEVALUATE();
/[_^^]/v;