| 16313 | } |
| 16314 | |
| 16315 | void asCExprContext::Clear() |
| 16316 | { |
| 16317 | bc.ClearAll(); |
| 16318 | type.Set(asCDataType()); |
| 16319 | deferredParams.SetLength(0); |
| 16320 | if (property_arg) |
| 16321 | asDELETE(property_arg, asCExprContext); |
| 16322 | property_arg = 0; |
| 16323 | exprNode = 0; |
| 16324 | origExpr = 0; |
| 16325 | property_get = 0; |
| 16326 | property_set = 0; |
| 16327 | property_const = false; |
| 16328 | property_handle = false; |
| 16329 | property_ref = false; |
| 16330 | methodName = ""; |
| 16331 | enumValue = ""; |
| 16332 | symbolNamespace = 0; |
| 16333 | isVoidExpression = false; |
| 16334 | isCleanArg = false; |
| 16335 | isAnonymousInitList = false; |
| 16336 | origCode = 0; |
| 16337 | } |
| 16338 | |
| 16339 | bool asCExprContext::IsClassMethod() const |
| 16340 | { |
no test coverage detected