(start, end)
| 435 | |
| 436 | /* StringImpl Spray */ |
| 437 | function sprayStringImpl(start, end) { |
| 438 | for (let i = start; i < end; i++) { |
| 439 | let s = new String("A".repeat(LENGTH_TIMER - LENGTH_STRINGIMPL - 5) + i.toString().padStart(5, "0")); |
| 440 | g_obj_str[s] = 0x1337; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | function go() { |
| 445 | /* Init spray */ |
no test coverage detected