We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e692ab0 commit 7340a46Copy full SHA for 7340a46
src/construct/partial_mdx_jsx.rs
@@ -1060,10 +1060,7 @@ pub fn es_whitespace_inside(tokenizer: &mut Tokenizer) -> State {
1060
match tokenizer.current {
1061
Some(b'\n') => {
1062
tokenizer.exit(Name::MdxJsxEsWhitespace);
1063
- tokenizer.enter(Name::LineEnding);
1064
- tokenizer.consume();
1065
- tokenizer.exit(Name::LineEnding);
1066
- State::Next(StateName::MdxJsxEsWhitespaceEolAfter)
+ State::Retry(StateName::MdxJsxEsWhitespaceStart)
1067
}
1068
// Allow continuation bytes.
1069
Some(0x80..=0xBF) => {
0 commit comments