| 1737 | } |
| 1738 | |
| 1739 | void Document::LexerChanged() { |
| 1740 | // Tell the watchers the lexer has changed. |
| 1741 | for (std::vector<WatcherWithUserData>::iterator it = watchers.begin(); it != watchers.end(); ++it) { |
| 1742 | it->watcher->NotifyLexerChanged(this, it->userData); |
| 1743 | } |
| 1744 | } |
| 1745 | |
| 1746 | int SCI_METHOD Document::SetLineState(int line, int state) { |
| 1747 | int statePrevious = static_cast<LineState *>(perLineData[ldState])->SetLineState(line, state); |
no test coverage detected