| 3081 | } |
| 3082 | |
| 3083 | txFlag fxExpressionsNodeCodeThis(void* it, void* param, txFlag flag) |
| 3084 | { |
| 3085 | txExpressionsNode* self = it; |
| 3086 | if (self->items) { |
| 3087 | txNode* item = self->items->first; |
| 3088 | if (item->next == C_NULL) { |
| 3089 | return fxNodeDispatchCodeThis(item, param, flag); |
| 3090 | } |
| 3091 | } |
| 3092 | return fxNodeCodeThis(it, param, flag); |
| 3093 | } |
| 3094 | |
| 3095 | void fxExpressionsNodeCodeDelete(void* it, void* param) |
| 3096 | { |
nothing calls this directly
no test coverage detected