Skip to content

Commit b5e8897

Browse files
committed
Refactor parsing of trait object types
1 parent 58c701f commit b5e8897

21 files changed

+294
-267
lines changed

src/libsyntax/ast.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub use self::PathParameters::*;
1717
pub use symbol::Symbol as Name;
1818
pub use util::ThinVec;
1919

20-
use syntax_pos::{mk_sp, Span, DUMMY_SP, ExpnId};
20+
use syntax_pos::{mk_sp, BytePos, Span, DUMMY_SP, ExpnId};
2121
use codemap::{respan, Spanned};
2222
use abi::Abi;
2323
use ext::hygiene::SyntaxContext;
@@ -1716,6 +1716,16 @@ pub struct PolyTraitRef {
17161716
pub span: Span,
17171717
}
17181718

1719+
impl PolyTraitRef {
1720+
pub fn new(lifetimes: Vec<LifetimeDef>, path: Path, lo: BytePos, hi: BytePos) -> Self {
1721+
PolyTraitRef {
1722+
bound_lifetimes: lifetimes,
1723+
trait_ref: TraitRef { path: path, ref_id: DUMMY_NODE_ID },
1724+
span: mk_sp(lo, hi),
1725+
}
1726+
}
1727+
}
1728+
17191729
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]
17201730
pub enum Visibility {
17211731
Public,

src/libsyntax/ext/expand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ impl<'a> Parser<'a> {
657657
}
658658
ExpansionKind::Expr => Expansion::Expr(self.parse_expr()?),
659659
ExpansionKind::OptExpr => Expansion::OptExpr(Some(self.parse_expr()?)),
660-
ExpansionKind::Ty => Expansion::Ty(self.parse_ty_no_plus()?),
660+
ExpansionKind::Ty => Expansion::Ty(self.parse_ty()?),
661661
ExpansionKind::Pat => Expansion::Pat(self.parse_pat()?),
662662
})
663663
}

src/libsyntax/ext/quote.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ pub fn parse_arm_panic(parser: &mut Parser) -> Arm {
414414
}
415415

416416
pub fn parse_ty_panic(parser: &mut Parser) -> P<Ty> {
417-
panictry!(parser.parse_ty_no_plus())
417+
panictry!(parser.parse_ty())
418418
}
419419

420420
pub fn parse_stmt_panic(parser: &mut Parser) -> Option<Stmt> {

src/libsyntax/ext/tt/macro_parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ fn parse_nt<'a>(p: &mut Parser<'a>, sp: Span, name: &str) -> Nonterminal {
512512
},
513513
"pat" => token::NtPat(panictry!(p.parse_pat())),
514514
"expr" => token::NtExpr(panictry!(p.parse_expr())),
515-
"ty" => token::NtTy(panictry!(p.parse_ty_no_plus())),
515+
"ty" => token::NtTy(panictry!(p.parse_ty())),
516516
// this could be handled like a token, since it is one
517517
"ident" => match p.token {
518518
token::Ident(sn) => {

0 commit comments

Comments
 (0)