| 18 | } |
| 19 | |
| 20 | class NoExposedTodoWalker extends Lint.RuleWalker { |
| 21 | override visitSourceFile(sourceFile: ts.SourceFile) { |
| 22 | utils.forEachComment(sourceFile, (text, commentRange) => { |
| 23 | const isTodoComment = text.substring(commentRange.pos, commentRange.end).includes('TODO:'); |
nothing calls this directly
no outgoing calls
no test coverage detected