cesyms, add support for shared static ctor/dtor

This commit is contained in:
Basile Burg 2016-04-13 08:36:20 +02:00
parent 50a2f499e6
commit da85fa6cc8
2 changed files with 11 additions and 2 deletions

View File

@ -428,9 +428,18 @@ class SymbolListBuilder(ListFmt Fmt): ASTVisitor
final override void visit(const StaticDestructor decl)
{
otherVisitorImpl(decl, SymbolType._function, "static ~this", decl.line, decl.column);
}
final override void visit(const SharedStaticConstructor decl)
{
otherVisitorImpl(decl, SymbolType._function, "shared static this", decl.line, decl.column);
}
final override void visit(const SharedStaticDestructor decl)
{
otherVisitorImpl(decl, SymbolType._function, "shared static ~this", decl.line, decl.column);
}
}
//----

@ -1 +1 @@
Subproject commit a03641db1bfa109d860eeb6e2ffdf3c81fd9e712
Subproject commit 108960c30fd12c031ce1d2f4d8f92b4b2da3e6d4