MCPcopy Create free account
hub / github.com/apache/trafficserver / PopAllIndents

Method PopAllIndents

lib/yamlcpp/src/scanner.cpp:343–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

341}
342
343void Scanner::PopAllIndents() {
344 // are we in flow?
345 if (InFlowContext()) {
346 return;
347 }
348
349 // now pop away
350 while (!m_indents.empty()) {
351 const IndentMarker& indent = *m_indents.top();
352 if (indent.type == IndentMarker::NONE) {
353 break;
354 }
355
356 PopIndent();
357 }
358}
359
360void Scanner::PopIndent() {
361 const IndentMarker& indent = *m_indents.top();

Callers

nothing calls this directly

Calls 2

emptyMethod · 0.45
topMethod · 0.45

Tested by

no test coverage detected