mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Because these files contain syntax errors, the code they contain is not intended to be executed, and the runtime semantics are therefore irrelevant. Simplify the files by removing the unnecessary code.
16 lines
377 B
JavaScript
16 lines
377 B
JavaScript
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
description: Module code is always strict mode code.
|
|
es6id: 10.2.1
|
|
esid: sec-strict-mode-code
|
|
flags: [module]
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
throw "Test262: This statement should not be evaluated.";
|
|
|
|
var public;
|