mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
14 lines
285 B
Plaintext
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()
|