| 83 | #endif |
| 84 | |
| 85 | void SimVisitor::sub ( SimNode ** nodes, uint32_t count, const char * ) { |
| 86 | for ( uint32_t t=0; t!=count; ++t ) { |
| 87 | nodes[t] = nodes[t]->visit(*this); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | void SimNode_CallBase::visitCall ( SimVisitor & vis ) { |
| 92 | if ( fnPtr ) { |
no test coverage detected