mirror of
https://github.com/github/codeql.git
synced 2026-05-01 03:35:13 +02:00
Will need subsequent PRs fixing up test failures (due to deprecated methods moving around), but other than that everything should be straight-forward.
10 lines
265 B
Plaintext
10 lines
265 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()
|