| 17907 | } |
| 17908 | |
| 17909 | bool asCExprValue::IsNullConstant() const |
| 17910 | { |
| 17911 | // We can't check the actual object type, because the null constant may have been cast to another type |
| 17912 | if (isConstant && dataType.IsObjectHandle() && qwordValue == 0) |
| 17913 | return true; |
| 17914 | |
| 17915 | return false; |
| 17916 | } |
| 17917 | |
| 17918 | void asCExprValue::SetVoid() |
| 17919 | { |
no test coverage detected