Update libdparse
This commit is contained in:
parent
2a4526c8be
commit
3bc810dcd4
2
dub.json
2
dub.json
|
@ -4,6 +4,6 @@
|
||||||
"targetType": "executable",
|
"targetType": "executable",
|
||||||
"license": "BSL-1.0",
|
"license": "BSL-1.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"libdparse": "~>0.4.3"
|
"libdparse": "~>0.5.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 60e4a81429627f678e0ad96f4b46950ef6f35cb8
|
Subproject commit 2ee91136abf935546de6bf581fd215b86d70e14e
|
|
@ -135,8 +135,11 @@ final class FormatVisitor : ASTVisitor
|
||||||
|
|
||||||
override void visit(const FunctionLiteralExpression funcLit)
|
override void visit(const FunctionLiteralExpression funcLit)
|
||||||
{
|
{
|
||||||
astInformation.funLitStartLocations ~= funcLit.functionBody.blockStatement.startLocation;
|
if (funcLit.functionBody !is null)
|
||||||
astInformation.funLitEndLocations ~= funcLit.functionBody.blockStatement.endLocation;
|
{
|
||||||
|
astInformation.funLitStartLocations ~= funcLit.functionBody.blockStatement.startLocation;
|
||||||
|
astInformation.funLitEndLocations ~= funcLit.functionBody.blockStatement.endLocation;
|
||||||
|
}
|
||||||
funcLit.accept(this);
|
funcLit.accept(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue