(rng protocol.Range, line, character protocol.UInteger)
| 10 | ) |
| 11 | |
| 12 | func insideRange(rng protocol.Range, line, character protocol.UInteger) bool { |
| 13 | return rng.Start.Line == line && rng.Start.Character <= character && character <= rng.End.Character |
| 14 | } |
| 15 | |
| 16 | func Definition(ctx context.Context, definitionLinkSupport bool, doc document.ComposeDocument, params *protocol.DefinitionParams) (any, error) { |
| 17 | name, dependency := DocumentHighlights(doc, params.Position) |
no outgoing calls
no test coverage detected