| 237 | FastVector<NodeZeroOP*> paramNodes; |
| 238 | |
| 239 | struct ClassSelect |
| 240 | { |
| 241 | ClassSelect(): type(NULL){} |
| 242 | bool proceed(){ return !type; } |
| 243 | void action(unsigned hash){ type = CodeInfo::classMap.find(hash); } |
| 244 | TypeInfo **type; |
| 245 | }; |
| 246 | |
| 247 | struct VariableSelect |
| 248 | { |
nothing calls this directly
no outgoing calls
no test coverage detected