(statement)
| 39 | } |
| 40 | |
| 41 | function runTestShouldNotThrow(statement) { |
| 42 | shouldNotThrow(statement); |
| 43 | shouldNotThrow("'use strict'; " + statement); |
| 44 | } |
| 45 | |
| 46 | // Class statement. Class name added to global scope. Class name is available inside class scope and in global scope. |
| 47 | debug('Class statement'); |
no test coverage detected