(file *File, offset int)
| 334 | } |
| 335 | |
| 336 | func contextString(file *File, offset int) string { |
| 337 | type contextStringer interface { |
| 338 | ContextString(offset int) string |
| 339 | } |
| 340 | |
| 341 | if cser, ok := file.Nav.(contextStringer); ok { |
| 342 | return cser.ContextString(offset) |
| 343 | } |
| 344 | return "" |
| 345 | } |
no test coverage detected