(i)
| 108 | } |
| 109 | |
| 110 | function testCodePointRange(i) { |
| 111 | assertTrue(i >= 0 && i < number_of_tests); |
| 112 | |
| 113 | const from = firstCodePointOfRange(i); |
| 114 | const to = (i == number_of_tests - 1) |
| 115 | ? max_codepoint : firstCodePointOfRange(i + 1); |
| 116 | |
| 117 | for (let i = from; i < to; i++) { |
| 118 | c = String.fromCharCode(i); |
| 119 | test_regexp(c + onebyte); |
| 120 | test_regexp(c + twobyte); |
| 121 | test_trim(c, onebyte + "trim"); |
| 122 | test_trim(c, twobyte + "trim"); |
| 123 | test_parseInt(c, onebyte); |
| 124 | test_parseInt(c, twobyte); |
| 125 | test_eval(c, onebyte); |
| 126 | test_eval(c, twobyte); |
| 127 | test_stringtonumber(c, onebytespace); |
| 128 | test_stringtonumber(c, twobytespace); |
| 129 | } |
| 130 | } |
no test coverage detected
searching dependent graphs…