fn isEmptyBlock(ast: *const Ast, node: Ast.Node.Index) bool
fn isEmptyBlock(ast: *const Ast, node: Ast.Node.Index) bool { switch (ast.nodeTag(node)) { .block_two => { const opt_lhs, const opt_rhs = ast.nodeData(node).opt_node_and_opt_node; return opt_lhs == .none and opt_rhs == .none; }, else => return false, } }