CodeQL
1 program
Added 2026-02-10T20:51:45Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 2819bbba2c · authored 2026-02-10T21:52:28+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/codeqlExtensions claimed by this language
4 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.ql | linguist | primary | 81.5K files |
.ql | pygments | primary | 81.5K files |
.qll | linguist | secondary | 76.1K files |
.qll | pygments | secondary | 76.1K files |
Related languages
LLM-contributed programs
Unused Variable Finder
Provenance: commit 2819bbba2c · authored 2026-02-10T21:52:28+01:00 · agent claude-code · model sonnet · WebSearch disabled
/**
* @name Unused variable
* @description Finds local variables that are never used
* @kind problem
* @problem.severity warning
* @id java/unused-variable
*/
import java
from LocalVariableDecl v
where not exists(VarAccess va | va.getVariable() = v)
select v, "Variable " + v.getName() + " is never used."
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)