Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Visitor for stable rust #743

Merged
merged 32 commits into from
Apr 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
members = ["ecmascript/visit"]

[package]
name = "swc"
Expand Down
17 changes: 17 additions & 0 deletions ecmascript/visit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "swc_ecma_visit"
version = "0.1.0"
authors = ["강동윤 <[email protected]>"]
license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git"
documentation = "https://swc-project.github.io/rustdoc/swc_ecma_visit/"
description = "Visitors for swc ecmascript nodes which works on stable rustc"
edition = "2018"


[dependencies]
swc_atoms = { version = "0.2", path = "../../atoms" }
swc_common = { version = "0.5.9", path = "../../common" }
swc_ecma_ast = { version = "0.18.0", path ="../ast" }
swc_ecma_visit_macros = { version = "0.1.0", path ="./macros" }
num-bigint = { version = "0.2", features = ["serde"] }
16 changes: 16 additions & 0 deletions ecmascript/visit/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "swc_ecma_visit_macros"
version = "0.1.0"
authors = ["강동윤 <[email protected]>"]
edition = "2018"

[lib]
proc-macro = true

[dependencies]
swc_macros_common = { version = "0.3", path ="../../../macros/common" }
proc-macro2 = "1"
pmutil = "0.5.1"
quote = "1"
syn = { version = "1", features = ["parsing", "full"] }
Inflector = "0.11.4"
Loading