Files
codeql/python/ql/test/library-tests/locations/implicit_concatenation/parts.ql
Erik Krogh Kristensen 3bf5e06d53 delete all dead code
2022-03-14 13:03:31 +01:00

6 lines
173 B
Plaintext

import python
from StrConst s, StringPart part, int n
where part = s.getImplicitlyConcatenatedPart(n)
select s.getLocation().getStartLine(), s.getText(), n, part.getText()