Reserve slots for additional node inserts.
(&mut self, additional: usize)
| 141 | tags_hash(&node.tags), |
| 142 | node.parent, |
| 143 | node.node_type(), |
| 144 | self.old_children_len != node.children.len() |
| 145 | || self.old_children_hash != children_hash(&node.children), |
| 146 | ) |
| 147 | }; |
| 148 | |
| 149 | if self.old_name_hash != new_name_hash { |
| 150 | self.arena.unindex_name_hash(self.old_name_hash, self.id); |
| 151 | if !name_empty { |
no outgoing calls
no test coverage detected