* Read string from string table * 从字符串表读取字符串
()
| 218 | * 从字符串表读取字符串 |
| 219 | */ |
| 220 | public readS(): string { |
| 221 | const index = this.getUint16(); |
| 222 | if (index === 65535) { |
| 223 | return ''; |
| 224 | } |
| 225 | return this._stringTable[index] || ''; |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Read string with length prefix |
no test coverage detected