MCPcopy Create free account
hub / github.com/ChiyukiGana/Quickinput / exist

Method exist

source/src/scriptinterpreter.h:931–939  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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++)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected