| 4354 | } |
| 4355 | |
| 4356 | PUGI__FN bool allow_insert_child(xml_node_type parent, xml_node_type child) |
| 4357 | { |
| 4358 | if (parent != node_document && parent != node_element) return false; |
| 4359 | if (child == node_document || child == node_null) return false; |
| 4360 | if (parent != node_document && (child == node_declaration || child == node_doctype)) return false; |
| 4361 | |
| 4362 | return true; |
| 4363 | } |
| 4364 | |
| 4365 | PUGI__FN bool allow_move(xml_node parent, xml_node child) |
| 4366 | { |
no outgoing calls
no test coverage detected