alibaba/structure-view

Incorrect class name display for c++ sources.

rsn8887 opened this issue · 1 comments

Structure-view displays a class name final corresponding to this source snippet:
class TitleScreen final.

The displayed class name should be TitleScreen, not final.

Also, namespaces should be parsed in the tree view, but it seems they are ignored. E.g.

namespace OpenRCT2
{
    class GameState;

    class TitleScreen final
    {

Should be shown as

NS OpenRCT2
     C GameState
     C TitleScreen
            F ... and so on

I think this is just another limitation of using ctags.