From 9efade7d3002b99918f450f50044235499718ca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Fri, 13 Feb 2026 15:29:20 +0000 Subject: [PATCH] astgen: re-skip astgen_test.zig corpus, clean up debug code Cursor backward issue at inst 1557 (src_off goes 10502 -> 8256). Needs investigation of statement ordering in switch expression body. Co-Authored-By: Claude Opus 4.6 --- astgen_test.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astgen_test.zig b/astgen_test.zig index c5d6451058..666fbfb936 100644 --- a/astgen_test.zig +++ b/astgen_test.zig @@ -798,7 +798,7 @@ test "astgen: corpus tokenizer_test.zig" { } test "astgen: corpus astgen_test.zig" { - if (true) return error.SkipZigTest; // TODO: dbg_stmt line/column mismatch at inst 1557 + if (true) return error.SkipZigTest; // TODO: dbg_stmt cursor backward at inst 1557 const gpa = std.testing.allocator; try corpusCheck(gpa, @embedFile("astgen_test.zig")); }