(stream, state)
| 55 | |
| 56 | |
| 57 | function tokenComment(stream, state) { |
| 58 | if (stream.match(/^.*%}/)) { |
| 59 | state.tokenize = tokenBase; |
| 60 | return 'comment'; |
| 61 | }; |
| 62 | stream.skipToEnd(); |
| 63 | return 'comment'; |
| 64 | } |
| 65 | |
| 66 | function tokenBase(stream, state) { |
| 67 | // whitespaces |
nothing calls this directly
no outgoing calls
no test coverage detected