| 87 | } |
| 88 | |
| 89 | ILexer *LexerModule::Create() const { |
| 90 | if (fnFactory) |
| 91 | return fnFactory(); |
| 92 | else |
| 93 | return new LexerSimple(this); |
| 94 | } |
| 95 | |
| 96 | void LexerModule::Lex(unsigned int startPos, int lengthDoc, int initStyle, |
| 97 | WordList *keywordlists[], Accessor &styler) const { |
nothing calls this directly
no outgoing calls
no test coverage detected