more info in AST parser

This commit is contained in:
2026-02-06 03:00:46 -06:00
parent c814c0e1d8
commit 8db95c654b
2 changed files with 180 additions and 291 deletions

View File

@@ -252,22 +252,6 @@ loop: for (var m = 0; m < 3; m++) {
}
}
// --- switch/case/default ---
var sw
switch (2) {
case 1:
sw = "one"
break
case 2:
sw = "two"
break
case 3:
sw = "three"
break
default:
sw = "other"
}
// --- try/catch/finally ---
var tc
try {