| 910 | } |
| 911 | |
| 912 | inline const char *AR_EXP_GetFuncName(const AR_ExpNode *exp) { |
| 913 | ASSERT(exp != NULL); |
| 914 | ASSERT(exp->type == AR_EXP_OP); |
| 915 | |
| 916 | return exp->op.f->name; |
| 917 | } |
| 918 | |
| 919 | AR_ExpNode *AR_EXP_Clone(AR_ExpNode *exp) { |
| 920 | if(exp == NULL) return NULL; |
no outgoing calls
no test coverage detected