commit | e63562c79af640a8b4fb3af9e164bf72dd803a6c | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Mar 23 22:52:31 2022 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Mar 23 22:52:31 2022 +0000 |
tree | ea68852a3b48b436d538623fc285812553ae69b0 | |
parent | 32788e5840f00e9548519978bf065fb53fb78760 [diff] | |
parent | 173949d17a33d0683a63e0b521817c428a670a34 [diff] |
Snap for 8347268 from 173949d17a33d0683a63e0b521817c428a670a34 to mainline-go-conscrypt-release Change-Id: I77b9f6d3c385b4b52f55a78ad517d08b0e46792a
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.