fn expectSwitchExpr(p: *Parse, is_labeled: bool) !Node.Index
fn expectSwitchExpr(p: *Parse, is_labeled: bool) !Node.Index { const switch_token = p.assertToken(.keyword_switch); return try p.expectSwitchSuffix(if (is_labeled) switch_token - 2 else switch_token); }