blob: 7a5d68113a52e50ec92ffcda2c481636c0c9abff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// |reftest| error:SyntaxError
'use strict';
// 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();
'\9';
|