(f)
| 118 | } |
| 119 | |
| 120 | function WrapInConstructor(f) { |
| 121 | return function() { |
| 122 | return new function() { |
| 123 | f(); |
| 124 | }; |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | |
| 129 | // A series of tests. In each test we call ChooseAnimal function that calls |
nothing calls this directly
no test coverage detected
searching dependent graphs…