| 577 | PathInfo::Node& node = path_info->path[stack_position - stack_base]; |
| 578 | struct { |
| 579 | IterationResult operator()(NullableNode& node) { |
| 580 | return node.Run(stack_position, stack_position + 1, context); |
| 581 | } |
| 582 | IterationResult operator()(ListNode& node) { |
| 583 | return node.Run(stack_position, stack_position + 1, context); |
| 584 | } |