| 208 | } |
| 209 | |
| 210 | static inline AR_ExpNode *_AR_EXP_InitializeOperand(AR_OperandNodeType type) { |
| 211 | AR_ExpNode *node = rm_calloc(1, sizeof(AR_ExpNode)); |
| 212 | node->type = AR_EXP_OPERAND; |
| 213 | node->operand.type = type; |
| 214 | return node; |
| 215 | } |
| 216 | |
| 217 | AR_ExpNode *AR_EXP_NewVariableOperandNode(const char *alias) { |
| 218 | AR_ExpNode *node = _AR_EXP_InitializeOperand(AR_EXP_VARIADIC); |
no test coverage detected