(start, end)
| 497 | |
| 498 | /* StringImpl Spray */ |
| 499 | function sprayStringImpl(start, end) { |
| 500 | for (let i = start; i < end; i++) { |
| 501 | let s = new String("A".repeat(LENGTH_TIMER - LENGTH_STRINGIMPL - 5) + i.toString().padStart(5, "0")); |
| 502 | g_obj_str[s] = 0x1337; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | function go() { |
| 507 | /* Init spray */ |
no test coverage detected