End of outside class member definition
| 5086 | |
| 5087 | // End of outside class member definition |
| 5088 | void TypeStop() |
| 5089 | { |
| 5090 | // Class members changed variable top, here we restore it to original position |
| 5091 | varTop = varInfoTop.back().varStackSize; |
| 5092 | // Remove all aliases defined inside class definition |
| 5093 | AliasInfo *info = newType->childAlias; |
| 5094 | while(info) |
| 5095 | { |
| 5096 | CodeInfo::classMap.remove(info->nameHash, info->type); |
| 5097 | info = info->next; |
| 5098 | } |
| 5099 | newType = NULL; |
| 5100 | // Remove class members from global scope |
| 5101 | EndBlock(false, false); |
| 5102 | } |
| 5103 | |
| 5104 | void TypeGeneric(unsigned pos) |
| 5105 | { |
no test coverage detected