New baselines for HtmlToCodeSwitchTest#2610
Conversation
| SyntaxKind.ForwardSlash;[/]; | ||
| SyntaxKind.Text;[foo]; | ||
| SyntaxKind.CloseAngle;[>]; | ||
| RazorDocument - [0..19)::19 - [<foo>@@@@@bar</foo>] |
There was a problem hiding this comment.
If you notice, some tests have a RazorDocument wrapper and some don't. This means this test calls ParseDocumentTest and the others call ParseBlockTest on the input.
| Equals;[=]; | ||
| MarkupTextLiteral - [8..9)::1 - ["] - Gen<None> - SpanEditHandler;Accepts:Any | ||
| DoubleQuote;["]; | ||
| GenericBlock - [9..36)::27 |
There was a problem hiding this comment.
Maybe informational for me - what is GenericBlock?
There was a problem hiding this comment.
I explained it in the previous PR. #2609 (comment). Pasting it below,
ajaybhargavb 18 hours ago Member
In case you are wondering, this is to address @NTaylorMullen's comment in earlier PR (What's the difference between HtmlBlock and HtmlMarkupBlock?). GenericBlock is basically a wrapper when we need some parent block. It doesn't have a syntactic significance.
NTaylorMullen 18 hours ago Member
Container?
ajaybhargavb 18 hours ago Member
Yes, that's the word
|
|
Mostly testing the same code paths as the previous PRs. No need to review super hard.