diff options
| author | bors <bors@rust-lang.org> | 2021-02-27 07:52:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-02-27 07:52:11 +0000 |
| commit | 8e863eb59a10fb0900d7377524a0dc7bf44b9ae3 (patch) | |
| tree | 3e21f786845776476c5960608e53edec8efbe82a /compiler/rustc_parse/src/parser/mod.rs | |
| parent | 0846043440b480e4bbf36ac19db3948f0c835bb1 (diff) | |
| parent | fb5fec017b2f24b88c1f51980f7d81a02e7468d9 (diff) | |
| download | rust-8e863eb59a10fb0900d7377524a0dc7bf44b9ae3.tar.gz rust-8e863eb59a10fb0900d7377524a0dc7bf44b9ae3.zip | |
Auto merge of #82448 - Aaron1011:merge-hastokens-hasattrs, r=petrochenkov
Combine HasAttrs and HasTokens into AstLike When token-based attribute handling is implemeneted in #80689, we will need to access tokens from `HasAttrs` (to perform cfg-stripping), and we will to access attributes from `HasTokens` (to construct a `PreexpTokenStream`). This PR merges the `HasAttrs` and `HasTokens` traits into a new `AstLike` trait. The previous `HasAttrs` impls from `Vec<Attribute>` and `AttrVec` are removed - they aren't attribute targets, so the impls never really made sense.
Diffstat (limited to 'compiler/rustc_parse/src/parser/mod.rs')
| -rw-r--r-- | compiler/rustc_parse/src/parser/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_parse/src/parser/mod.rs b/compiler/rustc_parse/src/parser/mod.rs index 8a097bf481d..4cc2224d27e 100644 --- a/compiler/rustc_parse/src/parser/mod.rs +++ b/compiler/rustc_parse/src/parser/mod.rs @@ -22,7 +22,7 @@ use rustc_ast::token::{self, DelimToken, Token, TokenKind}; use rustc_ast::tokenstream::{self, DelimSpan, Spacing}; use rustc_ast::tokenstream::{TokenStream, TokenTree, TreeAndSpacing}; use rustc_ast::DUMMY_NODE_ID; -use rustc_ast::{self as ast, AnonConst, AttrStyle, AttrVec, Const, CrateSugar, Extern, HasTokens}; +use rustc_ast::{self as ast, AnonConst, AstLike, AttrStyle, AttrVec, Const, CrateSugar, Extern}; use rustc_ast::{Async, Expr, ExprKind, MacArgs, MacDelimiter, Mutability, StrLit, Unsafe}; use rustc_ast::{Visibility, VisibilityKind}; use rustc_ast_pretty::pprust; @@ -1228,7 +1228,7 @@ impl<'a> Parser<'a> { } } - pub fn collect_tokens_no_attrs<R: HasTokens>( + pub fn collect_tokens_no_attrs<R: AstLike>( &mut self, f: impl FnOnce(&mut Self) -> PResult<'a, R>, ) -> PResult<'a, R> { |
