mirror of
https://github.com/swc-project/swc.git
synced 2024-12-04 19:46:22 +03:00
e949c40517
- Parser and lexer for lastest ecma spec https://tc39.github.io/ecma262 - Lexer is currently very inefficient - Use https://github.com/tc39/test262-parser-tests/ for testing. - Implement proc-macro based ast folder and assert_eq_ignore_span! based on it. - Some utilities for proc macro at /macros/common
12 lines
205 B
TOML
12 lines
205 B
TOML
[package]
|
|
name = "swc_ecmascript"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
|
|
[dependencies]
|
|
swc_ecma_ast = { path = "./ast" }
|
|
swc_ecma_parser = { path = "./parser" }
|
|
|
|
|
|
[dev-dependencies]
|