(stream, state)
| 386 | |
| 387 | // handle preprocessing instructions |
| 388 | function tokenPreProcessing(stream, state) { |
| 389 | while (ch = stream.next()) { |
| 390 | if (ch == "?" && stream.match(">", true)) { |
| 391 | state.tokenize = tokenBase; |
| 392 | return ret("comment", "comment meta"); |
| 393 | } |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | |
| 398 | // functions to test the current context of the state |