mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00

The "break" keyword now unwinds to the nearest ScopeType::Breakable. There's no support for break labels yet, but we'll get there too.
6 lines
71 B
JavaScript
6 lines
71 B
JavaScript
var a = "foo";
|
|
|
|
switch (100) {
|
|
default:
|
|
console.log("PASS");
|
|
}
|