mirror of
https://github.com/github/codeql.git
synced 2026-04-25 16:55:19 +02:00
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
import python
|
|
|
|
class ImplicitConcat extends StrConst {
|
|
ImplicitConcat() {
|
|
exists(this.getAnImplicitlyConcatenatedPart())
|
|
}
|
|
}
|
|
|
|
from StrConst s, StringPart part, int n
|
|
where
|
|
part = s.getImplicitlyConcatenatedPart(n)
|
|
|
|
|
|
select s.getLocation().getStartLine(), s.getText(), n, part.getText() |