Avoid possible null pointer access.
This commit is contained in:
parent
0f61586438
commit
b3b8ff1a43
|
@ -209,9 +209,12 @@ final class FormatVisitor : ASTVisitor
|
|||
override void visit (const FunctionBody functionBody)
|
||||
{
|
||||
if (auto bd = functionBody.specifiedFunctionBody)
|
||||
{
|
||||
if (bd.blockStatement)
|
||||
{
|
||||
astInformation.funBodyLocations ~= bd.blockStatement.startLocation;
|
||||
}
|
||||
}
|
||||
functionBody.accept(this);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue