Implement two todo!()s.
This commit is contained in:
parent
fa1d845b76
commit
7cb85fc8af
@ -28,8 +28,8 @@ impl<'r, 's> ContextTree<'r, 's> {
|
||||
}
|
||||
|
||||
pub fn pop_front(&mut self) -> (Option<ContextElement<'r, 's>>, ContextTree<'r, 's>) {
|
||||
// todo
|
||||
todo!()
|
||||
let (popped_element, remaining) = self.tree.pop_front();
|
||||
(popped_element, ContextTree { tree: remaining })
|
||||
}
|
||||
|
||||
pub fn check_fail_matcher<'b>(
|
||||
@ -66,7 +66,7 @@ impl<'r, 's> ContextTree<'r, 's> {
|
||||
}
|
||||
};
|
||||
}
|
||||
ContextElement::PreviousElementNode(_) => todo!(),
|
||||
ContextElement::PreviousElementNode(_) => {}
|
||||
};
|
||||
|
||||
current_node = current_node.without_front();
|
||||
|
Loading…
x
Reference in New Issue
Block a user