You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use swc_core::ecma::{ast::Ident, visit::VisitMut};
use tracing::debug;
pub struct Whatplatform;
impl VisitMut for Whatplatform {
// Implement necessary visit_mut_* methods for actual custom transform.
// A comprehensive list of possible visitor methods can be found here:
// https://rustdoc.swc.rs/swc_ecma_visit/trait.VisitMut.html
fn visit_mut_ident(&mut self, n: &mut Ident) {
debug!("Values: {:#?}", n);
}
}
The text was updated successfully, but these errors were encountered:
RUST_LOG=trace cargo test -- --nocapture
The text was updated successfully, but these errors were encountered: