parse: allow type Foo: Ord
syntactically.
This commit is contained in:
parent
14442e0ebb
commit
9f3dfd29a2
@ -297,28 +297,28 @@ fn lower_item_kind(
|
||||
ItemKind::Mod(ref m) => hir::ItemKind::Mod(self.lower_mod(m)),
|
||||
ItemKind::ForeignMod(ref nm) => hir::ItemKind::ForeignMod(self.lower_foreign_mod(nm)),
|
||||
ItemKind::GlobalAsm(ref ga) => hir::ItemKind::GlobalAsm(self.lower_global_asm(ga)),
|
||||
ItemKind::TyAlias(ref ty, ref generics) => match ty.kind.opaque_top_hack() {
|
||||
ItemKind::TyAlias(ref generics, _, Some(ref ty)) => match ty.kind.opaque_top_hack() {
|
||||
None => {
|
||||
let ty = self.lower_ty(ty, ImplTraitContext::disallowed());
|
||||
let generics = self.lower_generics(generics, ImplTraitContext::disallowed());
|
||||
hir::ItemKind::TyAlias(ty, generics)
|
||||
}
|
||||
Some(bounds) => {
|
||||
let ctx = || ImplTraitContext::OpaqueTy(None, hir::OpaqueTyOrigin::Misc);
|
||||
let ty = hir::OpaqueTy {
|
||||
generics: self.lower_generics(
|
||||
generics,
|
||||
ImplTraitContext::OpaqueTy(None, hir::OpaqueTyOrigin::Misc),
|
||||
),
|
||||
bounds: self.lower_param_bounds(
|
||||
bounds,
|
||||
ImplTraitContext::OpaqueTy(None, hir::OpaqueTyOrigin::Misc),
|
||||
),
|
||||
generics: self.lower_generics(generics, ctx()),
|
||||
bounds: self.lower_param_bounds(bounds, ctx()),
|
||||
impl_trait_fn: None,
|
||||
origin: hir::OpaqueTyOrigin::TypeAlias,
|
||||
};
|
||||
hir::ItemKind::OpaqueTy(ty)
|
||||
}
|
||||
},
|
||||
ItemKind::TyAlias(ref generics, _, None) => {
|
||||
let ty = self.arena.alloc(self.ty(span, hir::TyKind::Err));
|
||||
let generics = self.lower_generics(generics, ImplTraitContext::disallowed());
|
||||
hir::ItemKind::TyAlias(ty, generics)
|
||||
}
|
||||
ItemKind::Enum(ref enum_definition, ref generics) => hir::ItemKind::Enum(
|
||||
hir::EnumDef {
|
||||
variants: self.arena.alloc_from_iter(
|
||||
|
@ -462,7 +462,7 @@ fn visit_item(&mut self, item: &'tcx Item) {
|
||||
ItemKind::Struct(_, ref generics)
|
||||
| ItemKind::Union(_, ref generics)
|
||||
| ItemKind::Enum(_, ref generics)
|
||||
| ItemKind::TyAlias(_, ref generics)
|
||||
| ItemKind::TyAlias(ref generics, ..)
|
||||
| ItemKind::Trait(_, _, ref generics, ..) => {
|
||||
let def_id = self.lctx.resolver.definitions().local_def_id(item.id);
|
||||
let count = generics
|
||||
|
@ -969,6 +969,13 @@ fn visit_item(&mut self, item: &'a Item) {
|
||||
let msg = "free static item without body";
|
||||
self.error_item_without_body(item.span, "static", msg, " = <expr>;");
|
||||
}
|
||||
ItemKind::TyAlias(_, ref bounds, ref body) => {
|
||||
if body.is_none() {
|
||||
let msg = "free type alias without body";
|
||||
self.error_item_without_body(item.span, "type", msg, " = <type>;");
|
||||
}
|
||||
self.check_type_no_bounds(bounds, "this context");
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
|
@ -372,7 +372,7 @@ fn visit_item(&mut self, i: &'a ast::Item) {
|
||||
gate_feature_post!(&self, decl_macro, i.span, msg);
|
||||
}
|
||||
|
||||
ast::ItemKind::TyAlias(ref ty, ..) => self.check_impl_trait(&ty),
|
||||
ast::ItemKind::TyAlias(_, _, Some(ref ty)) => self.check_impl_trait(&ty),
|
||||
|
||||
_ => {}
|
||||
}
|
||||
|
@ -1185,18 +1185,10 @@ fn print_associated_type(
|
||||
self.s.word(ga.asm.to_string());
|
||||
self.end();
|
||||
}
|
||||
ast::ItemKind::TyAlias(ref ty, ref generics) => {
|
||||
self.head(visibility_qualified(&item.vis, "type"));
|
||||
self.print_ident(item.ident);
|
||||
self.print_generic_params(&generics.params);
|
||||
self.end(); // end the inner ibox
|
||||
|
||||
self.print_where_clause(&generics.where_clause);
|
||||
self.s.space();
|
||||
self.word_space("=");
|
||||
self.print_type(ty);
|
||||
self.s.word(";");
|
||||
self.end(); // end the outer ibox
|
||||
ast::ItemKind::TyAlias(ref generics, ref bounds, ref ty) => {
|
||||
let def = ast::Defaultness::Final;
|
||||
let ty = ty.as_deref();
|
||||
self.print_associated_type(item.ident, generics, bounds, ty, &item.vis, def);
|
||||
}
|
||||
ast::ItemKind::Enum(ref enum_definition, ref params) => {
|
||||
self.print_enum_def(enum_definition, params, item.ident, item.span, &item.vis);
|
||||
|
@ -156,8 +156,7 @@ fn parse_item_kind(
|
||||
self.parse_item_mod(attrs)?
|
||||
} else if self.eat_keyword(kw::Type) {
|
||||
// TYPE ITEM
|
||||
let (ident, ty, generics) = self.parse_type_alias()?;
|
||||
(ident, ItemKind::TyAlias(ty, generics))
|
||||
self.parse_type_alias()?
|
||||
} else if self.eat_keyword(kw::Enum) {
|
||||
// ENUM ITEM
|
||||
self.parse_item_enum()?
|
||||
@ -676,7 +675,10 @@ fn parse_assoc_item_kind(
|
||||
vis: &Visibility,
|
||||
) -> PResult<'a, (Ident, AssocItemKind)> {
|
||||
if self.eat_keyword(kw::Type) {
|
||||
self.parse_assoc_ty()
|
||||
match self.parse_type_alias()? {
|
||||
(ident, ItemKind::TyAlias(a, b, c)) => Ok((ident, AssocItemKind::TyAlias(a, b, c))),
|
||||
_ => unreachable!(),
|
||||
}
|
||||
} else if self.check_fn_front_matter() {
|
||||
let (ident, sig, generics, body) = self.parse_fn(at_end, attrs, req_name)?;
|
||||
Ok((ident, AssocItemKind::Fn(sig, generics, body)))
|
||||
@ -700,10 +702,12 @@ fn parse_assoc_item_kind(
|
||||
}
|
||||
}
|
||||
|
||||
/// Parses the following grammar:
|
||||
///
|
||||
/// AssocTy = Ident ["<"...">"] [":" [GenericBounds]] ["where" ...] ["=" Ty]
|
||||
fn parse_assoc_ty(&mut self) -> PResult<'a, (Ident, AssocItemKind)> {
|
||||
/// Parses a `type` alias with the following grammar:
|
||||
/// ```
|
||||
/// TypeAlias = "type" Ident Generics {":" GenericBounds}? {"=" Ty}? ";" ;
|
||||
/// ```
|
||||
/// The `"type"` has already been eaten.
|
||||
fn parse_type_alias(&mut self) -> PResult<'a, (Ident, ItemKind)> {
|
||||
let ident = self.parse_ident()?;
|
||||
let mut generics = self.parse_generics()?;
|
||||
|
||||
@ -715,7 +719,7 @@ fn parse_assoc_ty(&mut self) -> PResult<'a, (Ident, AssocItemKind)> {
|
||||
let default = if self.eat(&token::Eq) { Some(self.parse_ty()?) } else { None };
|
||||
self.expect_semi()?;
|
||||
|
||||
Ok((ident, AssocItemKind::TyAlias(generics, bounds, default)))
|
||||
Ok((ident, ItemKind::TyAlias(generics, bounds, default)))
|
||||
}
|
||||
|
||||
/// Parses a `UseTree`.
|
||||
@ -989,18 +993,6 @@ fn recover_missing_const_type(&mut self, id: Ident, m: Option<Mutability>) -> P<
|
||||
P(Ty { kind: TyKind::Infer, span: id.span, id: ast::DUMMY_NODE_ID })
|
||||
}
|
||||
|
||||
/// Parses the grammar:
|
||||
/// Ident ["<"...">"] ["where" ...] ("=" | ":") Ty ";"
|
||||
fn parse_type_alias(&mut self) -> PResult<'a, (Ident, P<Ty>, Generics)> {
|
||||
let ident = self.parse_ident()?;
|
||||
let mut tps = self.parse_generics()?;
|
||||
tps.where_clause = self.parse_where_clause()?;
|
||||
self.expect(&token::Eq)?;
|
||||
let ty = self.parse_ty()?;
|
||||
self.expect_semi()?;
|
||||
Ok((ident, ty, tps))
|
||||
}
|
||||
|
||||
/// Parses an enum declaration.
|
||||
fn parse_item_enum(&mut self) -> PResult<'a, ItemInfo> {
|
||||
let id = self.parse_ident()?;
|
||||
|
@ -718,8 +718,8 @@ fn build_reduced_graph_for_item(&mut self, item: &'b Item) {
|
||||
}
|
||||
|
||||
// These items live in the type namespace.
|
||||
ItemKind::TyAlias(ref ty, _) => {
|
||||
let def_kind = match ty.kind.opaque_top_hack() {
|
||||
ItemKind::TyAlias(_, _, ref ty) => {
|
||||
let def_kind = match ty.as_deref().and_then(|ty| ty.kind.opaque_top_hack()) {
|
||||
None => DefKind::TyAlias,
|
||||
Some(_) => DefKind::OpaqueTy,
|
||||
};
|
||||
|
@ -797,7 +797,7 @@ fn resolve_item(&mut self, item: &'ast Item) {
|
||||
debug!("(resolving item) resolving {} ({:?})", name, item.kind);
|
||||
|
||||
match item.kind {
|
||||
ItemKind::TyAlias(_, ref generics) | ItemKind::Fn(_, ref generics, _) => {
|
||||
ItemKind::TyAlias(ref generics, _, _) | ItemKind::Fn(_, ref generics, _) => {
|
||||
self.with_generic_param_rib(generics, ItemRibKind(HasGenericParams::Yes), |this| {
|
||||
visit::walk_item(this, item)
|
||||
});
|
||||
|
@ -1311,12 +1311,15 @@ fn visit_item(&mut self, item: &'l ast::Item) {
|
||||
self.process_mod(item);
|
||||
visit::walk_mod(self, m);
|
||||
}
|
||||
TyAlias(ref ty, ref ty_params) => {
|
||||
TyAlias(ref ty_params, _, ref ty) => {
|
||||
let qualname = format!(
|
||||
"::{}",
|
||||
self.tcx.def_path_str(self.tcx.hir().local_def_id_from_node_id(item.id))
|
||||
);
|
||||
let value = ty_to_string(&ty);
|
||||
let value = match ty {
|
||||
Some(ty) => ty_to_string(&ty),
|
||||
None => "_".to_string(),
|
||||
};
|
||||
if !self.span.filter_generated(item.ident.span) {
|
||||
let span = self.span_from_span(item.ident.span);
|
||||
let id = id_from_node_id(item.id, &self.save_ctxt);
|
||||
@ -1341,7 +1344,7 @@ fn visit_item(&mut self, item: &'l ast::Item) {
|
||||
);
|
||||
}
|
||||
|
||||
self.visit_ty(&ty);
|
||||
walk_list!(self, visit_ty, ty);
|
||||
self.process_generic_params(ty_params, &qualname, item.id);
|
||||
}
|
||||
Mac(_) => (),
|
||||
|
@ -423,12 +423,15 @@ fn make(&self, offset: usize, _parent_id: Option<NodeId>, scx: &SaveContext<'_,
|
||||
|
||||
Ok(Signature { text, defs, refs: vec![] })
|
||||
}
|
||||
ast::ItemKind::TyAlias(ref ty, ref generics) => {
|
||||
ast::ItemKind::TyAlias(ref generics, _, ref ty) => {
|
||||
let text = "type ".to_owned();
|
||||
let mut sig = name_and_generics(text, offset, generics, self.id, self.ident, scx)?;
|
||||
|
||||
sig.text.push_str(" = ");
|
||||
let ty = ty.make(offset + sig.text.len(), id, scx)?;
|
||||
let ty = match ty {
|
||||
Some(ty) => ty.make(offset + sig.text.len(), id, scx)?,
|
||||
None => Err("Ty")?,
|
||||
};
|
||||
sig.text.push_str(&ty.text);
|
||||
sig.text.push(';');
|
||||
|
||||
|
@ -2524,7 +2524,7 @@ pub enum ItemKind {
|
||||
/// A type alias (`type`).
|
||||
///
|
||||
/// E.g., `type Foo = Bar<u8>;`.
|
||||
TyAlias(P<Ty>, Generics),
|
||||
TyAlias(Generics, GenericBounds, Option<P<Ty>>),
|
||||
/// An enum definition (`enum`).
|
||||
///
|
||||
/// E.g., `enum Foo<A, B> { C<A>, D<B> }`.
|
||||
@ -2594,7 +2594,7 @@ pub fn descriptive_variant(&self) -> &str {
|
||||
pub fn generics(&self) -> Option<&Generics> {
|
||||
match self {
|
||||
Self::Fn(_, generics, _)
|
||||
| Self::TyAlias(_, generics)
|
||||
| Self::TyAlias(generics, ..)
|
||||
| Self::Enum(_, generics)
|
||||
| Self::Struct(_, generics)
|
||||
| Self::Union(_, generics)
|
||||
|
@ -902,9 +902,10 @@ pub fn noop_visit_item_kind<T: MutVisitor>(kind: &mut ItemKind, vis: &mut T) {
|
||||
ItemKind::Mod(m) => vis.visit_mod(m),
|
||||
ItemKind::ForeignMod(nm) => vis.visit_foreign_mod(nm),
|
||||
ItemKind::GlobalAsm(_ga) => {}
|
||||
ItemKind::TyAlias(ty, generics) => {
|
||||
vis.visit_ty(ty);
|
||||
ItemKind::TyAlias(generics, bounds, ty) => {
|
||||
vis.visit_generics(generics);
|
||||
visit_bounds(bounds, vis);
|
||||
visit_opt(ty, |ty| vis.visit_ty(ty));
|
||||
}
|
||||
ItemKind::Enum(EnumDef { variants }, generics) => {
|
||||
variants.flat_map_in_place(|variant| vis.flat_map_variant(variant));
|
||||
|
@ -312,9 +312,10 @@ pub fn walk_item<'a, V: Visitor<'a>>(visitor: &mut V, item: &'a Item) {
|
||||
walk_list!(visitor, visit_foreign_item, &foreign_module.items);
|
||||
}
|
||||
ItemKind::GlobalAsm(ref ga) => visitor.visit_global_asm(ga),
|
||||
ItemKind::TyAlias(ref typ, ref generics) => {
|
||||
visitor.visit_ty(typ);
|
||||
visitor.visit_generics(generics)
|
||||
ItemKind::TyAlias(ref generics, ref bounds, ref ty) => {
|
||||
visitor.visit_generics(generics);
|
||||
walk_list!(visitor, visit_param_bound, bounds);
|
||||
walk_list!(visitor, visit_ty, ty);
|
||||
}
|
||||
ItemKind::Enum(ref enum_definition, ref generics) => {
|
||||
visitor.visit_generics(generics);
|
||||
|
@ -5,6 +5,6 @@
|
||||
type A where 'a: 'b + 'c = u8; // OK
|
||||
type A where = u8; // OK
|
||||
type A where 'a: 'b + = u8; // OK
|
||||
type A where , = u8; //~ ERROR expected one of `=`, lifetime, or type, found `,`
|
||||
type A where , = u8; //~ ERROR expected one of `;`, `=`, lifetime, or type, found `,`
|
||||
|
||||
fn main() {}
|
||||
|
@ -1,8 +1,8 @@
|
||||
error: expected one of `=`, lifetime, or type, found `,`
|
||||
error: expected one of `;`, `=`, lifetime, or type, found `,`
|
||||
--> $DIR/bounds-lifetime-where.rs:8:14
|
||||
|
|
||||
LL | type A where , = u8;
|
||||
| ^ expected one of `=`, lifetime, or type
|
||||
| ^ expected one of `;`, `=`, lifetime, or type
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
|
20
src/test/ui/parser/item-free-type-bounds-semantic-fail.rs
Normal file
20
src/test/ui/parser/item-free-type-bounds-semantic-fail.rs
Normal file
@ -0,0 +1,20 @@
|
||||
fn main() {}
|
||||
|
||||
fn semantics() {
|
||||
type A: Ord;
|
||||
//~^ ERROR bounds on `type`s in this context have no effect
|
||||
//~| ERROR free type alias without body
|
||||
type B: Ord = u8;
|
||||
//~^ ERROR bounds on `type`s in this context have no effect
|
||||
type C: Ord where 'static: 'static = u8;
|
||||
//~^ ERROR bounds on `type`s in this context have no effect
|
||||
type D<_T>: Ord;
|
||||
//~^ ERROR bounds on `type`s in this context have no effect
|
||||
//~| ERROR free type alias without body
|
||||
type E<_T>: Ord = u8;
|
||||
//~^ ERROR bounds on `type`s in this context have no effect
|
||||
//~| ERROR type parameter `_T` is unused
|
||||
type F<_T>: Ord where 'static: 'static = u8;
|
||||
//~^ ERROR bounds on `type`s in this context have no effect
|
||||
//~| ERROR type parameter `_T` is unused
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
error: free type alias without body
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:4:5
|
||||
|
|
||||
LL | type A: Ord;
|
||||
| ^^^^^^^^^^^-
|
||||
| |
|
||||
| help: provide a definition for the type: `= <type>;`
|
||||
|
||||
error: bounds on `type`s in this context have no effect
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:4:13
|
||||
|
|
||||
LL | type A: Ord;
|
||||
| ^^^
|
||||
|
||||
error: bounds on `type`s in this context have no effect
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:7:13
|
||||
|
|
||||
LL | type B: Ord = u8;
|
||||
| ^^^
|
||||
|
||||
error: bounds on `type`s in this context have no effect
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:9:13
|
||||
|
|
||||
LL | type C: Ord where 'static: 'static = u8;
|
||||
| ^^^
|
||||
|
||||
error: free type alias without body
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:11:5
|
||||
|
|
||||
LL | type D<_T>: Ord;
|
||||
| ^^^^^^^^^^^^^^^-
|
||||
| |
|
||||
| help: provide a definition for the type: `= <type>;`
|
||||
|
||||
error: bounds on `type`s in this context have no effect
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:11:17
|
||||
|
|
||||
LL | type D<_T>: Ord;
|
||||
| ^^^
|
||||
|
||||
error: bounds on `type`s in this context have no effect
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:14:17
|
||||
|
|
||||
LL | type E<_T>: Ord = u8;
|
||||
| ^^^
|
||||
|
||||
error: bounds on `type`s in this context have no effect
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:17:17
|
||||
|
|
||||
LL | type F<_T>: Ord where 'static: 'static = u8;
|
||||
| ^^^
|
||||
|
||||
error[E0091]: type parameter `_T` is unused
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:14:12
|
||||
|
|
||||
LL | type E<_T>: Ord = u8;
|
||||
| ^^ unused type parameter
|
||||
|
||||
error[E0091]: type parameter `_T` is unused
|
||||
--> $DIR/item-free-type-bounds-semantic-fail.rs:17:12
|
||||
|
|
||||
LL | type F<_T>: Ord where 'static: 'static = u8;
|
||||
| ^^ unused type parameter
|
||||
|
||||
error: aborting due to 10 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0091`.
|
13
src/test/ui/parser/item-free-type-bounds-syntactic-pass.rs
Normal file
13
src/test/ui/parser/item-free-type-bounds-syntactic-pass.rs
Normal file
@ -0,0 +1,13 @@
|
||||
// check-pass
|
||||
|
||||
fn main() {}
|
||||
|
||||
#[cfg(FALSE)]
|
||||
fn syntax() {
|
||||
type A: Ord;
|
||||
type B: Ord = u8;
|
||||
type C: Ord where 'static: 'static = u8;
|
||||
type D<_T>: Ord;
|
||||
type E<_T>: Ord = u8;
|
||||
type F<_T>: Ord where 'static: 'static = u8;
|
||||
}
|
Loading…
Reference in New Issue
Block a user