swc_ecma_minifier 53.0.0

EcmaScript code minifier.
1
2
3
4
5
6
7
8
9
10
11
12
//! Internal usage analyzer implementation for `swc_ecma_minifier`.
//!
//! This module was moved from the former standalone usage analyzer crate and is
//! intentionally kept internal to the minifier crate.

#![allow(clippy::mutable_key_type)]
#![allow(dead_code)]

pub mod alias;
pub mod analyzer;
pub mod marks;
pub mod util;