commit | 7f49bc50baa8cfb5c5b5fdd9ca2cfbb4f0b4f567 | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Tue Jul 07 21:08:24 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Jul 07 21:08:24 2020 +0000 |
tree | 664191c4a2aa240b0b054dd8e0f422cdadf4e5c6 | |
parent | dfeb22e4e00a0eb31c654c5217127de61bc8606b [diff] | |
parent | 9a1f0f2cb808a9a5b703a3f05b11cf2062345fa7 [diff] |
Add OWNERS am: 291c13bec1 am: e76e98f38b am: 9a1f0f2cb8 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/syn-mid/+/1356767 Change-Id: I88694e5648b4b88352eb04df69e01aa71ad3e21c
Providing the features between "full" and "derive" of syn.
This crate provides the following two unique data structures.
syn_mid::ItemFn
-- A function whose body is not parsed.
fn process(n: usize) -> Result<()> { ... } ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^ ^
syn_mid::Block
-- A block whose body is not parsed.
{ ... } ^ ^
Other data structures are the same as data structures of syn. These are defined in this crate because they cannot be used in syn without "full" feature.
Add this to your Cargo.toml
:
[dependencies] syn-mid = "0.5"
The current syn-mid requires Rust 1.31 or later.
clone-impls
— Clone impls for all syntax tree types.Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.