mirror of
https://github.com/github/codeql.git
synced 2026-03-27 17:58:17 +01:00
9 lines
275 B
Plaintext
9 lines
275 B
Plaintext
import semmle.code.java.security.ControlledString
|
|
|
|
from Expr precedes, Method method
|
|
where endsInQuote(precedes) and precedes.getEnclosingCallable() = method
|
|
select
|
|
method.getName(),
|
|
precedes.getLocation().getStartLine() - method.getLocation().getStartLine(),
|
|
precedes
|