mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
9a5de4beb6
transforms: - implement String.length simplifier - implement more arithmetic operations - new Date() is side-effect free - implement left.rhs * right - optimize `SeqExpr` while creation - implement es3 - member expression literals pass - implement es2015 - classes pass codegen: - handle infinity correctly - disable comments for testing (it's buggy) ast: - add methods about reserved words
17 lines
404 B
TOML
17 lines
404 B
TOML
[package]
|
|
name = "swc_ecma_transforms"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
|
|
[dependencies]
|
|
swc_atoms = { path = "../../atoms" }
|
|
swc_common = { path = "../../common" }
|
|
swc_ecma_ast = { path = "../ast" }
|
|
|
|
[dev-dependencies]
|
|
testing = { path = "../../testing" }
|
|
swc_ecma_codegen = { path = "../codegen" }
|
|
swc_ecma_parser = { path = "../parser" }
|
|
pretty_assertions = "0.5"
|
|
slog = "2"
|