mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
269 B
Plaintext
15 lines
269 B
Plaintext
/**
|
|
* @id java/examples/qualifiedthis
|
|
* @name Qualified 'this' access
|
|
* @description Finds 'this' accesses that are qualified by a type name
|
|
* @tags this
|
|
* access
|
|
* qualifier
|
|
*/
|
|
|
|
import java
|
|
|
|
from ThisAccess t
|
|
where exists(t.getQualifier())
|
|
select t
|