mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
7 lines
270 B
Plaintext
7 lines
270 B
Plaintext
import python
|
|
import semmle.python.Comparisons
|
|
|
|
from Comparison a, Comparison that, boolean thisIsTrue, boolean thatIsTrue
|
|
where a.impliesThat(thisIsTrue, that, thatIsTrue)
|
|
select a.getLocation().getStartLine(), thisIsTrue, that.getLocation().getStartLine(), thatIsTrue
|