fix(swc_core): Update references for quote! (#5408)

This commit is contained in:
OJ Kwon 2022-08-06 20:33:18 -07:00 committed by GitHub
parent d98b4e10d0
commit 27e7e0b69b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,5 @@
use swc_atoms::JsWord;
use swc_ecma_ast::*;
use self::private::Sealed; use self::private::Sealed;
use super::{ast::*, atoms::JsWord};
/// # Supported output types /// # Supported output types
/// ///

View File

@ -9,7 +9,7 @@ macro_rules! impl_simple_enum {
$( $(
$E::$v => q!( $E::$v => q!(
Vars {}, Vars {},
{ swc_ecma_ast::$E::$v } { swc_core::ast::$E::$v }
) )
.parse(), .parse(),
)* )*