swc/crates/swc_html_parser/tests/recovery/element/select-2/output.stderr
Donny/강동윤 b8fe04f720
feat(common): Add contexts to the error messages (#6526)
**Description:**

This PR makes the error reporter print contexts.

**Related issue:**

 - https://github.com/swc-project/swc/issues/6525.
2022-11-29 00:56:47 +09:00

25 lines
714 B
Plaintext

x "select" start tag where end tag expected
,-[$DIR/tests/recovery/element/select-2/input.html:7:1]
7 | <select name="test" id="test">
8 | <select name="test-1" id="test-1"></select>
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9 | </select>
`----
x Stray end tag "select"
,-[$DIR/tests/recovery/element/select-2/input.html:7:1]
7 | <select name="test" id="test">
8 | <select name="test-1" id="test-1"></select>
: ^^^^^^^^^
9 | </select>
`----
x Stray end tag "select"
,-[$DIR/tests/recovery/element/select-2/input.html:8:1]
8 | <select name="test-1" id="test-1"></select>
9 | </select>
: ^^^^^^^^^
10 | </body>
`----