| 74 | } |
| 75 | |
| 76 | const char *LexerModule::GetWordListDescription(int index) const { |
| 77 | assert(index < GetNumWordLists()); |
| 78 | if (!wordListDescriptions || (index >= GetNumWordLists())) { |
| 79 | return ""; |
| 80 | } else { |
| 81 | return wordListDescriptions[index]; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | int LexerModule::GetStyleBitsNeeded() const { |
| 86 | return styleBits; |