vue_oxc_toolkit 0.9.1

A parser to generate semantically correct AST from Vue SFCs for code linting purposes.
Documentation
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
---
source: crates/vue_oxc_toolkit/src/test.rs
expression: result
---
=============== Program ===============
Program {
    span: Span {
        start: 0,
        end: 73,
    },
    source_text: "<script>\n\"use client\";\n</script>\n\n<script setup>\n\"use server\";\n</script>\n",
    comments: Vec(
        [],
    ),
    hashbang: None,
    directives: Vec(
        [
            Directive {
                span: Span {
                    start: 9,
                    end: 22,
                },
                expression: StringLiteral {
                    span: Span {
                        start: 9,
                        end: 21,
                    },
                    value: "use client",
                    raw: Some(
                        "\"use client\"",
                    ),
                    node_id: Cell {
                        value: NodeId(0),
                    },
                    lone_surrogates: false,
                },
                directive: "use client",
                node_id: Cell {
                    value: NodeId(0),
                },
            },
        ],
    ),
    body: Vec(
        [
            ExpressionStatement(
                ExpressionStatement {
                    span: Span {
                        start: 0,
                        end: 0,
                    },
                    expression: ArrowFunctionExpression(
                        ArrowFunctionExpression {
                            span: Span {
                                start: 0,
                                end: 0,
                            },
                            type_parameters: None,
                            params: FormalParameters {
                                span: Span {
                                    start: 0,
                                    end: 0,
                                },
                                items: Vec(
                                    [],
                                ),
                                rest: None,
                                node_id: Cell {
                                    value: NodeId(0),
                                },
                                kind: ArrowFormalParameters,
                            },
                            return_type: None,
                            body: FunctionBody {
                                span: Span {
                                    start: 0,
                                    end: 0,
                                },
                                directives: Vec(
                                    [
                                        Directive {
                                            span: Span {
                                                start: 49,
                                                end: 62,
                                            },
                                            expression: StringLiteral {
                                                span: Span {
                                                    start: 49,
                                                    end: 61,
                                                },
                                                value: "use server",
                                                raw: Some(
                                                    "\"use server\"",
                                                ),
                                                node_id: Cell {
                                                    value: NodeId(0),
                                                },
                                                lone_surrogates: false,
                                            },
                                            directive: "use server",
                                            node_id: Cell {
                                                value: NodeId(0),
                                            },
                                        },
                                    ],
                                ),
                                statements: Vec(
                                    [
                                        ExpressionStatement(
                                            ExpressionStatement {
                                                span: Span {
                                                    start: 0,
                                                    end: 0,
                                                },
                                                expression: JSXFragment(
                                                    JSXFragment {
                                                        span: Span {
                                                            start: 0,
                                                            end: 0,
                                                        },
                                                        opening_fragment: JSXOpeningFragment {
                                                            span: Span {
                                                                start: 0,
                                                                end: 0,
                                                            },
                                                            node_id: Cell {
                                                                value: NodeId(0),
                                                            },
                                                        },
                                                        children: Vec(
                                                            [
                                                                Element(
                                                                    JSXElement {
                                                                        span: Span {
                                                                            start: 0,
                                                                            end: 32,
                                                                        },
                                                                        opening_element: JSXOpeningElement {
                                                                            span: Span {
                                                                                start: 0,
                                                                                end: 8,
                                                                            },
                                                                            name: Identifier(
                                                                                JSXIdentifier {
                                                                                    span: Span {
                                                                                        start: 1,
                                                                                        end: 7,
                                                                                    },
                                                                                    name: "script",
                                                                                    node_id: Cell {
                                                                                        value: NodeId(0),
                                                                                    },
                                                                                },
                                                                            ),
                                                                            type_arguments: None,
                                                                            attributes: Vec(
                                                                                [],
                                                                            ),
                                                                            node_id: Cell {
                                                                                value: NodeId(0),
                                                                            },
                                                                        },
                                                                        children: Vec(
                                                                            [],
                                                                        ),
                                                                        closing_element: Some(
                                                                            JSXClosingElement {
                                                                                span: Span {
                                                                                    start: 23,
                                                                                    end: 32,
                                                                                },
                                                                                name: Identifier(
                                                                                    JSXIdentifier {
                                                                                        span: Span {
                                                                                            start: 25,
                                                                                            end: 31,
                                                                                        },
                                                                                        name: "script",
                                                                                        node_id: Cell {
                                                                                            value: NodeId(0),
                                                                                        },
                                                                                    },
                                                                                ),
                                                                                node_id: Cell {
                                                                                    value: NodeId(0),
                                                                                },
                                                                            },
                                                                        ),
                                                                        node_id: Cell {
                                                                            value: NodeId(0),
                                                                        },
                                                                    },
                                                                ),
                                                                Text(
                                                                    JSXText {
                                                                        span: Span {
                                                                            start: 32,
                                                                            end: 34,
                                                                        },
                                                                        value: "\n\n",
                                                                        raw: Some(
                                                                            "\n\n",
                                                                        ),
                                                                        node_id: Cell {
                                                                            value: NodeId(0),
                                                                        },
                                                                    },
                                                                ),
                                                                Element(
                                                                    JSXElement {
                                                                        span: Span {
                                                                            start: 34,
                                                                            end: 72,
                                                                        },
                                                                        opening_element: JSXOpeningElement {
                                                                            span: Span {
                                                                                start: 34,
                                                                                end: 48,
                                                                            },
                                                                            name: Identifier(
                                                                                JSXIdentifier {
                                                                                    span: Span {
                                                                                        start: 35,
                                                                                        end: 41,
                                                                                    },
                                                                                    name: "script",
                                                                                    node_id: Cell {
                                                                                        value: NodeId(0),
                                                                                    },
                                                                                },
                                                                            ),
                                                                            type_arguments: None,
                                                                            attributes: Vec(
                                                                                [
                                                                                    Attribute(
                                                                                        JSXAttribute {
                                                                                            span: Span {
                                                                                                start: 42,
                                                                                                end: 47,
                                                                                            },
                                                                                            name: Identifier(
                                                                                                JSXIdentifier {
                                                                                                    span: Span {
                                                                                                        start: 42,
                                                                                                        end: 47,
                                                                                                    },
                                                                                                    name: "setup",
                                                                                                    node_id: Cell {
                                                                                                        value: NodeId(0),
                                                                                                    },
                                                                                                },
                                                                                            ),
                                                                                            value: None,
                                                                                            node_id: Cell {
                                                                                                value: NodeId(0),
                                                                                            },
                                                                                        },
                                                                                    ),
                                                                                ],
                                                                            ),
                                                                            node_id: Cell {
                                                                                value: NodeId(0),
                                                                            },
                                                                        },
                                                                        children: Vec(
                                                                            [],
                                                                        ),
                                                                        closing_element: Some(
                                                                            JSXClosingElement {
                                                                                span: Span {
                                                                                    start: 63,
                                                                                    end: 72,
                                                                                },
                                                                                name: Identifier(
                                                                                    JSXIdentifier {
                                                                                        span: Span {
                                                                                            start: 65,
                                                                                            end: 71,
                                                                                        },
                                                                                        name: "script",
                                                                                        node_id: Cell {
                                                                                            value: NodeId(0),
                                                                                        },
                                                                                    },
                                                                                ),
                                                                                node_id: Cell {
                                                                                    value: NodeId(0),
                                                                                },
                                                                            },
                                                                        ),
                                                                        node_id: Cell {
                                                                            value: NodeId(0),
                                                                        },
                                                                    },
                                                                ),
                                                                Text(
                                                                    JSXText {
                                                                        span: Span {
                                                                            start: 72,
                                                                            end: 73,
                                                                        },
                                                                        value: "\n",
                                                                        raw: Some(
                                                                            "\n",
                                                                        ),
                                                                        node_id: Cell {
                                                                            value: NodeId(0),
                                                                        },
                                                                    },
                                                                ),
                                                            ],
                                                        ),
                                                        closing_fragment: JSXClosingFragment {
                                                            span: Span {
                                                                start: 0,
                                                                end: 0,
                                                            },
                                                            node_id: Cell {
                                                                value: NodeId(0),
                                                            },
                                                        },
                                                        node_id: Cell {
                                                            value: NodeId(0),
                                                        },
                                                    },
                                                ),
                                                node_id: Cell {
                                                    value: NodeId(0),
                                                },
                                            },
                                        ),
                                    ],
                                ),
                                node_id: Cell {
                                    value: NodeId(0),
                                },
                            },
                            node_id: Cell {
                                value: NodeId(0),
                            },
                            scope_id: Cell {
                                value: None,
                            },
                            expression: false,
                            async: true,
                            pure: false,
                            pife: false,
                        },
                    ),
                    node_id: Cell {
                        value: NodeId(0),
                    },
                },
            ),
        ],
    ),
    node_id: Cell {
        value: NodeId(0),
    },
    scope_id: Cell {
        value: None,
    },
    source_type: SourceType {
        language: JavaScript,
        module_kind: Unambiguous,
        variant: Jsx,
        extension: Some(
            Js,
        ),
    },
}

