Build CRDT ops for `ctx` using this recipe.
(self, ctx: &RecipeContext<'_>)
| 91 | |
| 92 | /// Build CRDT ops for `ctx` using this recipe. |
| 93 | pub fn build_ops(self, ctx: &RecipeContext<'_>) -> (FileOps, CrdtBuildStats) { |
| 94 | match self { |
| 95 | Recipe::InPlaceEdit => in_place_edit::build_ops(ctx), |
| 96 | Recipe::ExtractMove => extract_move::build_ops(ctx), |
| 97 | } |
| 98 | } |
| 99 | } |
no test coverage detected