Find comments match pattern
Author: Semmle LGTM
import java
from JavadocText c
where c.getText().regexpMatch('(?si).*\bTODO\b.*')
select c
Description
Finds comments containing the word 'TODO'
import java
from JavadocText c
where c.getText().regexpMatch('(?si).*\bTODO\b.*')
select c
Finds comments containing the word 'TODO'