commit | 2a9fd9e7b4d25a880c96e93796f7f6c561472dad | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:22:12 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Feb 16 08:22:12 2022 +0000 |
tree | ea68852a3b48b436d538623fc285812553ae69b0 | |
parent | 32788e5840f00e9548519978bf065fb53fb78760 [diff] | |
parent | 173949d17a33d0683a63e0b521817c428a670a34 [diff] |
Snap for 8189365 from 173949d17a33d0683a63e0b521817c428a670a34 to tm-frc-scheduling-release Change-Id: Idc54f0693d945f6760231a3068dd80d892e73023
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"
Compiler support: requires rustc 1.31+
clone-impls
— Clone impls for all syntax tree types.Licensed under either of Apache License, Version 2.0 or MIT license 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.