| 118 | static const std::string WhileStmt = "WhileStmt"; |
| 119 | |
| 120 | static std::string unquote(const std::string &s) |
| 121 | { |
| 122 | return (s[0] == '\'') ? s.substr(1, s.size() - 2) : s; |
| 123 | } |
| 124 | |
| 125 | |
| 126 | static std::vector<std::string> splitString(const std::string &line) |
no test coverage detected