mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Handle Expr::RawAddr
This commit is contained in:
parent
221302e35f
commit
1f4d6981ca
2 changed files with 6 additions and 5 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -730,9 +730,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.76"
|
||||
version = "2.0.80"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525"
|
||||
checksum = "e6e185e337f816bc8da115b8afcb3324006ccc82eeaddf35113888d3bd8e44ac"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
|
@ -3,9 +3,9 @@ use syn::{
|
|||
Attribute, Block, Expr, ExprArray, ExprAssign, ExprAsync, ExprAwait, ExprBinary, ExprBlock,
|
||||
ExprBreak, ExprCall, ExprCast, ExprClosure, ExprConst, ExprContinue, ExprField, ExprForLoop,
|
||||
ExprGroup, ExprIf, ExprIndex, ExprInfer, ExprLet, ExprLit, ExprLoop, ExprMacro, ExprMatch,
|
||||
ExprMethodCall, ExprParen, ExprPath, ExprRange, ExprReference, ExprRepeat, ExprReturn,
|
||||
ExprStruct, ExprTry, ExprTryBlock, ExprTuple, ExprUnary, ExprUnsafe, ExprWhile, ExprYield,
|
||||
File, Item, ItemMod, Stmt,
|
||||
ExprMethodCall, ExprParen, ExprPath, ExprRange, ExprRawAddr, ExprReference, ExprRepeat,
|
||||
ExprReturn, ExprStruct, ExprTry, ExprTryBlock, ExprTuple, ExprUnary, ExprUnsafe, ExprWhile,
|
||||
ExprYield, File, Item, ItemMod, Stmt,
|
||||
};
|
||||
|
||||
pub fn sanitize(syntax_tree: &mut File) {
|
||||
|
@ -89,6 +89,7 @@ fn attrs_mut(e: &mut Expr) -> Option<&mut Vec<Attribute>> {
|
|||
| Expr::Paren(ExprParen { attrs, .. })
|
||||
| Expr::Path(ExprPath { attrs, .. })
|
||||
| Expr::Range(ExprRange { attrs, .. })
|
||||
| Expr::RawAddr(ExprRawAddr { attrs, .. })
|
||||
| Expr::Reference(ExprReference { attrs, .. })
|
||||
| Expr::Repeat(ExprRepeat { attrs, .. })
|
||||
| Expr::Return(ExprReturn { attrs, .. })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue