(&self, target: StrTendril, data: StrTendril)
| 237 | } |
| 238 | |
| 239 | fn create_pi(&self, target: StrTendril, data: StrTendril) -> NodeId { |
| 240 | self.push_processing_instruction(target, data) |
| 241 | } |
| 242 | |
| 243 | /// Append a node as the last child of the given node. |
| 244 | fn append(&self, &parent: &NodeId, child: NodeOrText<NodeId>) { |
nothing calls this directly
no test coverage detected