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

Method VisitStmt

CodeGenerator.cpp:1070–1080  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1068 }
1069
1070 void VisitStmt(Stmt* stmt)
1071 {
1072 auto* tmp = mPrevStmt;
1073 mPrevStmt = stmt;
1074
1075 for(auto* child : stmt->children()) {
1076 Visit(child);
1077 }
1078
1079 mPrevStmt = tmp;
1080 }
1081
1082 void Visit(Stmt* stmt)
1083 {

Callers

nothing calls this directly

Calls 1

childrenMethod · 0.80

Tested by

no test coverage detected