| 17983 | } |
| 17984 | |
| 17985 | bool asCExprContext::IsClassMethod() const |
| 17986 | { |
| 17987 | if (type.dataType.GetTypeInfo() == 0) return false; |
| 17988 | if (methodName == "") return false; |
| 17989 | if (type.dataType.GetTypeInfo() == &type.dataType.GetTypeInfo()->engine->functionBehaviours) return false; |
| 17990 | if (isAnonymousInitList) return false; |
| 17991 | return true; |
| 17992 | } |
| 17993 | |
| 17994 | bool asCExprContext::IsGlobalFunc() const |
| 17995 | { |
no test coverage detected