mirror of https://gitlab.com/basile.b/dexed.git
symlist, handle postblit
This commit is contained in:
parent
bf3d71a44b
commit
7b39f9d5e6
|
@ -297,6 +297,13 @@ class SymbolListBuilder(ListFmt Fmt): ASTVisitor
|
|||
namedVisitorImpl!(TemplateDeclaration, SymbolType._mixin)(decl.templateDeclaration);
|
||||
}
|
||||
|
||||
final override void visit(const Postblit pb)
|
||||
{
|
||||
//TODO: activate PostBlit visit.
|
||||
//otherVisitorImpl(pb, SymbolType._function, "postblit", pb.line, pb.column);
|
||||
pb.accept(this);
|
||||
}
|
||||
|
||||
final override void visit(const StructDeclaration decl)
|
||||
{
|
||||
namedVisitorImpl!(StructDeclaration, SymbolType._struct)(decl);
|
||||
|
|
Loading…
Reference in New Issue