(_a)
| 179 | |
| 180 | |
| 181 | function shouldNotThrow(_a) |
| 182 | { |
| 183 | try { |
| 184 | eval(_a); |
| 185 | testPassed(_a + " did not throw exception."); |
| 186 | } catch (e) { |
| 187 | testFailed(_a + " should not throw exception. Threw exception " + e + "."); |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | function isSuccessfullyParsed() |
| 192 | { |
no test coverage detected