mirror of
https://github.com/swc-project/swc.git
synced 2024-12-13 18:55:36 +03:00
9d7af34aab
common: - rename `Folder` to `Fold` - folder.then() - impl Fold for Box<F> - impl Fold<T> for &mut F where F: Fold<T> transforms: - make Simplifier private - organize compat codegen: - use `Mark` to avoid deoptimization swc: - upgrade rayon and use global thread pool instead
15 lines
353 B
TOML
15 lines
353 B
TOML
[package]
|
|
name = "swc_ecma_codegen"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
swc_common = { path = "../../common" }
|
|
swc_ecma_ast = { path = "../ast" }
|
|
ecma_codegen_macros = { path = "./macros" }
|
|
|
|
[dev-dependencies]
|
|
testing = { path = "../../testing" }
|
|
slog = "2"
|
|
swc_ecma_parser = { path = "../parser" } |