| 31 | #endif |
| 32 | |
| 33 | LexerSimple::LexerSimple(const LexerModule *module_) : module(module_) { |
| 34 | for (int wl = 0; wl < module->GetNumWordLists(); wl++) { |
| 35 | if (!wordLists.empty()) |
| 36 | wordLists += "\n"; |
| 37 | wordLists += module->GetWordListDescription(wl); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | const char * SCI_METHOD LexerSimple::DescribeWordListSets() { |
| 42 | return wordLists.c_str(); |
nothing calls this directly
no test coverage detected