| 87 | } |
| 88 | |
| 89 | bool AR_EXP_PerformsDistinct(AR_ExpNode *exp) { |
| 90 | return AR_EXP_ContainsFunc(exp, "distinct"); |
| 91 | } |
| 92 | |
| 93 | // repurpose node to a constant expression |
| 94 | static void _AR_EXP_InplaceRepurposeConstant(AR_ExpNode *node, SIValue v) { |
no test coverage detected