mirror of
https://github.com/github/codeql.git
synced 2026-02-24 10:53:49 +01:00
10 lines
185 B
Plaintext
10 lines
185 B
Plaintext
/**
|
|
* @name DeclaresMember
|
|
*/
|
|
import default
|
|
|
|
from Type t, Member m
|
|
where m.getDeclaringType() = t
|
|
and (t.fromSource() or t instanceof TypeObject)
|
|
select t.toString(), m.toString()
|