| 3093 | } |
| 3094 | |
| 3095 | void fxExpressionsNodeCodeDelete(void* it, void* param) |
| 3096 | { |
| 3097 | txExpressionsNode* self = it; |
| 3098 | if (self->items) { |
| 3099 | txNode* item = self->items->first; |
| 3100 | if (item->next == C_NULL) { |
| 3101 | fxNodeDispatchCodeDelete(item, param); |
| 3102 | return; |
| 3103 | } |
| 3104 | } |
| 3105 | fxNodeCodeDelete(it, param); |
| 3106 | } |
| 3107 | |
| 3108 | void fxFieldNodeCode(void* it, void* param) |
| 3109 | { |
nothing calls this directly
no test coverage detected