mirror of
https://github.com/github/codeql.git
synced 2026-01-13 14:34:45 +01:00
14 lines
329 B
Plaintext
14 lines
329 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 cpp/jump-to-definition
|
|
*/
|
|
|
|
import definitions
|
|
|
|
from Top e, Top def, string kind
|
|
where def = definitionOf(e, kind)
|
|
select e, def, kind
|