(func)
| 36 | } |
| 37 | |
| 38 | function test(func) { |
| 39 | for (var foo in func()) { |
| 40 | testFailed("Shoud not be reached"); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | shouldBeUndefined("test(throwUndefinedException)"); |
| 45 | shouldBeUndefined("test(throwNullException)"); |
nothing calls this directly
no test coverage detected