(...args: (string | Lines)[])
| 693 | } |
| 694 | |
| 695 | concat(...args: (string | Lines)[]) { |
| 696 | const list: typeof args = [this]; |
| 697 | list.push.apply(list, args); |
| 698 | assert.strictEqual(list.length, args.length + 1); |
| 699 | return emptyLines.join(list); |
| 700 | } |
| 701 | } |
| 702 | |
| 703 | const fromStringCache: any = {}; |
no test coverage detected