()
| 2777 | } |
| 2778 | } |
| 2779 | get str() { |
| 2780 | return (this.byteorder === '=' ? '<' : this.byteorder) + this.kind + this.itemsize.toString(); |
| 2781 | } |
| 2782 | get name() { |
| 2783 | switch (this.kind) { |
| 2784 | case 'V': return `void${this.itemsize === 0 ? '' : (this.itemsize * 8)}`; |
nothing calls this directly
no test coverage detected