| 46 | } |
| 47 | |
| 48 | std::string Parser::toLower(const std::string& name) |
| 49 | { |
| 50 | std::string lowerCase = Misc::StringUtils::lowerCase(name); |
| 51 | |
| 52 | return lowerCase; |
| 53 | } |
| 54 | |
| 55 | Parser::Parser(ErrorHandler& errorHandler, const Context& context) |
| 56 | : mErrorHandler(errorHandler) |
no test coverage detected