| 3584 | } |
| 3585 | |
| 3586 | BeConstant* BeModule::GetConstantNull(BePointerType* type) |
| 3587 | { |
| 3588 | auto constant = mAlloc.Alloc<BeConstant>(); |
| 3589 | if (type == NULL) |
| 3590 | constant->mType = mContext->GetPrimitiveType(BeTypeCode_NullPtr); |
| 3591 | else |
| 3592 | constant->mType = type; |
| 3593 | return constant; |
| 3594 | } |
| 3595 | |
| 3596 | BeDbgReferenceType * BeDbgModule::CreateReferenceType(BeDbgType* elementType) |
| 3597 | { |
no test coverage detected