1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
source: crates/rolldown_testing/src/integration_test.rs
---
# Errors
## PARSE_ERROR
```text
[PARSE_ERROR] Error: Expected `,` or `)` but found `class`
╭─[ main.jsx:8:8 ]
│
4 │ return (
│ ┬
│ ╰── Opened here
│
8 │ <a class="the">
│ ──┬──
│ ╰──── `,` or `)` expected
───╯
```
## PARSE_ERROR
```text
[PARSE_ERROR] Error: Expected corresponding JSX closing tag for 'b'.
╭─[ main.jsx:7:7 ]
│
5 │ <b>
│ ┬
│ ╰── Opened here
│
7 │ </a>
│ ┬
│ ╰── Expected `</b>`
───╯
```