mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
8 lines
334 B
Plaintext
8 lines
334 B
Plaintext
import java
|
|
|
|
query predicate methods(Method m, string signature) { m.fromSource() and signature = m.getSignature() }
|
|
|
|
query predicate constructors(Constructor c, string signature) { c.fromSource() and signature = c.getSignature() }
|
|
|
|
query predicate extensions(ExtensionMethod m, Type t) { m.getExtendedType() = t and m.fromSource() }
|