Update libdparse

This commit is contained in:
Hackerpilot 2016-01-29 02:00:18 -08:00
parent 2a4526c8be
commit 3bc810dcd4
3 changed files with 7 additions and 4 deletions

View File

@ -4,6 +4,6 @@
"targetType": "executable",
"license": "BSL-1.0",
"dependencies": {
"libdparse": "~>0.4.3"
"libdparse": "~>0.5.0"
}
}

@ -1 +1 @@
Subproject commit 60e4a81429627f678e0ad96f4b46950ef6f35cb8
Subproject commit 2ee91136abf935546de6bf581fd215b86d70e14e

View File

@ -135,8 +135,11 @@ final class FormatVisitor : ASTVisitor
override void visit(const FunctionLiteralExpression funcLit)
{
astInformation.funLitStartLocations ~= funcLit.functionBody.blockStatement.startLocation;
astInformation.funLitEndLocations ~= funcLit.functionBody.blockStatement.endLocation;
if (funcLit.functionBody !is null)
{
astInformation.funLitStartLocations ~= funcLit.functionBody.blockStatement.startLocation;
astInformation.funLitEndLocations ~= funcLit.functionBody.blockStatement.endLocation;
}
funcLit.accept(this);
}