Rename rust_2015
=> is_rust_2015
This commit is contained in:
parent
131f0c6df6
commit
9fe8ae792e
@ -131,7 +131,7 @@ pub fn print_crate<'a>(
|
|||||||
|
|
||||||
// Currently, in Rust 2018 we don't have `extern crate std;` at the crate
|
// Currently, in Rust 2018 we don't have `extern crate std;` at the crate
|
||||||
// root, so this is not needed, and actually breaks things.
|
// root, so this is not needed, and actually breaks things.
|
||||||
if edition.rust_2015() {
|
if edition.is_rust_2015() {
|
||||||
// `#![no_std]`
|
// `#![no_std]`
|
||||||
let fake_attr = attr::mk_attr_word(g, ast::AttrStyle::Inner, sym::no_std, DUMMY_SP);
|
let fake_attr = attr::mk_attr_word(g, ast::AttrStyle::Inner, sym::no_std, DUMMY_SP);
|
||||||
s.print_attribute(&fake_attr);
|
s.print_attribute(&fake_attr);
|
||||||
|
@ -2247,7 +2247,7 @@ impl<'a> Parser<'a> {
|
|||||||
let ext = self.parse_extern(case);
|
let ext = self.parse_extern(case);
|
||||||
|
|
||||||
if let Async::Yes { span, .. } = asyncness {
|
if let Async::Yes { span, .. } = asyncness {
|
||||||
if span.rust_2015() {
|
if span.is_rust_2015() {
|
||||||
self.sess.emit_err(AsyncFnIn2015 { span, help: HelpUseLatestEdition::new() });
|
self.sess.emit_err(AsyncFnIn2015 { span, help: HelpUseLatestEdition::new() });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -673,7 +673,7 @@ impl<'a> Parser<'a> {
|
|||||||
/// Is a `dyn B0 + ... + Bn` type allowed here?
|
/// Is a `dyn B0 + ... + Bn` type allowed here?
|
||||||
fn is_explicit_dyn_type(&mut self) -> bool {
|
fn is_explicit_dyn_type(&mut self) -> bool {
|
||||||
self.check_keyword(kw::Dyn)
|
self.check_keyword(kw::Dyn)
|
||||||
&& (!self.token.uninterpolated_span().rust_2015()
|
&& (!self.token.uninterpolated_span().is_rust_2015()
|
||||||
|| self.look_ahead(1, |t| {
|
|| self.look_ahead(1, |t| {
|
||||||
(t.can_begin_bound() || t.kind == TokenKind::BinOp(token::Star))
|
(t.can_begin_bound() || t.kind == TokenKind::BinOp(token::Star))
|
||||||
&& !can_continue_type_after_non_fn_ident(t)
|
&& !can_continue_type_after_non_fn_ident(t)
|
||||||
|
@ -265,7 +265,7 @@ impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {
|
|||||||
let ident = path.segments.get(0).expect("empty path in visibility").ident;
|
let ident = path.segments.get(0).expect("empty path in visibility").ident;
|
||||||
let crate_root = if ident.is_path_segment_keyword() {
|
let crate_root = if ident.is_path_segment_keyword() {
|
||||||
None
|
None
|
||||||
} else if ident.span.rust_2015() {
|
} else if ident.span.is_rust_2015() {
|
||||||
Some(Segment::from_ident(Ident::new(
|
Some(Segment::from_ident(Ident::new(
|
||||||
kw::PathRoot,
|
kw::PathRoot,
|
||||||
path.span.shrink_to_lo().with_ctxt(ident.span.ctxt()),
|
path.span.shrink_to_lo().with_ctxt(ident.span.ctxt()),
|
||||||
@ -435,10 +435,10 @@ impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {
|
|||||||
// appears, so imports in braced groups can have roots prepended independently.
|
// appears, so imports in braced groups can have roots prepended independently.
|
||||||
let is_glob = matches!(use_tree.kind, ast::UseTreeKind::Glob);
|
let is_glob = matches!(use_tree.kind, ast::UseTreeKind::Glob);
|
||||||
let crate_root = match prefix_iter.peek() {
|
let crate_root = match prefix_iter.peek() {
|
||||||
Some(seg) if !seg.ident.is_path_segment_keyword() && seg.ident.span.rust_2015() => {
|
Some(seg) if !seg.ident.is_path_segment_keyword() && seg.ident.span.is_rust_2015() => {
|
||||||
Some(seg.ident.span.ctxt())
|
Some(seg.ident.span.ctxt())
|
||||||
}
|
}
|
||||||
None if is_glob && use_tree.span.rust_2015() => Some(use_tree.span.ctxt()),
|
None if is_glob && use_tree.span.is_rust_2015() => Some(use_tree.span.ctxt()),
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
.map(|ctxt| {
|
.map(|ctxt| {
|
||||||
|
@ -462,7 +462,9 @@ impl<'a> Resolver<'a> {
|
|||||||
|
|
||||||
let first_name = match path.get(0) {
|
let first_name = match path.get(0) {
|
||||||
// In the 2018 edition this lint is a hard error, so nothing to do
|
// In the 2018 edition this lint is a hard error, so nothing to do
|
||||||
Some(seg) if seg.ident.span.rust_2015() && self.session.rust_2015() => seg.ident.name,
|
Some(seg) if seg.ident.span.is_rust_2015() && self.session.is_rust_2015() => {
|
||||||
|
seg.ident.name
|
||||||
|
}
|
||||||
_ => return,
|
_ => return,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1717,7 +1719,7 @@ impl<'a> Resolver<'a> {
|
|||||||
Applicability::MaybeIncorrect,
|
Applicability::MaybeIncorrect,
|
||||||
)),
|
)),
|
||||||
)
|
)
|
||||||
} else if self.session.rust_2015() {
|
} else if self.session.is_rust_2015() {
|
||||||
(
|
(
|
||||||
format!("maybe a missing crate `{ident}`?"),
|
format!("maybe a missing crate `{ident}`?"),
|
||||||
Some((
|
Some((
|
||||||
@ -1996,7 +1998,7 @@ impl<'a, 'b> ImportResolver<'a, 'b> {
|
|||||||
mut path: Vec<Segment>,
|
mut path: Vec<Segment>,
|
||||||
parent_scope: &ParentScope<'b>,
|
parent_scope: &ParentScope<'b>,
|
||||||
) -> Option<(Vec<Segment>, Option<String>)> {
|
) -> Option<(Vec<Segment>, Option<String>)> {
|
||||||
if path[1].ident.span.rust_2015() {
|
if path[1].ident.span.is_rust_2015() {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ impl<'a> Resolver<'a> {
|
|||||||
// 4c. Standard library prelude (de-facto closed, controlled).
|
// 4c. Standard library prelude (de-facto closed, controlled).
|
||||||
// 6. Language prelude: builtin attributes (closed, controlled).
|
// 6. Language prelude: builtin attributes (closed, controlled).
|
||||||
|
|
||||||
let rust_2015 = ctxt.edition().rust_2015();
|
let rust_2015 = ctxt.edition().is_rust_2015();
|
||||||
let (ns, macro_kind, is_absolute_path) = match scope_set {
|
let (ns, macro_kind, is_absolute_path) = match scope_set {
|
||||||
ScopeSet::All(ns, _) => (ns, None, false),
|
ScopeSet::All(ns, _) => (ns, None, false),
|
||||||
ScopeSet::AbsolutePath(ns) => (ns, None, true),
|
ScopeSet::AbsolutePath(ns) => (ns, None, true),
|
||||||
@ -1397,7 +1397,8 @@ impl<'a> Resolver<'a> {
|
|||||||
module = Some(ModuleOrUniformRoot::ExternPrelude);
|
module = Some(ModuleOrUniformRoot::ExternPrelude);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if name == kw::PathRoot && ident.span.rust_2015() && self.session.rust_2018() {
|
if name == kw::PathRoot && ident.span.is_rust_2015() && self.session.rust_2018()
|
||||||
|
{
|
||||||
// `::a::b` from 2015 macro on 2018 global edition
|
// `::a::b` from 2015 macro on 2018 global edition
|
||||||
module = Some(ModuleOrUniformRoot::CrateRootAndExternPrelude);
|
module = Some(ModuleOrUniformRoot::CrateRootAndExternPrelude);
|
||||||
continue;
|
continue;
|
||||||
|
@ -2145,7 +2145,7 @@ impl<'a: 'ast, 'b, 'ast> LateResolutionVisitor<'a, 'b, 'ast> {
|
|||||||
let segments = &use_tree.prefix.segments;
|
let segments = &use_tree.prefix.segments;
|
||||||
if !segments.is_empty() {
|
if !segments.is_empty() {
|
||||||
let ident = segments[0].ident;
|
let ident = segments[0].ident;
|
||||||
if ident.is_path_segment_keyword() || ident.span.rust_2015() {
|
if ident.is_path_segment_keyword() || ident.span.is_rust_2015() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1343,7 +1343,7 @@ impl<'a: 'ast, 'ast> LateResolutionVisitor<'a, '_, 'ast> {
|
|||||||
"!",
|
"!",
|
||||||
Applicability::MaybeIncorrect,
|
Applicability::MaybeIncorrect,
|
||||||
);
|
);
|
||||||
if path_str == "try" && span.rust_2015() {
|
if path_str == "try" && span.is_rust_2015() {
|
||||||
err.note("if you want the `try` keyword, you need Rust 2018 or later");
|
err.note("if you want the `try` keyword, you need Rust 2018 or later");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -919,8 +919,8 @@ impl Session {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Is this edition 2015?
|
/// Is this edition 2015?
|
||||||
pub fn rust_2015(&self) -> bool {
|
pub fn is_rust_2015(&self) -> bool {
|
||||||
self.edition().rust_2015()
|
self.edition().is_rust_2015()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Are we allowed to use features from the Rust 2018 edition?
|
/// Are we allowed to use features from the Rust 2018 edition?
|
||||||
|
@ -77,7 +77,7 @@ impl Edition {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Is this edition 2015?
|
/// Is this edition 2015?
|
||||||
pub fn rust_2015(self) -> bool {
|
pub fn is_rust_2015(self) -> bool {
|
||||||
self == Edition::Edition2015
|
self == Edition::Edition2015
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -705,8 +705,8 @@ impl Span {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn rust_2015(self) -> bool {
|
pub fn is_rust_2015(self) -> bool {
|
||||||
self.edition().rust_2015()
|
self.edition().is_rust_2015()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user