syntax: Add support for trait bounds on procs

This is needed to make progress on #10296 as the default bounds will no longer
include Send. I believe that this was the originally intended syntax for procs,
and it just hasn't been necessary up until now.
This commit is contained in:
Alex Crichton
2014-03-08 18:21:01 -08:00
parent 0017056105
commit 7b4ee5cce7
3 changed files with 62 additions and 1 deletions

View File

@@ -893,13 +893,14 @@ impl Parser {
// Parses a procedure type (`proc`). The initial `proc` keyword must
// already have been parsed.
pub fn parse_proc_type(&mut self) -> Ty_ {
let bounds = self.parse_optional_ty_param_bounds();
let (decl, lifetimes) = self.parse_ty_fn_decl(false);
TyClosure(@ClosureTy {
sigil: OwnedSigil,
region: None,
purity: ImpureFn,
onceness: Once,
bounds: None,
bounds: bounds,
decl: decl,
lifetimes: lifetimes,
})