| 163 | auto tokens = tokenizePreserveQuotes(ruleText); |
| 164 | |
| 165 | enum Section { NONE, ROOT, POINT, FILESYSTEM, SOURCE } current = NONE; |
| 166 | enum State { WRITING, IDLE } state = IDLE; |
| 167 | |
| 168 | for (std::string& word : tokens) { |
nothing calls this directly
no outgoing calls
no test coverage detected