| 936 | // Function is designed to be called from debugger to print subtree of current execution node |
| 937 | |
| 938 | const int devNodePrint(DmlNode* node) |
| 939 | { |
| 940 | NodePrinter printer; |
| 941 | node->print(printer); |
| 942 | printf("\n%s\n\n\n", printer.getText().c_str()); |
| 943 | fflush(stdout); |
| 944 | return 0; |
| 945 | } |
| 946 | #endif |
| 947 |