()
| 465 | } |
| 466 | |
| 467 | function getStringList() { |
| 468 | var count = getLEB(); |
| 469 | var rtn = [] |
| 470 | while (count--) rtn.push(getString()); |
| 471 | return rtn; |
| 472 | } |
| 473 | |
| 474 | /** @param {string=} message */ |
| 475 | function failIf(condition, message) { |
no test coverage detected