forked from tc39/test262
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additional tests for QuantifiableAssertion
- Tests that lookahead and lookbehind are not extended to QuantifiableAssertion, as in tc39/ecma262#1102 - Additional tests verifying some more combinations of cases for QuantifiableAssertion being invalid in Unicode mode. Based on the tests in https://chromium-review.googlesource.com/c/v8/v8/+/926102 These tests pass on V8 (if the throw for early errors is removed to work around a V8 issue where RegExps don't have early errors).
- Loading branch information
Showing
12 changed files
with
220 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/invalid-optional-lookbehind.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<=.)?/; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/invalid-optional-negative-lookbehind.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<!.)?/; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<=.){2,3}/; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/invalid-range-negative-lookbehind.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<!.){2,3}/; |
File renamed without changes.
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/u-invalid-optional-lookbehind.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<=.)?/u; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/u-invalid-optional-negative-lookahead.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2016 the V8 project authors. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
es6id: B.1.4 | ||
description: Quantifiable assertions disallowed with `u` flag | ||
info: | | ||
The `u` flag precludes quantifiable assertions (even when Annex B is | ||
honored) | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?!.)?/u; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/u-invalid-optional-negative-lookbehind.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<!.)?/u; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/u-invalid-range-lookahead.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2016 the V8 project authors. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
es6id: B.1.4 | ||
description: Quantifiable assertions disallowed with `u` flag | ||
info: | | ||
The `u` flag precludes quantifiable assertions (even when Annex B is | ||
honored) | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?=.){2,3}/u; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/u-invalid-range-lookbehind.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<=.){2,3}/u; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/u-invalid-range-negative-lookahead.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2016 the V8 project authors. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
es6id: B.1.4 | ||
description: Quantifiable assertions disallowed with `u` flag | ||
info: | | ||
The `u` flag precludes quantifiable assertions (even when Annex B is | ||
honored) | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?!.){2,3}/u; |
20 changes: 20 additions & 0 deletions
20
test/language/literals/regexp/u-invalid-range-negative-lookbehind.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (C) 2018 Igalia S. L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-regular-expressions-patterns | ||
description: Lookbehinds are not treated as a QuantifiableAssertion | ||
info: | | ||
Term[U] :: | ||
[~U] QuantifiableAssertion Quantifier | ||
QuantifiableAssertion[N]:: | ||
( ? = Disjunction[~U, ?N] ) | ||
( ? ! Disjunction[~U, ?N] ) | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
throw "Test262: This statement should not be evaluated."; | ||
|
||
/.(?<!.){2,3}/u; |