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();
|
writeToken();
|
||||||
if (p == tok!"(")
|
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))
|
if (isBlockHeaderToken(tokens[index - 2].type))
|
||||||
indents.push(tok!")");
|
indents.push(tok!")");
|
||||||
else
|
else
|
||||||
|
@ -564,6 +568,9 @@ private:
|
||||||
spaceAfterParens = true;
|
spaceAfterParens = true;
|
||||||
parenDepth++;
|
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
|
immutable bool arrayInitializerStart = p == tok!"[" && linebreakHints.length != 0
|
||||||
&& astInformation.arrayStartLocations.canFindIndex(tokens[index - 1].index);
|
&& astInformation.arrayStartLocations.canFindIndex(tokens[index - 1].index);
|
||||||
if (arrayInitializerStart)
|
if (arrayInitializerStart)
|
||||||
|
|
Loading…
Reference in New Issue