| 118 | } |
| 119 | |
| 120 | type flattenFakeLSP struct { |
| 121 | file string |
| 122 | line, column int |
| 123 | } |
| 124 | |
| 125 | func (f *flattenFakeLSP) Diagnostics(file string) (string, error) { f.file = file; return "ok", nil } |
| 126 | func (f *flattenFakeLSP) Definition(file string, line, column int) (string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected