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