mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-30 13:06:28 +03:00
Simplify
This commit is contained in:
@@ -49,9 +49,7 @@ fn item(p: &mut Parser) -> bool {
|
||||
|| node_if(p, STRUCT_KW, STRUCT_ITEM, struct_item)
|
||||
|| node_if(p, FN_KW, FN_ITEM, fn_item);
|
||||
|
||||
if item_parsed && attrs_start != item_start {
|
||||
p.forward_parent(attrs_start, item_start);
|
||||
}
|
||||
p.forward_parent(attrs_start, item_start);
|
||||
item_parsed
|
||||
}
|
||||
|
||||
|
||||
@@ -55,6 +55,9 @@ pub(crate) fn mark(&self) -> Mark {
|
||||
}
|
||||
|
||||
pub(crate) fn forward_parent(&mut self, child: Mark, parent: Mark) {
|
||||
if child == parent || parent == self.mark() {
|
||||
return
|
||||
}
|
||||
assert!(child.0 < parent.0);
|
||||
let diff = parent.0 - child.0;
|
||||
match self.events[child.0 as usize] {
|
||||
|
||||
Reference in New Issue
Block a user