diff --git a/dub.json b/dub.json index 32bc99d..abbf4c9 100644 --- a/dub.json +++ b/dub.json @@ -4,6 +4,6 @@ "targetType": "executable", "license": "BSL-1.0", "dependencies": { - "libdparse": "~>0.4.3" + "libdparse": "~>0.5.0" } } diff --git a/libdparse b/libdparse index 60e4a81..2ee9113 160000 --- a/libdparse +++ b/libdparse @@ -1 +1 @@ -Subproject commit 60e4a81429627f678e0ad96f4b46950ef6f35cb8 +Subproject commit 2ee91136abf935546de6bf581fd215b86d70e14e diff --git a/src/dfmt/ast_info.d b/src/dfmt/ast_info.d index 043d3d3..8716893 100644 --- a/src/dfmt/ast_info.d +++ b/src/dfmt/ast_info.d @@ -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); }