-
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.
Add tests for \8 in template/strict strings. (#2654)
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
test/language/expressions/template-literal/invalid-legacy-octal-escape-sequence-8.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,17 @@ | ||
// Copyright (C) 2020 Sony Interactive Entertainment Inc. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-template-literal-lexical-components | ||
description: > | ||
Invalid octal escape sequence (regardless of the presence of Annex B) | ||
info: | | ||
A conforming implementation must not use the extended definition of | ||
EscapeSequence described in B.1.2 when parsing a TemplateCharacter. | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
$DONOTEVALUATE(); | ||
|
||
`\8`; |
19 changes: 19 additions & 0 deletions
19
test/language/literals/string/legacy-non-octal-escape-sequence-8-strict.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,19 @@ | ||
// Copyright (C) 2020 Sony Interactive Entertainment Inc. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-literals-string-literals | ||
description: > | ||
LegacyOctalEscapeSequence is not enabled in strict mode code | ||
(regardless of the presence of Annex B) | ||
info: | | ||
A conforming implementation, when processing strict mode code, must not extend the | ||
syntax of EscapeSequence to include LegacyOctalEscapeSequence as described in B.1.2. | ||
flags: [onlyStrict] | ||
negative: | ||
phase: parse | ||
type: SyntaxError | ||
---*/ | ||
|
||
$DONOTEVALUATE(); | ||
|
||
'\8'; |