mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
12 lines
188 B
Plaintext
12 lines
188 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()
|