fix: parsing diverts within content

This commit is contained in:
Brett Broadhurst 2026-03-30 17:19:12 -06:00
parent 2ee43514b4
commit 066369cc13
Failed to generate hash of commit
4 changed files with 45 additions and 6 deletions

View file

@ -1077,6 +1077,7 @@ fn content(block: *GenIr, scope: *Scope, node: *const Ast.Node) InnerError!Ir.In
.multi_if_stmt => _ = try multiIfStmt(block, scope, child_node),
.switch_stmt => _ = try switchStmt(block, scope, child_node),
.inline_if_stmt => _ = try inlineIfStmt(block, scope, child_node),
.divert_expr => _ = try divertExpr(block, scope, child_node),
else => unreachable,
}
}