| 330 | } |
| 331 | |
| 332 | vector<SimNode *> simulateLetInits ( Context & context, const ExprLet * pLet ) { |
| 333 | SimulateVisitor sv(context); |
| 334 | for ( auto & var : pLet->variables ) { |
| 335 | if ( var->init ) sv.simulateExpression(var->init); |
| 336 | } |
| 337 | return sv.sv_simulateLetInits(pLet); |
| 338 | } |
| 339 | // common for move and copy |
| 340 | |
| 341 | SimNode_CallBase * getCallBase ( SimNode * node ) { |
nothing calls this directly
no test coverage detected