===============  Error  ===============
[]

=============== Codegen ===============
"use client";
async () => {
	"use server";
	<><script></script>

<script setup></script>
</>;
};


===============  Spans  ===============
Slice: "<script>\n\"use client\";\n</script>\n\n<script setup>\n\"use server\";\n</script>\n"; 
Span: (0, 73); 
Type: Program; 

Slice: "\"use client\";"; 
Span: (9, 22); 
Type: Directive; 

Slice: "\"use client\""; 
Span: (9, 21); 
Type: StringLiteral; 

Slice: "\"use server\";"; 
Span: (49, 62); 
Type: Directive; 

Slice: "\"use server\""; 
Span: (49, 61); 
Type: StringLiteral; 

Slice: "<script>\n\"use client\";\n</script>"; 
Span: (0, 32); 
Type: JSXElement; 

Slice: "<script>"; 
Span: (0, 8); 
Type: JSXOpeningElement; 

Slice: "script"; 
Span: (1, 7); 
Type: JSXIdentifier; 

Slice: "</script>"; 
Span: (23, 32); 
Type: JSXClosingElement; 

Slice: "script"; 
Span: (25, 31); 
Type: JSXIdentifier; 

Slice: "\n\n"; 
Span: (32, 34); 
Type: JSXText; 

Slice: "<script setup>\n\"use server\";\n</script>"; 
Span: (34, 72); 
Type: JSXElement; 

Slice: "<script setup>"; 
Span: (34, 48); 
Type: JSXOpeningElement; 

Slice: "script"; 
Span: (35, 41); 
Type: JSXIdentifier; 

Slice: "setup"; 
Span: (42, 47); 
Type: JSXAttribute; 

Slice: "setup"; 
Span: (42, 47); 
Type: JSXIdentifier; 

Slice: "</script>"; 
Span: (63, 72); 
Type: JSXClosingElement; 

Slice: "script"; 
Span: (65, 71); 
Type: JSXIdentifier; 

Slice: "\n"; 
Span: (72, 73); 
Type: JSXText;