Files
codeql/python/ql/test/library-tests/comments/blocks.ql
2020-03-30 11:59:10 +02:00

14 lines
285 B
Plaintext

/**
* @name commented_out_code
* @description Insert description here...
* @kind table
* @problem.severity warning
*/
import python
import Lexical.CommentedOutCode
from CommentedOutCodeBlock c, int bl, int el
where c.hasLocationInfo(_, bl, _, el, _)
select bl, el, c.toString()