()
| 44 | } |
| 45 | |
| 46 | emptyStr(): boolean { |
| 47 | if (this._items.length > 1) return false |
| 48 | const item = this._items[0] |
| 49 | return item === "" || item === '""' |
| 50 | } |
| 51 | |
| 52 | get str(): string { |
| 53 | return (this._str ??= this._items.reduce((s: string, c: CodeItem) => `${s}${c}`, "")) |
nothing calls this directly
no outgoing calls
no test coverage detected