| 804 | } |
| 805 | |
| 806 | bool XMLText::ShallowEqual(const XMLNode* compare) const { |
| 807 | return (compare->ToText() && XMLUtil::StringEqual(compare->ToText()->Value(), Value())); |
| 808 | } |
| 809 | |
| 810 | bool XMLText::Accept(XMLVisitor* visitor) const { |
| 811 | return visitor->Visit(*this); |
nothing calls this directly
no test coverage detected