MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / VisitStmt

Method VisitStmt

CoroutinesCodeGenerator.cpp:401–411  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

399 }
400
401 void VisitStmt(Stmt* stmt)
402 {
403 auto* tmp = mPrevStmt;
404 mPrevStmt = stmt;
405
406 for(auto* child : stmt->children()) {
407 Visit(child);
408 }
409
410 mPrevStmt = tmp;
411 }
412};
413//-----------------------------------------------------------------------------
414

Callers

nothing calls this directly

Calls 1

childrenMethod · 0.80

Tested by

no test coverage detected