(&self, text: StrTendril)
| 117 | } |
| 118 | |
| 119 | fn push_comment(&self, text: StrTendril) -> NodeId { |
| 120 | self.push_node(NodeData::Comment { text }) |
| 121 | } |
| 122 | |
| 123 | fn push_processing_instruction(&self, target: StrTendril, data: StrTendril) -> NodeId { |
| 124 | self.push_node(NodeData::ProcessingInstruction { target, data }) |
no test coverage detected