(
tree: TreeInterface,
other: TreeInterface,
strategy: MergeStrategy = MergeStrategy.Default,
)
| 53 | return branch(tree); |
| 54 | }, |
| 55 | merge( |
| 56 | tree: TreeInterface, |
| 57 | other: TreeInterface, |
| 58 | strategy: MergeStrategy = MergeStrategy.Default, |
| 59 | ) { |
| 60 | return merge(tree, other, strategy); |
| 61 | }, |
| 62 | partition(tree: TreeInterface, predicate: FilePredicate<boolean>) { |
| 63 | return partition(tree, predicate); |
| 64 | }, |
no test coverage detected