diff --git a/src/code_path.zig b/src/code_path.zig index 5b204a4..da727b4 100644 --- a/src/code_path.zig +++ b/src/code_path.zig @@ -347,6 +347,15 @@ const LoopContext = struct { prev_break_target_is_switch: bool = false, }; +/// Break target for a labeled NON-loop statement (`A: { … break A; … }`). Loops +/// and switches have their own break handling; this covers the remaining case so +/// `break