"Struct" in this sense means that we do NOT have a pointer to this value, but it may or may not be a Beef Struct
| 1166 | |
| 1167 | // "Struct" in this sense means that we do NOT have a pointer to this value, but it may or may not be a Beef Struct |
| 1168 | bool DbgType::IsCompositeType() |
| 1169 | { |
| 1170 | if (((mTypeCode == DbgType_TypeDef) || (mTypeCode == DbgType_Const)) && (mTypeParam != NULL)) |
| 1171 | return mTypeParam->IsCompositeType(); |
| 1172 | return ((mTypeCode == DbgType_Struct) || (mTypeCode == DbgType_Class) || (mTypeCode == DbgType_SizedArray)); |
| 1173 | } |
| 1174 | |
| 1175 | bool DbgType::WantsRefThis() |
| 1176 | { |
no outgoing calls
no test coverage detected