| 542 | } |
| 543 | |
| 544 | void Namespace::dumpFunctions( bool dumpScript, bool dumpEngine ) |
| 545 | { |
| 546 | // Get the global namespace. |
| 547 | Namespace* g = find(NULL); //->mParent; |
| 548 | |
| 549 | printClassHeader(NULL, NULL,NULL, false); |
| 550 | |
| 551 | while(g) |
| 552 | { |
| 553 | printNamespaceEntries(g, dumpScript, dumpEngine ); |
| 554 | g = g->mParent; |
| 555 | } |
| 556 | |
| 557 | printClassFooter(); |
| 558 | } |
nothing calls this directly
no test coverage detected