| 29 | // The root body of the file must implement this interface in order |
| 30 | // to support BlocksAtPos. |
| 31 | type Interface interface { |
| 32 | BlocksAtPos(pos Pos) []*Block |
| 33 | } |
| 34 | |
| 35 | impl, ok := f.Body.(Interface) |
| 36 | if !ok { |
no outgoing calls
no test coverage detected