(array)
| 8 | |
| 9 | export class ExpressionCloner { |
| 10 | cloneExpressionArray(array) { |
| 11 | let clonedArray = []; |
| 12 | let i = array.length; |
| 13 | while (i--) { |
| 14 | clonedArray[i] = array[i].accept(this); |
| 15 | } |
| 16 | return clonedArray; |
| 17 | } |
| 18 | |
| 19 | visitBindingBehavior(behavior) { |
| 20 | return new BindingBehavior( |
no test coverage detected