Add index validity checks to the left paren/bracket code. Fixes #367. (#368)

Add index validity checks to the left paren/bracket code. Fixes #367.
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
Brian Schott 2018-09-05 16:01:27 -07:00 committed by The Dlang Bot
parent 56097fd106
commit ae76778801
1 changed files with 7 additions and 0 deletions

View File

@ -557,6 +557,10 @@ private:
writeToken();
if (p == tok!"(")
{
// If the file starts with an open paren, just give up. This isn't
// valid D code.
if (index < 2)
return;
if (isBlockHeaderToken(tokens[index - 2].type))
indents.push(tok!")");
else
@ -564,6 +568,9 @@ private:
spaceAfterParens = true;
parenDepth++;
}
// No heuristics apply if we can't look before the opening paren/bracket
if (index < 1)
return;
immutable bool arrayInitializerStart = p == tok!"[" && linebreakHints.length != 0
&& astInformation.arrayStartLocations.canFindIndex(tokens[index - 1].index);
if (arrayInitializerStart)