()
| 50 | } |
| 51 | |
| 52 | get str(): string { |
| 53 | return (this._str ??= this._items.reduce((s: string, c: CodeItem) => `${s}${c}`, "")) |
| 54 | } |
| 55 | |
| 56 | get names(): UsedNames { |
| 57 | return (this._names ??= this._items.reduce((names: UsedNames, c) => { |
nothing calls this directly
no outgoing calls
no test coverage detected