mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
13 lines
253 B
Plaintext
13 lines
253 B
Plaintext
/**
|
|
* @id test/missing-call-target
|
|
* @kind problem
|
|
* @problem.severity warning
|
|
*/
|
|
|
|
import csharp
|
|
import Telemetry.DatabaseQuality
|
|
|
|
from Call call
|
|
where CallTargetStats::isNotOkCall(call)
|
|
select call, "Call without target $@.", call, call.toString()
|