mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
7 lines
150 B
Plaintext
7 lines
150 B
Plaintext
import java
|
|
|
|
query predicate mods(Method m, string modifiers) {
|
|
m.getName() = "m" and
|
|
modifiers = concat(string s | m.hasModifier(s) | s, ", ")
|
|
}
|