| 524 | } |
| 525 | |
| 526 | void Namespace::dumpFunctions( bool dumpScript, bool dumpEngine ) |
| 527 | { |
| 528 | // Get the global namespace. |
| 529 | Namespace* g = find(NULL); //->mParent; |
| 530 | |
| 531 | printClassHeader(NULL, NULL,NULL, false); |
| 532 | |
| 533 | while(g) |
| 534 | { |
| 535 | printNamespaceEntries(g, dumpScript, dumpEngine ); |
| 536 | g = g->mParent; |
| 537 | } |
| 538 | |
| 539 | printClassFooter(); |
| 540 | } |
nothing calls this directly
no test coverage detected