| 18 | { |
| 19 | public: |
| 20 | FunctionType() |
| 21 | { |
| 22 | retType = NULL; |
| 23 | paramType = NULL; |
| 24 | paramCount = 0; |
| 25 | paramSize = NULLC_PTR_SIZE; |
| 26 | } |
| 27 | |
| 28 | TypeInfo *retType; |
| 29 | TypeInfo **paramType; // Array of pointers to type information |
nothing calls this directly
no outgoing calls
no test coverage detected