syn/
lib.rs

1//! [![github]](https://github.com/dtolnay/syn) [![crates-io]](https://crates.io/crates/syn) [![docs-rs]](crate)
2//!
3//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
4//! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
5//! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs
6//!
7//! <br>
8//!
9//! Syn is a parsing library for parsing a stream of Rust tokens into a syntax
10//! tree of Rust source code.
11//!
12//! Currently this library is geared toward use in Rust procedural macros, but
13//! contains some APIs that may be useful more generally.
14//!
15//! - **Data structures** — Syn provides a complete syntax tree that can
16//!   represent any valid Rust source code. The syntax tree is rooted at
17//!   [`syn::File`] which represents a full source file, but there are other
18//!   entry points that may be useful to procedural macros including
19//!   [`syn::Item`], [`syn::Expr`] and [`syn::Type`].
20//!
21//! - **Derives** — Of particular interest to derive macros is
22//!   [`syn::DeriveInput`] which is any of the three legal input items to a
23//!   derive macro. An example below shows using this type in a library that can
24//!   derive implementations of a user-defined trait.
25//!
26//! - **Parsing** — Parsing in Syn is built around [parser functions] with the
27//!   signature `fn(ParseStream) -> Result<T>`. Every syntax tree node defined
28//!   by Syn is individually parsable and may be used as a building block for
29//!   custom syntaxes, or you may dream up your own brand new syntax without
30//!   involving any of our syntax tree types.
31//!
32//! - **Location information** — Every token parsed by Syn is associated with a
33//!   `Span` that tracks line and column information back to the source of that
34//!   token. These spans allow a procedural macro to display detailed error
35//!   messages pointing to all the right places in the user's code. There is an
36//!   example of this below.
37//!
38//! - **Feature flags** — Functionality is aggressively feature gated so your
39//!   procedural macros enable only what they need, and do not pay in compile
40//!   time for all the rest.
41//!
42//! [`syn::File`]: File
43//! [`syn::Item`]: Item
44//! [`syn::Expr`]: Expr
45//! [`syn::Type`]: Type
46//! [`syn::DeriveInput`]: DeriveInput
47//! [parser functions]: mod@parse
48//!
49//! <br>
50//!
51//! # Example of a derive macro
52//!
53//! The canonical derive macro using Syn looks like this. We write an ordinary
54//! Rust function tagged with a `proc_macro_derive` attribute and the name of
55//! the trait we are deriving. Any time that derive appears in the user's code,
56//! the Rust compiler passes their data structure as tokens into our macro. We
57//! get to execute arbitrary Rust code to figure out what to do with those
58//! tokens, then hand some tokens back to the compiler to compile into the
59//! user's crate.
60//!
61//! [`TokenStream`]: proc_macro::TokenStream
62//!
63//! ```toml
64//! [dependencies]
65//! syn = "2.0"
66//! quote = "1.0"
67//!
68//! [lib]
69//! proc-macro = true
70//! ```
71//!
72//! ```
73//! # extern crate proc_macro;
74//! #
75//! use proc_macro::TokenStream;
76//! use quote::quote;
77//! use syn::{parse_macro_input, DeriveInput};
78//!
79//! # const IGNORE_TOKENS: &str = stringify! {
80//! #[proc_macro_derive(MyMacro)]
81//! # };
82//! pub fn my_macro(input: TokenStream) -> TokenStream {
83//!     // Parse the input tokens into a syntax tree
84//!     let input = parse_macro_input!(input as DeriveInput);
85//!
86//!     // Build the output, possibly using quasi-quotation
87//!     let expanded = quote! {
88//!         // ...
89//!     };
90//!
91//!     // Hand the output tokens back to the compiler
92//!     TokenStream::from(expanded)
93//! }
94//! ```
95//!
96//! The [`heapsize`] example directory shows a complete working implementation
97//! of a derive macro. The example derives a `HeapSize` trait which computes an
98//! estimate of the amount of heap memory owned by a value.
99//!
100//! [`heapsize`]: https://github.com/dtolnay/syn/tree/master/examples/heapsize
101//!
102//! ```
103//! pub trait HeapSize {
104//!     /// Total number of bytes of heap memory owned by `self`.
105//!     fn heap_size_of_children(&self) -> usize;
106//! }
107//! ```
108//!
109//! The derive macro allows users to write `#[derive(HeapSize)]` on data
110//! structures in their program.
111//!
112//! ```
113//! # const IGNORE_TOKENS: &str = stringify! {
114//! #[derive(HeapSize)]
115//! # };
116//! struct Demo<'a, T: ?Sized> {
117//!     a: Box<T>,
118//!     b: u8,
119//!     c: &'a str,
120//!     d: String,
121//! }
122//! ```
123//!
124//! <p><br></p>
125//!
126//! # Spans and error reporting
127//!
128//! The token-based procedural macro API provides great control over where the
129//! compiler's error messages are displayed in user code. Consider the error the
130//! user sees if one of their field types does not implement `HeapSize`.
131//!
132//! ```
133//! # const IGNORE_TOKENS: &str = stringify! {
134//! #[derive(HeapSize)]
135//! # };
136//! struct Broken {
137//!     ok: String,
138//!     bad: std::thread::Thread,
139//! }
140//! ```
141//!
142//! By tracking span information all the way through the expansion of a
143//! procedural macro as shown in the `heapsize` example, token-based macros in
144//! Syn are able to trigger errors that directly pinpoint the source of the
145//! problem.
146//!
147//! ```text
148//! error[E0277]: the trait bound `std::thread::Thread: HeapSize` is not satisfied
149//!  --> src/main.rs:7:5
150//!   |
151//! 7 |     bad: std::thread::Thread,
152//!   |     ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `HeapSize` is not implemented for `Thread`
153//! ```
154//!
155//! <br>
156//!
157//! # Parsing a custom syntax
158//!
159//! The [`lazy-static`] example directory shows the implementation of a
160//! `functionlike!(...)` procedural macro in which the input tokens are parsed
161//! using Syn's parsing API.
162//!
163//! [`lazy-static`]: https://github.com/dtolnay/syn/tree/master/examples/lazy-static
164//!
165//! The example reimplements the popular `lazy_static` crate from crates.io as a
166//! procedural macro.
167//!
168//! ```
169//! # macro_rules! lazy_static {
170//! #     ($($tt:tt)*) => {}
171//! # }
172//! #
173//! lazy_static! {
174//!     static ref USERNAME: Regex = Regex::new("^[a-z0-9_-]{3,16}$").unwrap();
175//! }
176//! ```
177//!
178//! The implementation shows how to trigger custom warnings and error messages
179//! on the macro input.
180//!
181//! ```text
182//! warning: come on, pick a more creative name
183//!   --> src/main.rs:10:16
184//!    |
185//! 10 |     static ref FOO: String = "lazy_static".to_owned();
186//!    |                ^^^
187//! ```
188//!
189//! <br>
190//!
191//! # Testing
192//!
193//! When testing macros, we often care not just that the macro can be used
194//! successfully but also that when the macro is provided with invalid input it
195//! produces maximally helpful error messages. Consider using the [`trybuild`]
196//! crate to write tests for errors that are emitted by your macro or errors
197//! detected by the Rust compiler in the expanded code following misuse of the
198//! macro. Such tests help avoid regressions from later refactors that
199//! mistakenly make an error no longer trigger or be less helpful than it used
200//! to be.
201//!
202//! [`trybuild`]: https://github.com/dtolnay/trybuild
203//!
204//! <br>
205//!
206//! # Debugging
207//!
208//! When developing a procedural macro it can be helpful to look at what the
209//! generated code looks like. Use `cargo rustc -- -Zunstable-options
210//! --pretty=expanded` or the [`cargo expand`] subcommand.
211//!
212//! [`cargo expand`]: https://github.com/dtolnay/cargo-expand
213//!
214//! To show the expanded code for some crate that uses your procedural macro,
215//! run `cargo expand` from that crate. To show the expanded code for one of
216//! your own test cases, run `cargo expand --test the_test_case` where the last
217//! argument is the name of the test file without the `.rs` extension.
218//!
219//! This write-up by Brandon W Maister discusses debugging in more detail:
220//! [Debugging Rust's new Custom Derive system][debugging].
221//!
222//! [debugging]: https://quodlibetor.github.io/posts/debugging-rusts-new-custom-derive-system/
223//!
224//! <br>
225//!
226//! # Optional features
227//!
228//! Syn puts a lot of functionality behind optional features in order to
229//! optimize compile time for the most common use cases. The following features
230//! are available.
231//!
232//! - **`derive`** *(enabled by default)* — Data structures for representing the
233//!   possible input to a derive macro, including structs and enums and types.
234//! - **`full`** — Data structures for representing the syntax tree of all valid
235//!   Rust source code, including items and expressions.
236//! - **`parsing`** *(enabled by default)* — Ability to parse input tokens into
237//!   a syntax tree node of a chosen type.
238//! - **`printing`** *(enabled by default)* — Ability to print a syntax tree
239//!   node as tokens of Rust source code.
240//! - **`visit`** — Trait for traversing a syntax tree.
241//! - **`visit-mut`** — Trait for traversing and mutating in place a syntax
242//!   tree.
243//! - **`fold`** — Trait for transforming an owned syntax tree.
244//! - **`clone-impls`** *(enabled by default)* — Clone impls for all syntax tree
245//!   types.
246//! - **`extra-traits`** — Debug, Eq, PartialEq, Hash impls for all syntax tree
247//!   types.
248//! - **`proc-macro`** *(enabled by default)* — Runtime dependency on the
249//!   dynamic library libproc_macro from rustc toolchain.
250
251// Syn types in rustdoc of other crates get linked to here.
252#![doc(html_root_url = "https://docs.rs/syn/2.0.90")]
253#![cfg_attr(docsrs, feature(doc_cfg))]
254#![deny(unsafe_op_in_unsafe_fn)]
255#![allow(non_camel_case_types)]
256#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
257#![allow(
258    clippy::bool_to_int_with_if,
259    clippy::cast_lossless,
260    clippy::cast_possible_truncation,
261    clippy::cast_possible_wrap,
262    clippy::cast_ptr_alignment,
263    clippy::default_trait_access,
264    clippy::derivable_impls,
265    clippy::diverging_sub_expression,
266    clippy::doc_markdown,
267    clippy::enum_glob_use,
268    clippy::expl_impl_clone_on_copy,
269    clippy::explicit_auto_deref,
270    clippy::if_not_else,
271    clippy::inherent_to_string,
272    clippy::into_iter_without_iter,
273    clippy::items_after_statements,
274    clippy::large_enum_variant,
275    clippy::let_underscore_untyped, // https://github.com/rust-lang/rust-clippy/issues/10410
276    clippy::manual_assert,
277    clippy::manual_let_else,
278    clippy::manual_map,
279    clippy::match_like_matches_macro,
280    clippy::match_on_vec_items,
281    clippy::match_same_arms,
282    clippy::match_wildcard_for_single_variants, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6984
283    clippy::missing_errors_doc,
284    clippy::missing_panics_doc,
285    clippy::module_name_repetitions,
286    clippy::must_use_candidate,
287    clippy::needless_doctest_main,
288    clippy::needless_lifetimes,
289    clippy::needless_pass_by_value,
290    clippy::needless_update,
291    clippy::never_loop,
292    clippy::range_plus_one,
293    clippy::redundant_else,
294    clippy::ref_option,
295    clippy::return_self_not_must_use,
296    clippy::similar_names,
297    clippy::single_match_else,
298    clippy::struct_excessive_bools,
299    clippy::too_many_arguments,
300    clippy::too_many_lines,
301    clippy::trivially_copy_pass_by_ref,
302    clippy::unconditional_recursion, // https://github.com/rust-lang/rust-clippy/issues/12133
303    clippy::uninhabited_references,
304    clippy::uninlined_format_args,
305    clippy::unnecessary_box_returns,
306    clippy::unnecessary_unwrap,
307    clippy::used_underscore_binding,
308    clippy::wildcard_imports,
309)]
310
311extern crate self as syn;
312
313#[cfg(feature = "proc-macro")]
314extern crate proc_macro;
315
316#[macro_use]
317mod macros;
318
319#[cfg(feature = "parsing")]
320#[macro_use]
321mod group;
322
323#[macro_use]
324pub mod token;
325
326#[cfg(any(feature = "full", feature = "derive"))]
327mod attr;
328#[cfg(any(feature = "full", feature = "derive"))]
329#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
330pub use crate::attr::{AttrStyle, Attribute, Meta, MetaList, MetaNameValue};
331
332mod bigint;
333
334#[cfg(feature = "parsing")]
335#[cfg_attr(docsrs, doc(cfg(feature = "parsing")))]
336pub mod buffer;
337
338#[cfg(any(
339    all(feature = "parsing", feature = "full"),
340    all(feature = "printing", any(feature = "full", feature = "derive")),
341))]
342mod classify;
343
344mod custom_keyword;
345
346mod custom_punctuation;
347
348#[cfg(any(feature = "full", feature = "derive"))]
349mod data;
350#[cfg(any(feature = "full", feature = "derive"))]
351#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
352pub use crate::data::{Field, Fields, FieldsNamed, FieldsUnnamed, Variant};
353
354#[cfg(any(feature = "full", feature = "derive"))]
355mod derive;
356#[cfg(feature = "derive")]
357#[cfg_attr(docsrs, doc(cfg(feature = "derive")))]
358pub use crate::derive::{Data, DataEnum, DataStruct, DataUnion, DeriveInput};
359
360mod drops;
361
362mod error;
363pub use crate::error::{Error, Result};
364
365#[cfg(any(feature = "full", feature = "derive"))]
366mod expr;
367#[cfg(feature = "full")]
368#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
369pub use crate::expr::{Arm, Label, PointerMutability, RangeLimits};
370#[cfg(any(feature = "full", feature = "derive"))]
371#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
372pub use crate::expr::{
373    Expr, ExprBinary, ExprCall, ExprCast, ExprField, ExprIndex, ExprLit, ExprMacro, ExprMethodCall,
374    ExprParen, ExprPath, ExprReference, ExprStruct, ExprUnary, FieldValue, Index, Member,
375};
376#[cfg(any(feature = "full", feature = "derive"))]
377#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
378pub use crate::expr::{
379    ExprArray, ExprAssign, ExprAsync, ExprAwait, ExprBlock, ExprBreak, ExprClosure, ExprConst,
380    ExprContinue, ExprForLoop, ExprGroup, ExprIf, ExprInfer, ExprLet, ExprLoop, ExprMatch,
381    ExprRange, ExprRawAddr, ExprRepeat, ExprReturn, ExprTry, ExprTryBlock, ExprTuple, ExprUnsafe,
382    ExprWhile, ExprYield,
383};
384
385#[cfg(feature = "parsing")]
386#[cfg_attr(docsrs, doc(cfg(feature = "parsing")))]
387pub mod ext;
388
389#[cfg(feature = "full")]
390mod file;
391#[cfg(feature = "full")]
392#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
393pub use crate::file::File;
394
395#[cfg(all(any(feature = "full", feature = "derive"), feature = "printing"))]
396mod fixup;
397
398#[cfg(any(feature = "full", feature = "derive"))]
399mod generics;
400#[cfg(any(feature = "full", feature = "derive"))]
401#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
402pub use crate::generics::{
403    BoundLifetimes, ConstParam, GenericParam, Generics, LifetimeParam, PredicateLifetime,
404    PredicateType, TraitBound, TraitBoundModifier, TypeParam, TypeParamBound, WhereClause,
405    WherePredicate,
406};
407#[cfg(feature = "full")]
408#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
409pub use crate::generics::{CapturedParam, PreciseCapture};
410#[cfg(all(any(feature = "full", feature = "derive"), feature = "printing"))]
411#[cfg_attr(
412    docsrs,
413    doc(cfg(all(any(feature = "full", feature = "derive"), feature = "printing")))
414)]
415pub use crate::generics::{ImplGenerics, Turbofish, TypeGenerics};
416
417mod ident;
418#[doc(inline)]
419pub use crate::ident::Ident;
420
421#[cfg(feature = "full")]
422mod item;
423#[cfg(feature = "full")]
424#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
425pub use crate::item::{
426    FnArg, ForeignItem, ForeignItemFn, ForeignItemMacro, ForeignItemStatic, ForeignItemType,
427    ImplItem, ImplItemConst, ImplItemFn, ImplItemMacro, ImplItemType, ImplRestriction, Item,
428    ItemConst, ItemEnum, ItemExternCrate, ItemFn, ItemForeignMod, ItemImpl, ItemMacro, ItemMod,
429    ItemStatic, ItemStruct, ItemTrait, ItemTraitAlias, ItemType, ItemUnion, ItemUse, Receiver,
430    Signature, StaticMutability, TraitItem, TraitItemConst, TraitItemFn, TraitItemMacro,
431    TraitItemType, UseGlob, UseGroup, UseName, UsePath, UseRename, UseTree, Variadic,
432};
433
434mod lifetime;
435#[doc(inline)]
436pub use crate::lifetime::Lifetime;
437
438mod lit;
439#[doc(hidden)] // https://github.com/dtolnay/syn/issues/1566
440pub use crate::lit::StrStyle;
441#[doc(inline)]
442pub use crate::lit::{
443    Lit, LitBool, LitByte, LitByteStr, LitCStr, LitChar, LitFloat, LitInt, LitStr,
444};
445
446#[cfg(feature = "parsing")]
447mod lookahead;
448
449#[cfg(any(feature = "full", feature = "derive"))]
450mod mac;
451#[cfg(any(feature = "full", feature = "derive"))]
452#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
453pub use crate::mac::{Macro, MacroDelimiter};
454
455#[cfg(all(feature = "parsing", any(feature = "full", feature = "derive")))]
456#[cfg_attr(
457    docsrs,
458    doc(cfg(all(feature = "parsing", any(feature = "full", feature = "derive"))))
459)]
460pub mod meta;
461
462#[cfg(any(feature = "full", feature = "derive"))]
463mod op;
464#[cfg(any(feature = "full", feature = "derive"))]
465#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
466pub use crate::op::{BinOp, UnOp};
467
468#[cfg(feature = "parsing")]
469#[cfg_attr(docsrs, doc(cfg(feature = "parsing")))]
470pub mod parse;
471
472#[cfg(all(feature = "parsing", feature = "proc-macro"))]
473mod parse_macro_input;
474
475#[cfg(all(feature = "parsing", feature = "printing"))]
476mod parse_quote;
477
478#[cfg(feature = "full")]
479mod pat;
480#[cfg(feature = "full")]
481#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
482pub use crate::pat::{
483    FieldPat, Pat, PatConst, PatIdent, PatLit, PatMacro, PatOr, PatParen, PatPath, PatRange,
484    PatReference, PatRest, PatSlice, PatStruct, PatTuple, PatTupleStruct, PatType, PatWild,
485};
486
487#[cfg(any(feature = "full", feature = "derive"))]
488mod path;
489#[cfg(any(feature = "full", feature = "derive"))]
490#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
491pub use crate::path::{
492    AngleBracketedGenericArguments, AssocConst, AssocType, Constraint, GenericArgument,
493    ParenthesizedGenericArguments, Path, PathArguments, PathSegment, QSelf,
494};
495
496#[cfg(all(
497    any(feature = "full", feature = "derive"),
498    any(feature = "parsing", feature = "printing")
499))]
500mod precedence;
501
502#[cfg(all(any(feature = "full", feature = "derive"), feature = "printing"))]
503mod print;
504
505pub mod punctuated;
506
507#[cfg(any(feature = "full", feature = "derive"))]
508mod restriction;
509#[cfg(any(feature = "full", feature = "derive"))]
510#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
511pub use crate::restriction::{FieldMutability, VisRestricted, Visibility};
512
513mod sealed;
514
515#[cfg(all(feature = "parsing", feature = "derive", not(feature = "full")))]
516mod scan_expr;
517
518mod span;
519
520#[cfg(all(feature = "parsing", feature = "printing"))]
521#[cfg_attr(docsrs, doc(cfg(all(feature = "parsing", feature = "printing"))))]
522pub mod spanned;
523
524#[cfg(feature = "full")]
525mod stmt;
526#[cfg(feature = "full")]
527#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
528pub use crate::stmt::{Block, Local, LocalInit, Stmt, StmtMacro};
529
530mod thread;
531
532#[cfg(all(any(feature = "full", feature = "derive"), feature = "extra-traits"))]
533mod tt;
534
535#[cfg(any(feature = "full", feature = "derive"))]
536mod ty;
537#[cfg(any(feature = "full", feature = "derive"))]
538#[cfg_attr(docsrs, doc(cfg(any(feature = "full", feature = "derive"))))]
539pub use crate::ty::{
540    Abi, BareFnArg, BareVariadic, ReturnType, Type, TypeArray, TypeBareFn, TypeGroup,
541    TypeImplTrait, TypeInfer, TypeMacro, TypeNever, TypeParen, TypePath, TypePtr, TypeReference,
542    TypeSlice, TypeTraitObject, TypeTuple,
543};
544
545#[cfg(all(any(feature = "full", feature = "derive"), feature = "parsing"))]
546mod verbatim;
547
548#[cfg(all(feature = "parsing", feature = "full"))]
549mod whitespace;
550
551#[rustfmt::skip] // https://github.com/rust-lang/rustfmt/issues/6176
552mod gen {
553    /// Syntax tree traversal to transform the nodes of an owned syntax tree.
554    ///
555    /// Each method of the [`Fold`] trait is a hook that can be overridden to
556    /// customize the behavior when transforming the corresponding type of node.
557    /// By default, every method recursively visits the substructure of the
558    /// input by invoking the right visitor method of each of its fields.
559    ///
560    /// [`Fold`]: fold::Fold
561    ///
562    /// ```
563    /// # use syn::{Attribute, BinOp, Expr, ExprBinary};
564    /// #
565    /// pub trait Fold {
566    ///     /* ... */
567    ///
568    ///     fn fold_expr_binary(&mut self, node: ExprBinary) -> ExprBinary {
569    ///         fold_expr_binary(self, node)
570    ///     }
571    ///
572    ///     /* ... */
573    ///     # fn fold_attribute(&mut self, node: Attribute) -> Attribute;
574    ///     # fn fold_expr(&mut self, node: Expr) -> Expr;
575    ///     # fn fold_bin_op(&mut self, node: BinOp) -> BinOp;
576    /// }
577    ///
578    /// pub fn fold_expr_binary<V>(v: &mut V, node: ExprBinary) -> ExprBinary
579    /// where
580    ///     V: Fold + ?Sized,
581    /// {
582    ///     ExprBinary {
583    ///         attrs: node
584    ///             .attrs
585    ///             .into_iter()
586    ///             .map(|attr| v.fold_attribute(attr))
587    ///             .collect(),
588    ///         left: Box::new(v.fold_expr(*node.left)),
589    ///         op: v.fold_bin_op(node.op),
590    ///         right: Box::new(v.fold_expr(*node.right)),
591    ///     }
592    /// }
593    ///
594    /// /* ... */
595    /// ```
596    ///
597    /// <br>
598    ///
599    /// # Example
600    ///
601    /// This fold inserts parentheses to fully parenthesizes any expression.
602    ///
603    /// ```
604    /// // [dependencies]
605    /// // quote = "1.0"
606    /// // syn = { version = "2.0", features = ["fold", "full"] }
607    ///
608    /// use quote::quote;
609    /// use syn::fold::{fold_expr, Fold};
610    /// use syn::{token, Expr, ExprParen};
611    ///
612    /// struct ParenthesizeEveryExpr;
613    ///
614    /// impl Fold for ParenthesizeEveryExpr {
615    ///     fn fold_expr(&mut self, expr: Expr) -> Expr {
616    ///         Expr::Paren(ExprParen {
617    ///             attrs: Vec::new(),
618    ///             expr: Box::new(fold_expr(self, expr)),
619    ///             paren_token: token::Paren::default(),
620    ///         })
621    ///     }
622    /// }
623    ///
624    /// fn main() {
625    ///     let code = quote! { a() + b(1) * c.d };
626    ///     let expr: Expr = syn::parse2(code).unwrap();
627    ///     let parenthesized = ParenthesizeEveryExpr.fold_expr(expr);
628    ///     println!("{}", quote!(#parenthesized));
629    ///
630    ///     // Output: (((a)()) + (((b)((1))) * ((c).d)))
631    /// }
632    /// ```
633    #[cfg(feature = "fold")]
634    #[cfg_attr(docsrs, doc(cfg(feature = "fold")))]
635    #[rustfmt::skip]
636    pub mod fold;
637
638    /// Syntax tree traversal to walk a shared borrow of a syntax tree.
639    ///
640    /// Each method of the [`Visit`] trait is a hook that can be overridden to
641    /// customize the behavior when visiting the corresponding type of node. By
642    /// default, every method recursively visits the substructure of the input
643    /// by invoking the right visitor method of each of its fields.
644    ///
645    /// [`Visit`]: visit::Visit
646    ///
647    /// ```
648    /// # use syn::{Attribute, BinOp, Expr, ExprBinary};
649    /// #
650    /// pub trait Visit<'ast> {
651    ///     /* ... */
652    ///
653    ///     fn visit_expr_binary(&mut self, node: &'ast ExprBinary) {
654    ///         visit_expr_binary(self, node);
655    ///     }
656    ///
657    ///     /* ... */
658    ///     # fn visit_attribute(&mut self, node: &'ast Attribute);
659    ///     # fn visit_expr(&mut self, node: &'ast Expr);
660    ///     # fn visit_bin_op(&mut self, node: &'ast BinOp);
661    /// }
662    ///
663    /// pub fn visit_expr_binary<'ast, V>(v: &mut V, node: &'ast ExprBinary)
664    /// where
665    ///     V: Visit<'ast> + ?Sized,
666    /// {
667    ///     for attr in &node.attrs {
668    ///         v.visit_attribute(attr);
669    ///     }
670    ///     v.visit_expr(&*node.left);
671    ///     v.visit_bin_op(&node.op);
672    ///     v.visit_expr(&*node.right);
673    /// }
674    ///
675    /// /* ... */
676    /// ```
677    ///
678    /// <br>
679    ///
680    /// # Example
681    ///
682    /// This visitor will print the name of every freestanding function in the
683    /// syntax tree, including nested functions.
684    ///
685    /// ```
686    /// // [dependencies]
687    /// // quote = "1.0"
688    /// // syn = { version = "2.0", features = ["full", "visit"] }
689    ///
690    /// use quote::quote;
691    /// use syn::visit::{self, Visit};
692    /// use syn::{File, ItemFn};
693    ///
694    /// struct FnVisitor;
695    ///
696    /// impl<'ast> Visit<'ast> for FnVisitor {
697    ///     fn visit_item_fn(&mut self, node: &'ast ItemFn) {
698    ///         println!("Function with name={}", node.sig.ident);
699    ///
700    ///         // Delegate to the default impl to visit any nested functions.
701    ///         visit::visit_item_fn(self, node);
702    ///     }
703    /// }
704    ///
705    /// fn main() {
706    ///     let code = quote! {
707    ///         pub fn f() {
708    ///             fn g() {}
709    ///         }
710    ///     };
711    ///
712    ///     let syntax_tree: File = syn::parse2(code).unwrap();
713    ///     FnVisitor.visit_file(&syntax_tree);
714    /// }
715    /// ```
716    ///
717    /// The `'ast` lifetime on the input references means that the syntax tree
718    /// outlives the complete recursive visit call, so the visitor is allowed to
719    /// hold on to references into the syntax tree.
720    ///
721    /// ```
722    /// use quote::quote;
723    /// use syn::visit::{self, Visit};
724    /// use syn::{File, ItemFn};
725    ///
726    /// struct FnVisitor<'ast> {
727    ///     functions: Vec<&'ast ItemFn>,
728    /// }
729    ///
730    /// impl<'ast> Visit<'ast> for FnVisitor<'ast> {
731    ///     fn visit_item_fn(&mut self, node: &'ast ItemFn) {
732    ///         self.functions.push(node);
733    ///         visit::visit_item_fn(self, node);
734    ///     }
735    /// }
736    ///
737    /// fn main() {
738    ///     let code = quote! {
739    ///         pub fn f() {
740    ///             fn g() {}
741    ///         }
742    ///     };
743    ///
744    ///     let syntax_tree: File = syn::parse2(code).unwrap();
745    ///     let mut visitor = FnVisitor { functions: Vec::new() };
746    ///     visitor.visit_file(&syntax_tree);
747    ///     for f in visitor.functions {
748    ///         println!("Function with name={}", f.sig.ident);
749    ///     }
750    /// }
751    /// ```
752    #[cfg(feature = "visit")]
753    #[cfg_attr(docsrs, doc(cfg(feature = "visit")))]
754    #[rustfmt::skip]
755    pub mod visit;
756
757    /// Syntax tree traversal to mutate an exclusive borrow of a syntax tree in
758    /// place.
759    ///
760    /// Each method of the [`VisitMut`] trait is a hook that can be overridden
761    /// to customize the behavior when mutating the corresponding type of node.
762    /// By default, every method recursively visits the substructure of the
763    /// input by invoking the right visitor method of each of its fields.
764    ///
765    /// [`VisitMut`]: visit_mut::VisitMut
766    ///
767    /// ```
768    /// # use syn::{Attribute, BinOp, Expr, ExprBinary};
769    /// #
770    /// pub trait VisitMut {
771    ///     /* ... */
772    ///
773    ///     fn visit_expr_binary_mut(&mut self, node: &mut ExprBinary) {
774    ///         visit_expr_binary_mut(self, node);
775    ///     }
776    ///
777    ///     /* ... */
778    ///     # fn visit_attribute_mut(&mut self, node: &mut Attribute);
779    ///     # fn visit_expr_mut(&mut self, node: &mut Expr);
780    ///     # fn visit_bin_op_mut(&mut self, node: &mut BinOp);
781    /// }
782    ///
783    /// pub fn visit_expr_binary_mut<V>(v: &mut V, node: &mut ExprBinary)
784    /// where
785    ///     V: VisitMut + ?Sized,
786    /// {
787    ///     for attr in &mut node.attrs {
788    ///         v.visit_attribute_mut(attr);
789    ///     }
790    ///     v.visit_expr_mut(&mut *node.left);
791    ///     v.visit_bin_op_mut(&mut node.op);
792    ///     v.visit_expr_mut(&mut *node.right);
793    /// }
794    ///
795    /// /* ... */
796    /// ```
797    ///
798    /// <br>
799    ///
800    /// # Example
801    ///
802    /// This mut visitor replace occurrences of u256 suffixed integer literals
803    /// like `999u256` with a macro invocation `bigint::u256!(999)`.
804    ///
805    /// ```
806    /// // [dependencies]
807    /// // quote = "1.0"
808    /// // syn = { version = "2.0", features = ["full", "visit-mut"] }
809    ///
810    /// use quote::quote;
811    /// use syn::visit_mut::{self, VisitMut};
812    /// use syn::{parse_quote, Expr, File, Lit, LitInt};
813    ///
814    /// struct BigintReplace;
815    ///
816    /// impl VisitMut for BigintReplace {
817    ///     fn visit_expr_mut(&mut self, node: &mut Expr) {
818    ///         if let Expr::Lit(expr) = &node {
819    ///             if let Lit::Int(int) = &expr.lit {
820    ///                 if int.suffix() == "u256" {
821    ///                     let digits = int.base10_digits();
822    ///                     let unsuffixed: LitInt = syn::parse_str(digits).unwrap();
823    ///                     *node = parse_quote!(bigint::u256!(#unsuffixed));
824    ///                     return;
825    ///                 }
826    ///             }
827    ///         }
828    ///
829    ///         // Delegate to the default impl to visit nested expressions.
830    ///         visit_mut::visit_expr_mut(self, node);
831    ///     }
832    /// }
833    ///
834    /// fn main() {
835    ///     let code = quote! {
836    ///         fn main() {
837    ///             let _ = 999u256;
838    ///         }
839    ///     };
840    ///
841    ///     let mut syntax_tree: File = syn::parse2(code).unwrap();
842    ///     BigintReplace.visit_file_mut(&mut syntax_tree);
843    ///     println!("{}", quote!(#syntax_tree));
844    /// }
845    /// ```
846    #[cfg(feature = "visit-mut")]
847    #[cfg_attr(docsrs, doc(cfg(feature = "visit-mut")))]
848    #[rustfmt::skip]
849    pub mod visit_mut;
850
851    #[cfg(feature = "clone-impls")]
852    #[rustfmt::skip]
853    mod clone;
854
855    #[cfg(feature = "extra-traits")]
856    #[rustfmt::skip]
857    mod debug;
858
859    #[cfg(feature = "extra-traits")]
860    #[rustfmt::skip]
861    mod eq;
862
863    #[cfg(feature = "extra-traits")]
864    #[rustfmt::skip]
865    mod hash;
866}
867
868#[cfg(feature = "fold")]
869#[cfg_attr(docsrs, doc(cfg(feature = "fold")))]
870pub use crate::gen::fold;
871
872#[cfg(feature = "visit")]
873#[cfg_attr(docsrs, doc(cfg(feature = "visit")))]
874pub use crate::gen::visit;
875
876#[cfg(feature = "visit-mut")]
877#[cfg_attr(docsrs, doc(cfg(feature = "visit-mut")))]
878pub use crate::gen::visit_mut;
879
880// Not public API.
881#[doc(hidden)]
882#[path = "export.rs"]
883pub mod __private;
884
885/// Parse tokens of source code into the chosen syntax tree node.
886///
887/// This is preferred over parsing a string because tokens are able to preserve
888/// information about where in the user's code they were originally written (the
889/// "span" of the token), possibly allowing the compiler to produce better error
890/// messages.
891///
892/// This function parses a `proc_macro::TokenStream` which is the type used for
893/// interop with the compiler in a procedural macro. To parse a
894/// `proc_macro2::TokenStream`, use [`syn::parse2`] instead.
895///
896/// [`syn::parse2`]: parse2
897///
898/// This function enforces that the input is fully parsed. If there are any
899/// unparsed tokens at the end of the stream, an error is returned.
900#[cfg(all(feature = "parsing", feature = "proc-macro"))]
901#[cfg_attr(docsrs, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))]
902pub fn parse<T: parse::Parse>(tokens: proc_macro::TokenStream) -> Result<T> {
903    parse::Parser::parse(T::parse, tokens)
904}
905
906/// Parse a proc-macro2 token stream into the chosen syntax tree node.
907///
908/// This function parses a `proc_macro2::TokenStream` which is commonly useful
909/// when the input comes from a node of the Syn syntax tree, for example the
910/// body tokens of a [`Macro`] node. When in a procedural macro parsing the
911/// `proc_macro::TokenStream` provided by the compiler, use [`syn::parse`]
912/// instead.
913///
914/// [`syn::parse`]: parse()
915///
916/// This function enforces that the input is fully parsed. If there are any
917/// unparsed tokens at the end of the stream, an error is returned.
918#[cfg(feature = "parsing")]
919#[cfg_attr(docsrs, doc(cfg(feature = "parsing")))]
920pub fn parse2<T: parse::Parse>(tokens: proc_macro2::TokenStream) -> Result<T> {
921    parse::Parser::parse2(T::parse, tokens)
922}
923
924/// Parse a string of Rust code into the chosen syntax tree node.
925///
926/// This function enforces that the input is fully parsed. If there are any
927/// unparsed tokens at the end of the stream, an error is returned.
928///
929/// # Hygiene
930///
931/// Every span in the resulting syntax tree will be set to resolve at the macro
932/// call site.
933///
934/// # Examples
935///
936/// ```
937/// use syn::{Expr, Result};
938///
939/// fn run() -> Result<()> {
940///     let code = "assert_eq!(u8::max_value(), 255)";
941///     let expr = syn::parse_str::<Expr>(code)?;
942///     println!("{:#?}", expr);
943///     Ok(())
944/// }
945/// #
946/// # run().unwrap();
947/// ```
948#[cfg(feature = "parsing")]
949#[cfg_attr(docsrs, doc(cfg(feature = "parsing")))]
950pub fn parse_str<T: parse::Parse>(s: &str) -> Result<T> {
951    parse::Parser::parse_str(T::parse, s)
952}
953
954/// Parse the content of a file of Rust code.
955///
956/// This is different from `syn::parse_str::<File>(content)` in two ways:
957///
958/// - It discards a leading byte order mark `\u{FEFF}` if the file has one.
959/// - It preserves the shebang line of the file, such as `#!/usr/bin/env rustx`.
960///
961/// If present, either of these would be an error using `from_str`.
962///
963/// # Examples
964///
965/// ```no_run
966/// use std::error::Error;
967/// use std::fs;
968/// use std::io::Read;
969///
970/// fn run() -> Result<(), Box<dyn Error>> {
971///     let content = fs::read_to_string("path/to/code.rs")?;
972///     let ast = syn::parse_file(&content)?;
973///     if let Some(shebang) = ast.shebang {
974///         println!("{}", shebang);
975///     }
976///     println!("{} items", ast.items.len());
977///
978///     Ok(())
979/// }
980/// #
981/// # run().unwrap();
982/// ```
983#[cfg(all(feature = "parsing", feature = "full"))]
984#[cfg_attr(docsrs, doc(cfg(all(feature = "parsing", feature = "full"))))]
985pub fn parse_file(mut content: &str) -> Result<File> {
986    // Strip the BOM if it is present
987    const BOM: &str = "\u{feff}";
988    if content.starts_with(BOM) {
989        content = &content[BOM.len()..];
990    }
991
992    let mut shebang = None;
993    if content.starts_with("#!") {
994        let rest = whitespace::skip(&content[2..]);
995        if !rest.starts_with('[') {
996            if let Some(idx) = content.find('\n') {
997                shebang = Some(content[..idx].to_string());
998                content = &content[idx..];
999            } else {
1000                shebang = Some(content.to_string());
1001                content = "";
1002            }
1003        }
1004    }
1005
1006    let mut file: File = parse_str(content)?;
1007    file.shebang = shebang;
1008    Ok(file)
1009}