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

Method VisitStmt

CodeGenerator.cpp:2626–2636  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2624 }
2625
2626 void VisitStmt(Stmt* stmt)
2627 {
2628 auto* tmp = mPrevStmt;
2629 mPrevStmt = stmt;
2630
2631 for(auto* child : stmt->children()) {
2632 Visit(child);
2633 }
2634
2635 mPrevStmt = tmp;
2636 }
2637};
2638//-----------------------------------------------------------------------------
2639

Callers

nothing calls this directly

Calls 1

childrenMethod · 0.80

Tested by

no test coverage detected