mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
12 lines
271 B
Plaintext
12 lines
271 B
Plaintext
import python
|
|
|
|
class ImplicitConcat extends StrConst {
|
|
ImplicitConcat() {
|
|
exists(this.getAnImplicitlyConcatenatedPart())
|
|
}
|
|
}
|
|
|
|
from StringPart s
|
|
|
|
|
|
select s.getLocation().getStartLine(), s.getText(), s.getLocation().getStartColumn(), s.getLocation().getEndColumn() |