| 696 | } |
| 697 | |
| 698 | void Visit(const Node* node) { |
| 699 | Indent(); |
| 700 | if (node->is_group()) { |
| 701 | Visit(static_cast<const GroupNode*>(node)); |
| 702 | } else { |
| 703 | // Primitive |
| 704 | Visit(static_cast<const PrimitiveNode*>(node)); |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | void Visit(const PrimitiveNode* node) { |
| 709 | PrintRepLevel(node->repetition(), stream_); |
nothing calls this directly
no test coverage detected