(cm, pos)
| 194 | } |
| 195 | |
| 196 | function stringStartsAfter(cm, pos) { |
| 197 | var token = cm.getTokenAt(Pos(pos.line, pos.ch + 1)) |
| 198 | return /\bstring/.test(token.type) && token.start == pos.ch && |
| 199 | (pos.ch == 0 || !/\bstring/.test(cm.getTokenTypeAt(pos))) |
| 200 | } |
| 201 | }); |
no test coverage detected