MCPcopy Create free account
hub / github.com/KDE/kdevelop / parseCSV

Method parseCSV

plugins/debuggercommon/mi/miparser.cpp:268–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

266}
267
268bool MIParser::parseCSV(TupleValue** value,
269 char start, char end)
270{
271 std::unique_ptr<TupleValue> tuple(new TupleValue);
272
273 if (!parseCSV(*tuple, start, end))
274 return false;
275
276 *value = tuple.get();
277 tuple.release();
278 return true;
279}
280
281bool MIParser::parseCSV(TupleValue& value,
282 char start, char end)

Callers

nothing calls this directly

Calls 6

releaseMethod · 0.80
lookAheadMethod · 0.80
getMethod · 0.45
appendMethod · 0.45
insertMethod · 0.45
nextTokenMethod · 0.45

Tested by

no test coverage detected