summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests/statement-with-many-labels.js
AgeCommit message (Collapse)Author
2021-09-26LibJS: Allow statements to have multiple labelsAndreas Kling
This is a curious thing that occurs more often than you'd think in minified JavaScript: a: b: c: for (...) { ... break b; ... }