| 251 | } |
| 252 | |
| 253 | void fxNodeListDistribute(txNodeList* list, txNodeCall call, void* param) |
| 254 | { |
| 255 | txNode* item = list->first; |
| 256 | while (item) { |
| 257 | (*call)(item, param); |
| 258 | item = item->next; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | txAccessNode* fxAccessNodeNew(txParser* parser, txToken token, txSymbol* symbol) |
| 263 | { |
no outgoing calls
no test coverage detected