Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for \8 in template/strict strings. #2654

Merged
merged 1 commit into from
Jul 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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`;

This comment was marked as resolved.

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';

This comment was marked as resolved.