mirror of
https://github.com/github/codeql.git
synced 2026-01-10 13:10:26 +01:00
This enables jump-to-definition and find-references in the VS Code extension, for C# source archives.
20 lines
566 B
Plaintext
20 lines
566 B
Plaintext
/**
|
|
* @name Jump-to-definition links
|
|
* @description Generates use-definition pairs that provide the data
|
|
* for jump-to-definition in the code viewer.
|
|
* @kind definitions
|
|
* @id cs/ide-jump-to-definition
|
|
* @tags ide-contextual-queries/local-definitions
|
|
*/
|
|
|
|
import definitions
|
|
|
|
external string selectedSourceFile();
|
|
|
|
from Use e, Declaration def, string kind, string filepath
|
|
where
|
|
def = definitionOf(e, kind) and
|
|
e.hasLocationInfo(filepath, _, _, _, _) and
|
|
filepath = getEncodedFile(selectedSourceFile()).getAbsolutePath()
|
|
select e, def, kind
|