Avoid possible null pointer access.
This commit is contained in:
parent
0f61586438
commit
b3b8ff1a43
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue