| 385 | } |
| 386 | |
| 387 | bool Configurations::Parser::isComment(const std::string& line) { |
| 388 | return base::utils::Str::startsWith(line, std::string(base::consts::kConfigurationComment)); |
| 389 | } |
| 390 | |
| 391 | bool Configurations::Parser::isConfig(const std::string& line) { |
| 392 | std::size_t assignment = line.find('='); |
nothing calls this directly
no outgoing calls
no test coverage detected