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"))
|
||||
{
|
||||
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");
|
||||
writeToken();
|
||||
write(" ");
|
||||
|
@ -1552,7 +1552,7 @@ private:
|
|||
else
|
||||
{
|
||||
if (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}",
|
||||
tok!";") && indents.top != tok!";"))
|
||||
tok!";") && !indents.topIs(tok!";")))
|
||||
indents.popTempIndents();
|
||||
indentLevel = indents.indentLevel;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue