| 929 | |
| 930 | std::vector<std::string> rawLines; |
| 931 | std::istringstream codeStream(code); |
| 932 | std::string rawLine; |
| 933 | while (std::getline(codeStream, rawLine)) rawLines.push_back(rawLine); |
| 934 | |
| 935 | std::vector<std::string> lines; |
| 936 | for (const auto& rawLine : rawLines) |
| 937 | { |
| 938 | std::string current_stmt; |
| 939 | bool in_string = false; |
| 940 | bool escape_next = false; |
| 941 | |
| 942 | for (size_t i = 0; i < rawLine.length(); i++) |
nothing calls this directly
no outgoing calls
no test coverage detected