mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
b8fe04f720
**Description:** This PR makes the error reporter print contexts. **Related issue:** - https://github.com/swc-project/swc/issues/6525.
25 lines
714 B
Plaintext
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>
|
|
`----
|