commit | f29e8031caa5f9250e1917f2b8b4669e8bbcf14e | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu May 23 23:15:19 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu May 23 23:15:19 2024 +0000 |
tree | 932c18524b61c222706669388ae4bc21db73869a | |
parent | af68bf99ca6c35f44c4ec225f7c5d37a20e2873b [diff] | |
parent | 400e02f105c6b23831c6d5359e13b8d1eecbc3d6 [diff] |
Snap for 11881322 from 400e02f105c6b23831c6d5359e13b8d1eecbc3d6 to 24Q3-release Change-Id: I0b3cc11bbed2c5011711b1ef10ba74ad9efb563f
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.56+
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.