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/attr_wrapper.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/attr_wrapper.rs')
| -rw-r--r-- | compiler/rustc_parse/src/parser/attr_wrapper.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_parse/src/parser/attr_wrapper.rs b/compiler/rustc_parse/src/parser/attr_wrapper.rs index aea7c6b42cf..f45d8d6c7a0 100644 --- a/compiler/rustc_parse/src/parser/attr_wrapper.rs +++ b/compiler/rustc_parse/src/parser/attr_wrapper.rs @@ -3,7 +3,7 @@ use super::{ForceCollect, Parser, TokenCursor, TrailingToken}; use rustc_ast::token::{self, Token, TokenKind}; use rustc_ast::tokenstream::{CreateTokenStream, TokenStream, TokenTree, TreeAndSpacing}; use rustc_ast::tokenstream::{DelimSpan, LazyTokenStream, Spacing}; -use rustc_ast::HasTokens; +use rustc_ast::AstLike; use rustc_ast::{self as ast}; use rustc_errors::PResult; use rustc_span::{Span, DUMMY_SP}; @@ -59,7 +59,7 @@ impl<'a> Parser<'a> { /// This restriction shouldn't be an issue in practice, /// since this function is used to record the tokens for /// a parsed AST item, which always has matching delimiters. - pub fn collect_tokens_trailing_token<R: HasTokens>( + pub fn collect_tokens_trailing_token<R: AstLike>( &mut self, attrs: AttrWrapper, force_collect: ForceCollect, |
