| 5102 | } |
| 5103 | |
| 5104 | void TypeGeneric(unsigned pos) |
| 5105 | { |
| 5106 | newType->genericInfo = newType->CreateGenericContext(pos); |
| 5107 | newType->genericInfo->globalVarTop = varTop; |
| 5108 | newType->genericInfo->blockDepth = currDefinedFunc.size() ? currDefinedFunc.back()->vTopSize : 1; |
| 5109 | currType = newType; |
| 5110 | } |
| 5111 | |
| 5112 | void TypeInstanceGeneric(const char* pos, TypeInfo* base, unsigned aliases, bool genericTemp) |
| 5113 | { |
no test coverage detected