| 1850 | } |
| 1851 | |
| 1852 | void fxExportNodePrintNode(void* it) |
| 1853 | { |
| 1854 | txExportNode* node = it; |
| 1855 | fprintf(stderr, "%s ", node->description->name); |
| 1856 | if (node->from) |
| 1857 | fprintf(stderr, "\"%s\" ", ((txStringNode*)node->from)->value); |
| 1858 | if (!node->specifiers) |
| 1859 | fprintf(stderr, "* "); |
| 1860 | } |
| 1861 | |
| 1862 | void fxFunctionNodePrintNode(void* it) |
| 1863 | { |