(iter, ch)
| 26 | } |
| 27 | |
| 28 | function tagAt(iter, ch) { |
| 29 | var type = iter.cm.getTokenTypeAt(Pos(iter.line, ch)); |
| 30 | return type && /\btag\b/.test(type); |
| 31 | } |
| 32 | |
| 33 | function nextLine(iter) { |
| 34 | if (iter.line >= iter.max) return; |
no outgoing calls
no test coverage detected