swc/ecmascript/transforms/Cargo.toml
강동윤 9a5de4beb6
More transcompilers (#49)
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
2018-11-14 19:40:46 +09:00

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"