| 299 | } |
| 300 | |
| 301 | bool PrimitiveNode::Equals(const Node* other) const { |
| 302 | if (!Node::EqualsInternal(other)) { |
| 303 | return false; |
| 304 | } |
| 305 | return EqualsInternal(static_cast<const PrimitiveNode*>(other)); |
| 306 | } |
| 307 | |
| 308 | void PrimitiveNode::Visit(Node::Visitor* visitor) { visitor->Visit(this); } |
| 309 |
no test coverage detected