| 142 | } |
| 143 | |
| 144 | void Bind(cm::string_view name, KeywordAction action) |
| 145 | { |
| 146 | bool const inserted = this->MaybeBind(name, std::move(action)); |
| 147 | assert(inserted); |
| 148 | static_cast<void>(inserted); |
| 149 | } |
| 150 | |
| 151 | void BindParsedKeyword(KeywordNameAction action) |
| 152 | { |
no test coverage detected