| 337 | MemberVariable *firstVariable, *lastVariable; |
| 338 | |
| 339 | FunctionType* CreateFunctionType(TypeInfo *retType, unsigned int paramCount) |
| 340 | { |
| 341 | funcType = new (typeInfoPool.Allocate(sizeof(FunctionType))) FunctionType(); |
| 342 | funcType->paramType = (TypeInfo**)typeInfoPool.Allocate(paramCount * sizeof(TypeInfo*)); |
| 343 | funcType->paramCount = paramCount; |
| 344 | funcType->retType = retType; |
| 345 | return funcType; |
| 346 | } |
| 347 | static AliasInfo* CreateAlias(InplaceStr name, TypeInfo* type) |
| 348 | { |
| 349 | AliasInfo *info = new (typeInfoPool.Allocate(sizeof(AliasInfo))) AliasInfo; |
no test coverage detected