-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- 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; |