()
| 31 | } |
| 32 | |
| 33 | function test1() { |
| 34 | for (var i = 0; i < 2; i++) { |
| 35 | currentRegExp = /a/; |
| 36 | if (i) |
| 37 | shouldBeFalse("currentRegExp === lastRegExp"); |
| 38 | lastRegExp = currentRegExp; |
| 39 | } |
| 40 | } |
| 41 | test1(); |
| 42 | |
| 43 | function returnRegExpLiteral() { return /a/ } |
no test coverage detected