| 57 | } |
| 58 | |
| 59 | inline bool AR_EXP_IsParameter(const AR_ExpNode *exp) { |
| 60 | return exp->type == AR_EXP_OPERAND && exp->operand.type == AR_EXP_PARAM; |
| 61 | } |
| 62 | |
| 63 | inline bool AR_EXP_IsOperation(const AR_ExpNode *exp) { |
| 64 | return exp->type == AR_EXP_OP; |
no outgoing calls
no test coverage detected