delete all dead code

This commit is contained in:
Erik Krogh Kristensen
2022-03-14 13:03:31 +01:00
parent 27d41cba7e
commit 3bf5e06d53
30 changed files with 0 additions and 259 deletions

View File

@@ -1,9 +1,5 @@
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()

View File

@@ -1,9 +1,5 @@
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()