about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-02-27 07:52:11 +0000
committerbors <bors@rust-lang.org>2021-02-27 07:52:11 +0000
commit8e863eb59a10fb0900d7377524a0dc7bf44b9ae3 (patch)
tree3e21f786845776476c5960608e53edec8efbe82a /compiler/rustc_parse/src/lib.rs
parent0846043440b480e4bbf36ac19db3948f0c835bb1 (diff)
parentfb5fec017b2f24b88c1f51980f7d81a02e7468d9 (diff)
downloadrust-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/lib.rs')
-rw-r--r--compiler/rustc_parse/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs
index f155f3a94e5..cea4de72df5 100644
--- a/compiler/rustc_parse/src/lib.rs
+++ b/compiler/rustc_parse/src/lib.rs
@@ -8,9 +8,9 @@
 #![feature(box_patterns)]
 
 use rustc_ast as ast;
-use rustc_ast::attr::HasAttrs;
 use rustc_ast::token::{self, Nonterminal};
 use rustc_ast::tokenstream::{self, CanSynthesizeMissingTokens, LazyTokenStream, TokenStream};
+use rustc_ast::AstLike;
 use rustc_ast_pretty::pprust;
 use rustc_data_structures::sync::Lrc;
 use rustc_errors::{Diagnostic, FatalError, Level, PResult};