mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +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
20 lines
303 B
TOML
20 lines
303 B
TOML
[package]
|
|
name = "parser_macros"
|
|
version = "0.1.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
swc_macros_common = { path = "../../macros/common" }
|
|
proc-macro2 = "0.2"
|
|
|
|
[dependencies.syn]
|
|
version = "0.12"
|
|
features = ["fold"]
|
|
|
|
|
|
[dependencies.quote]
|
|
version = "0.4"
|