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:
parent
56097fd106
commit
ae76778801
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue