autocommit 2022-02-20 22:56:26 CET
This commit is contained in:
parent
a8505be462
commit
7fecc0d1a4
5 changed files with 39 additions and 15 deletions
|
|
@ -73,6 +73,11 @@ pub trait Node {
|
|||
fn visit(self: Rc<Self>, visitor: &mut dyn NodeVisitor);
|
||||
fn visit_children(&self, visitor: &mut dyn NodeVisitor);
|
||||
|
||||
fn is_contained_in(&self, other: NodeId) -> bool {
|
||||
let _ = other;
|
||||
false
|
||||
}
|
||||
|
||||
fn child_title_changed(self: Rc<Self>, child: &dyn Node, title: &str) {
|
||||
let _ = child;
|
||||
let _ = title;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue