joaompneves / tsviz

Typescript UML Visualizer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nested modules / namespaces does not seem to work

hoegge opened this issue · comments

I was happily surprised when I managed to find this project, but when I try to document modules where the structure is like this

namespace outer {
    export namespace inner {
        export class Classname {
...
         }
    }
}

I get diagrams like these:
diagram

Class1name--------------
|    OuterNamespace ------------
|    |    InnerNameSpace ----------
|    |    |    Class1name -------------
|    |    |    |
|    |    |    |
|    |    |    |

Class2name--------------
|    OuterNamespace ------------
|    |    InnerNameSpace ----------
|    |    |    Class2name -------------
|    |    |    |
|    |    |    |
|    |    |    |

where the class names are doubled as outer module names so everything is split by class. Is that a bug or my wrong usage? Is this tsviz project still active?

Project abandoned?