| 173 | |
| 174 | struct SimNodeCollector : SimVisitor { |
| 175 | virtual void preVisit ( SimNode * node ) override { |
| 176 | SimVisitor::preVisit(node); |
| 177 | thisNode = node; |
| 178 | } |
| 179 | virtual void op ( const char * name, uint32_t typeSize, const string & typeName ) override { |
| 180 | SimNodeInfo ni; |
| 181 | ni.name = name; |
nothing calls this directly
no test coverage detected