| 526 | } |
| 527 | |
| 528 | LexState *ScintillaBase::DocumentLexState() { |
| 529 | if (!pdoc->pli) { |
| 530 | pdoc->pli = new LexState(pdoc); |
| 531 | } |
| 532 | return static_cast<LexState *>(pdoc->pli); |
| 533 | } |
| 534 | |
| 535 | void LexState::SetLexerModule(const LexerModule *lex) { |
| 536 | if (lex != lexCurrent) { |
nothing calls this directly
no outgoing calls
no test coverage detected