Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust: add ide-contextual-queries/localDefinitions.ql #17804

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions rust/ql/lib/ide-contextual-queries/localDefinitions.ql
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**
* @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 rus/ide-jump-to-definition
* @tags ide-contextual-queries/local-definitions
*/

import codeql.IDEContextual
import codeql.rust.elements.Variable
import codeql.rust.elements.Locatable

external string selectedSourceFile();

predicate localVariable(Locatable e, Variable def) { e = def.getAnAccess() }

from Locatable e, Variable def, string kind
where
e.getLocation().getFile() = getFileBySourceArchiveName(selectedSourceFile()) and
localVariable(e, def) and
kind = "local variable"
select e, def, kind
Loading