| 53 | } |
| 54 | |
| 55 | inline bool AR_EXP_IsVariadic(const AR_ExpNode *exp) { |
| 56 | return exp->type == AR_EXP_OPERAND && exp->operand.type == AR_EXP_VARIADIC; |
| 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; |
no outgoing calls
no test coverage detected