| 76 | } |
| 77 | |
| 78 | BeStructType* BeContext::CreateStruct(const StringImpl& name) |
| 79 | { |
| 80 | BeStructType* structType = mTypes.Alloc<BeStructType>(); |
| 81 | structType->mContext = this; |
| 82 | structType->mTypeCode = BeTypeCode_Struct; |
| 83 | structType->mName = name; |
| 84 | structType->mIsOpaque = true; |
| 85 | return structType; |
| 86 | } |
| 87 | |
| 88 | BeStructType* BeContext::CreateStruct(const SizedArrayImpl<BeType*>& types) |
| 89 | { |
no test coverage detected