fix array item access regression
This commit is contained in:
parent
989c0da60c
commit
7f41c8ae7f
|
@ -611,6 +611,15 @@ private:
|
||||||
|
|
||||||
indents.push(tok!"]", detail);
|
indents.push(tok!"]", detail);
|
||||||
}
|
}
|
||||||
|
else if (p == tok!"[")
|
||||||
|
{
|
||||||
|
// array item access
|
||||||
|
IndentStack.Details detail;
|
||||||
|
detail.wrap = false;
|
||||||
|
detail.temp = true;
|
||||||
|
detail.mini = true;
|
||||||
|
indents.push(tok!"]", detail);
|
||||||
|
}
|
||||||
else if (!currentIs(tok!")") && !currentIs(tok!"]")
|
else if (!currentIs(tok!")") && !currentIs(tok!"]")
|
||||||
&& (linebreakHints.canFindIndex(index - 1) || (linebreakHints.length == 0
|
&& (linebreakHints.canFindIndex(index - 1) || (linebreakHints.length == 0
|
||||||
&& currentLineLength > config.max_line_length)))
|
&& currentLineLength > config.max_line_length)))
|
||||||
|
@ -664,7 +673,7 @@ private:
|
||||||
indents.popWrapIndents();
|
indents.popWrapIndents();
|
||||||
if (indents.topIs(tok!"]"))
|
if (indents.topIs(tok!"]"))
|
||||||
{
|
{
|
||||||
if (!indents.topDetails.mini)
|
if (!indents.topDetails.mini && !indents.topDetails.temp)
|
||||||
newline();
|
newline();
|
||||||
else
|
else
|
||||||
indents.pop();
|
indents.pop();
|
||||||
|
@ -839,6 +848,8 @@ private:
|
||||||
}
|
}
|
||||||
else if (astInformation.funLitStartLocations.canFindIndex(tIndex))
|
else if (astInformation.funLitStartLocations.canFindIndex(tIndex))
|
||||||
{
|
{
|
||||||
|
indents.popWrapIndents();
|
||||||
|
|
||||||
sBraceDepth++;
|
sBraceDepth++;
|
||||||
if (peekBackIsOneOf(true, tok!")", tok!"identifier"))
|
if (peekBackIsOneOf(true, tok!")", tok!"identifier"))
|
||||||
write(" ");
|
write(" ");
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
foo([
|
||||||
|
target.value.region[1], target.value.region[1],
|
||||||
|
target.value.region[1], target.value.region[1], target.value.region[1]
|
||||||
|
]);
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
foo([target.value.region[1], target.value.region[1], target.value.region[1], target.value.region[1], target.value.region[1]]);
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
unittest {
|
||||||
|
foo([
|
||||||
|
target.value.region[1], target.value.region[1],
|
||||||
|
target.value.region[1], target.value.region[1], target.value.region[1]
|
||||||
|
]);
|
||||||
|
}
|
Loading…
Reference in New Issue