Avoid possible null pointer access.

This commit is contained in:
Sönke Ludwig 2021-08-16 18:09:57 +02:00
parent 0f61586438
commit b3b8ff1a43
1 changed files with 4 additions and 1 deletions

View File

@ -210,7 +210,10 @@ final class FormatVisitor : ASTVisitor
{
if (auto bd = functionBody.specifiedFunctionBody)
{
astInformation.funBodyLocations ~= bd.blockStatement.startLocation;
if (bd.blockStatement)
{
astInformation.funBodyLocations ~= bd.blockStatement.startLocation;
}
}
functionBody.accept(this);
}