rebasing and reviewer changes

Primarily refactoring `(Ident, Option<NodeId>)` to `Segment`
This commit is contained in:
Nick Cameron 2018-09-12 15:21:50 +12:00
parent 8ac3272610
commit 59cb1705d7
7 changed files with 157 additions and 133 deletions

View file

@ -2137,7 +2137,7 @@ impl<'a> Parser<'a> {
PathSegment { ident, args, id: ast::DUMMY_NODE_ID }
} else {
// Generic arguments are not found.
PathSegment::from_ident(ident,)
PathSegment::from_ident(ident)
})
}