Files
codeql/python/ql/test/library-tests/comparisons/Implication.ql
2018-11-19 15:15:54 +00:00

9 lines
272 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