(stream, state)
| 44 | |
| 45 | // tokenizers |
| 46 | function tokenTranspose(stream, state) { |
| 47 | if (!stream.sol() && stream.peek() === '\'') { |
| 48 | stream.next(); |
| 49 | state.tokenize = tokenBase; |
| 50 | return 'operator'; |
| 51 | } |
| 52 | state.tokenize = tokenBase; |
| 53 | return tokenBase(stream, state); |
| 54 | } |
| 55 | |
| 56 | |
| 57 | function tokenComment(stream, state) { |
nothing calls this directly
no test coverage detected