Files
codeql/cpp/ql/src/definitions.ql
2018-08-02 17:53:23 +01:00

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