swc_estree_compat/swcify/
jsx.rs

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
use swc_ecma_ast::Ident;

use crate::swcify::{Context, Swcify};

impl Swcify for swc_estree_ast::JSXNamespacedName {
    type Output = swc_ecma_ast::JSXNamespacedName;

    fn swcify(self, ctx: &Context) -> Self::Output {
        swc_ecma_ast::JSXNamespacedName {
            span: ctx.span(&self.base),
            ns: self.namespace.swcify(ctx).into(),
            name: self.name.swcify(ctx).into(),
        }
    }
}

impl Swcify for swc_estree_ast::JSXIdentifier {
    type Output = Ident;

    fn swcify(self, ctx: &Context) -> Self::Output {
        Ident {
            span: ctx.span(&self.base),
            sym: self.name,
            ..Default::default()
        }
    }
}