()
| 60 | } |
| 61 | |
| 62 | func (t *stringTable) stringLength() int { |
| 63 | return len(t.fileText) + t.otherStrings.Len() |
| 64 | } |
| 65 | |
| 66 | func (t *stringTable) encodedLength() int { |
| 67 | return len(t.offsets)*4 + len(t.fileText) + t.otherStrings.Len() |
no test coverage detected