Stop directly accessing top indent token
Accessing the top indent token without using the topIs* () methods is unsafe and can lead to range violations.
This commit is contained in:
parent
c84db53c7c
commit
72dd6e83b3
|
@ -207,7 +207,7 @@ private:
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"with"))
|
else if (currentIs(tok!"with"))
|
||||||
{
|
{
|
||||||
if (indents.length == 0 || (indents.top != tok!"switch" && indents.top != tok!"with"))
|
if (indents.length == 0 || !indents.topIsOneOf(tok!"switch", tok!"with"))
|
||||||
indents.push(tok!"with");
|
indents.push(tok!"with");
|
||||||
writeToken();
|
writeToken();
|
||||||
write(" ");
|
write(" ");
|
||||||
|
@ -1552,7 +1552,7 @@ private:
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}",
|
if (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}",
|
||||||
tok!";") && indents.top != tok!";"))
|
tok!";") && !indents.topIs(tok!";")))
|
||||||
indents.popTempIndents();
|
indents.popTempIndents();
|
||||||
indentLevel = indents.indentLevel;
|
indentLevel = indents.indentLevel;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue