| 308 | void PrimitiveNode::Visit(Node::Visitor* visitor) { visitor->Visit(this); } |
| 309 | |
| 310 | void PrimitiveNode::VisitConst(Node::ConstVisitor* visitor) const { |
| 311 | visitor->Visit(this); |
| 312 | } |
| 313 | |
| 314 | // ---------------------------------------------------------------------- |
| 315 | // Group node |