Insert or remove an opening "/*" or closing "*/" comment sequence.
| 195 | |
| 196 | /// Insert or remove an opening "/*" or closing "*/" comment sequence. |
| 197 | void addCommentSequence(bool isOpening, bool isInserted) |
| 198 | { |
| 199 | m_stacks[commentsIndex].addBracket(isOpening, isInserted); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Validate brackets and comments once parsing ends. |
no test coverage detected