DDT-IDE / DDT

DDT is an Eclipse-based IDE for the D programming language:
http://ddt-ide.github.io/
101 stars 16 forks source link

Destructors don't show up in module outline. #141

Closed aubade closed 8 years ago

aubade commented 8 years ago

I'm not sure when this started being an issue, as I've only recently started touching code that needs destructors, but they do not appear to show up in the module outline view as of 1.0.0

This is easily demonstrated by this module:

import std.stdio;

static this()
{

}

static ~this()
{

}

struct A
{
    this(int a) {}
    ~this() {}
}

class B
{
    this() {}
    ~this() {}
}

void main() {
    writeln("Hello World.");
}

the outline of which looks like this on my system: screenshot 2016-05-29 11 21 41