Extracted out of #12554
The div tag below moves because we're not emitting the first like of the multiline implicit expression, and we don't end it with a semi-colon.
<div>
@if (true)
{
@Html.TextBox(new Test()
{
test = 5
})
<div></div>
}
</div>
Generating a semi-colon into the formatting document should fix it. The question is where :)
Extracted out of #12554
The div tag below moves because we're not emitting the first like of the multiline implicit expression, and we don't end it with a semi-colon.
Generating a semi-colon into the formatting document should fix it. The question is where :)