cesyms, fix, selective imports were not detected

This commit is contained in:
Basile Burg 2016-06-29 02:35:25 +02:00
parent 896957b31a
commit 760d0c1a58
1 changed files with 5 additions and 0 deletions

View File

@ -388,6 +388,11 @@ class SymbolListBuilder(ListFmt Fmt): ASTVisitor
si.identifierChain.identifiers[0].line,
si.identifierChain.identifiers[0].column);
}
if (decl.importBindings) with (decl.importBindings.singleImport)
otherVisitorImpl(decl, SymbolType._import,
identifierChain.identifiers.map!(a => a.text).join("."),
identifierChain.identifiers[0].line,
identifierChain.identifiers[0].column);
}
final override void visit(const MixinTemplateDeclaration decl)