mirror of
https://github.com/github/codeql.git
synced 2026-04-10 17:44:03 +02: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, ", ")
|
|
}
|