| 580 | } |
| 581 | |
| 582 | bool asCDataType::IsObject() const |
| 583 | { |
| 584 | if( IsPrimitive() ) |
| 585 | return false; |
| 586 | |
| 587 | // Null handle doesn't have an object type but should still be considered an object |
| 588 | if( typeInfo == 0 ) |
| 589 | return IsNullHandle(); |
| 590 | |
| 591 | // Template subtypes shouldn't be considered objects |
| 592 | return CastToObjectType(typeInfo) ? true : false; |
| 593 | } |
| 594 | |
| 595 | bool asCDataType::IsFuncdef() const |
| 596 | { |
no test coverage detected