mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
Add consistency query to verify we always have qualifier for calls
This commit is contained in:
5
java/ql/consistency-queries/calls.ql
Normal file
5
java/ql/consistency-queries/calls.ql
Normal file
@@ -0,0 +1,5 @@
|
||||
import java
|
||||
|
||||
from MethodAccess ma
|
||||
where not exists(ma.getQualifier()) and ma.getFile().isKotlinSourceFile()
|
||||
select ma
|
||||
Reference in New Issue
Block a user