| 360 | } |
| 361 | |
| 362 | static void _AR_EXP_OpResolveVariables(AR_ExpNode *node, const Record r) { |
| 363 | ASSERT(node->type == AR_EXP_OP); |
| 364 | |
| 365 | for(uint i = 0; i < node->op.child_count; i++) { |
| 366 | AR_ExpNode *child = node->op.children[i]; |
| 367 | _AR_EXP_ResolveVariables(child, r); |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | void _AR_EXP_OperandResolveVariables(AR_ExpNode *node, const Record r) { |
| 372 | ASSERT(node->type == AR_EXP_OPERAND); |
no test coverage detected