ladybird/Tests/LibJS/Bytecode/input/switch-completion-value.js

4 lines
209 B
JavaScript
Raw Permalink Normal View History

console.log(eval("switch(1) { case 1: 'hello'; let x = 1; }"));
console.log(eval("switch(1) { case 1: 'first'; 'second'; }"));
console.log(eval("switch(1) { case 1: 'matched'; break; default: 'default'; }"));