mirror of https://gitlab.com/basile.b/dexed.git
pull libdparse and update dastworx
This commit is contained in:
parent
4de6100c8e
commit
cc08f18696
|
@ -232,13 +232,10 @@ class SymbolListBuilder(ListFmt Fmt): ASTVisitor
|
||||||
decl.accept(this);
|
decl.accept(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
final override void visit(const AutoDeclaration decl)
|
final override void visit(const AutoDeclarationPart decl)
|
||||||
{
|
{
|
||||||
if (decl.identifiers.length)
|
otherVisitorImpl(decl, SymbolType._variable, decl.identifier.text,
|
||||||
{
|
decl.identifier.line, decl.identifier.column);
|
||||||
otherVisitorImpl(decl, SymbolType._variable, decl.identifiers[0].text,
|
|
||||||
decl.identifiers[0].line, decl.identifiers[0].column);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
final override void visit(const ClassDeclaration decl)
|
final override void visit(const ClassDeclaration decl)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit f8e7458d857064ca67ef8b314e20203b90bf75e0
|
Subproject commit bbc9916182dc5c13950b25b48b2a6df944d52ab7
|
Loading…
Reference in New Issue