| 49 | static void _AR_EXP_FreeOpInternals(AR_ExpNode *op_node); |
| 50 | |
| 51 | inline bool AR_EXP_IsConstant(const AR_ExpNode *exp) { |
| 52 | return exp->type == AR_EXP_OPERAND && exp->operand.type == AR_EXP_CONSTANT; |
| 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; |
no outgoing calls
no test coverage detected