swc_ecma_compat_es2016/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
#![allow(clippy::boxed_local)]
#![allow(clippy::vec_box)]

use swc_ecma_ast::Pass;

pub use self::exponentiation::exponentiation;

mod exponentiation;

pub fn es2016() -> impl Pass {
    exponentiation()
}