2017-05-02 21:09:21 +02:00
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-identifiers-static-semantics-early-errors
|
|
|
|
es5id: 7.6.1.2-6-s
|
|
|
|
description: >
|
|
|
|
Strict Mode - SyntaxError is thrown when 'interface' occurs in strict mode code
|
|
|
|
info: |
|
|
|
|
Identifier : IdentifierName but not ReservedWord
|
|
|
|
|
|
|
|
It is a Syntax Error if this phrase is contained in strict mode code and the
|
|
|
|
StringValue of IdentifierName is: "implements", "interface", "let", "package",
|
|
|
|
"private", "protected", "public", "static", or "yield".
|
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2017-05-02 21:09:21 +02:00
|
|
|
type: SyntaxError
|
|
|
|
flags: [onlyStrict]
|
|
|
|
---*/
|
|
|
|
|
2018-10-11 16:59:24 +02:00
|
|
|
$DONOTEVALUATE();
|
2017-04-29 22:31:08 +02:00
|
|
|
|
2017-05-02 21:09:21 +02:00
|
|
|
var interface = 1;
|