| 47 | }; |
| 48 | |
| 49 | void reset() noexcept { indents_ = {}; } |
| 50 | void startBlock() { indents_.push_back(Block); } |
| 51 | void openParenthesis() { indents_.push_back(Parenthesis); } |
| 52 | void openBracket() { indents_.push_back(Bracket); } |
no outgoing calls
no test coverage detected