| 17886 | } |
| 17887 | |
| 17888 | bool asCExprValue::IsUndefinedFuncHandle() const |
| 17889 | { |
| 17890 | if (isConstant == false) return false; |
| 17891 | if (qwordValue == 0) return false; |
| 17892 | if (isLValue) return false; |
| 17893 | if (dataType.GetTypeInfo() == 0) return false; |
| 17894 | if (dataType.GetTypeInfo()->name != "$func") return false; |
| 17895 | if (dataType.IsFuncdef()) return false; |
| 17896 | |
| 17897 | return true; |
| 17898 | } |
| 17899 | |
| 17900 | void asCExprValue::SetNullConstant() |
| 17901 | { |
no test coverage detected