(code: string | readonly CodeItem[])
| 35 | private _names?: UsedNames |
| 36 | |
| 37 | constructor(code: string | readonly CodeItem[]) { |
| 38 | super() |
| 39 | this._items = typeof code === "string" ? [code] : code |
| 40 | } |
| 41 | |
| 42 | toString(): string { |
| 43 | return this.str |
nothing calls this directly
no outgoing calls
no test coverage detected