From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../statements/continue/static-init-with-label.js | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 js/src/tests/test262/language/statements/continue/static-init-with-label.js (limited to 'js/src/tests/test262/language/statements/continue/static-init-with-label.js') diff --git a/js/src/tests/test262/language/statements/continue/static-init-with-label.js b/js/src/tests/test262/language/statements/continue/static-init-with-label.js new file mode 100644 index 0000000000..cb9d9b0c3d --- /dev/null +++ b/js/src/tests/test262/language/statements/continue/static-init-with-label.js @@ -0,0 +1,29 @@ +// |reftest| error:SyntaxError +// Copyright (C) 2021 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-continue-statement +description: IterationStatement search does not traverse static initialization block boundaries (label specified) +info: | + 4.1.1 Static Semantics: Early Errors + ContinueStatement : continue ; + ContinueStatement : continue LabelIdentifier ; + + - It is a Syntax Error if this ContinueStatement is not nested, directly or + indirectly (but not crossing function or static initialization block + boundaries), within an IterationStatement. +negative: + phase: parse + type: SyntaxError +features: [class-static-block] +---*/ + +$DONOTEVALUATE(); + +label: while(false) { + class C { + static { + continue label; + } + } +} -- cgit v1.2.3