(stream, state)
| 70 | |
| 71 | // tokenizers |
| 72 | function tokenTranspose(stream, state) { |
| 73 | if (!stream.sol() && stream.peek() === "'") { |
| 74 | stream.next() |
| 75 | state.tokenize = tokenBase |
| 76 | return 'operator' |
| 77 | } |
| 78 | state.tokenize = tokenBase |
| 79 | return tokenBase(stream, state) |
| 80 | } |
| 81 | |
| 82 | function tokenComment(stream, state) { |
| 83 | if (stream.match(/^.*#}/)) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…