─── NilStatement fallback ───────────────────────────────────────────────────
(t *testing.T)
| 1065 | // ─── NilStatement fallback ─────────────────────────────────────────────────── |
| 1066 | |
| 1067 | func TestFormatStatement_NilStatement(t *testing.T) { |
| 1068 | result := formatter.FormatStatement(nil, ast.CompactStyle()) |
| 1069 | if result != "" { |
| 1070 | t.Error("nil statement should return empty string") |
| 1071 | } |
| 1072 | } |
| 1073 | |
| 1074 | // ─── keyword case ───────────────────────────────────────────────────────────── |
| 1075 |
nothing calls this directly
no test coverage detected