| 170 | } |
| 171 | |
| 172 | type testWalker struct { |
| 173 | Calls []testWalkCall |
| 174 | } |
| 175 | |
| 176 | func (w *testWalker) Enter(node Node) hcl.Diagnostics { |
| 177 | w.Calls = append(w.Calls, testWalkCall{testWalkEnter, fmt.Sprintf("%T", node)}) |
nothing calls this directly
no outgoing calls
no test coverage detected