commit | 6b0d266d0b2a0c3cf646f98441dd8408a6e75fe8 | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Thu Aug 27 09:44:15 2020 -0700 |
committer | Xin Li <delphij@google.com> | Thu Aug 27 09:44:15 2020 -0700 |
tree | c6ca34ec53e9a6cd8790000cbe2c25ff1465fbd1 | |
parent | dc50080ef8c7181a8a129e3315e762f46eab6192 [diff] | |
parent | 9a1f0f2cb808a9a5b703a3f05b11cf2062345fa7 [diff] |
Mark Android R (rvc-dev-plus-aosp-without-vendor@6692709) as merged Bug: 166295507 Merged-In: I8ff480dd2e7d7e9cdcc498d91cbaf5b385487a94 Change-Id: I8bf33bc09e8cf581151c112fa442e65c987160af
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.