| 719 | } |
| 720 | |
| 721 | SIValue AR_EXP_FinalizeAggregations |
| 722 | ( |
| 723 | AR_ExpNode *root, |
| 724 | const Record r |
| 725 | ) { |
| 726 | ASSERT(root != NULL); |
| 727 | |
| 728 | _AR_EXP_FinalizeAggregations(root); |
| 729 | return AR_EXP_Evaluate(root, r); |
| 730 | } |
| 731 | |
| 732 | void AR_EXP_CollectEntities(AR_ExpNode *root, rax *aliases) { |
| 733 | if(AR_EXP_IsOperation(root)) { |
no test coverage detected