| 301 | } |
| 302 | |
| 303 | void Mutation::UpdateNodeOp(MutableNodeView* node, absl::string_view op) { |
| 304 | AddMutation( |
| 305 | node, [op](MutableNodeViewDiff* diff) { internal::UpdateOp(diff, op); }); |
| 306 | } |
| 307 | |
| 308 | void Mutation::UpdateNodeOp(const MutationNewNode& node, absl::string_view op) { |
| 309 | DCHECK(node.mutation_ == this && node.mutation_counter_ == mutation_counter_); |