(iter)
| 37 | return true; |
| 38 | } |
| 39 | function prevLine(iter) { |
| 40 | if (iter.line <= iter.min) return; |
| 41 | iter.text = iter.cm.getLine(--iter.line); |
| 42 | iter.ch = iter.text.length; |
| 43 | return true; |
| 44 | } |
| 45 | |
| 46 | function toTagEnd(iter) { |
| 47 | for (;;) { |
no outgoing calls
no test coverage detected