Fix missing transition in using keyword
\n\nCommit migrated from 02781b17cd
This commit is contained in:
parent
e6b8c86a48
commit
6c6e048dcc
|
|
@ -1982,6 +1982,11 @@ namespace Microsoft.AspNetCore.Razor.Language.Legacy
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (transition != null)
|
||||||
|
{
|
||||||
|
builder.Add(transition);
|
||||||
|
}
|
||||||
|
|
||||||
AcceptAndMoveNext();
|
AcceptAndMoveNext();
|
||||||
AcceptWhile(IsSpacingToken(includeNewLines: false, includeComments: true));
|
AcceptWhile(IsSpacingToken(includeNewLines: false, includeComments: true));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue