mirror of
https://github.com/tc39/test262.git
synced 2025-05-16 21:00:36 +02:00
The runtime semantics of this statement are host-defined and therefore untestable, but the statement's affect on the formal grammar should be consistent across all implementations.
11 lines
299 B
JavaScript
11 lines
299 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: The `debugger` token may not occupy an expression position
|
|
esid: sec-debugger-statement
|
|
es6id: 13.16
|
|
negative: SyntaxError
|
|
---*/
|
|
|
|
(debugger);
|