()
| 114 | } |
| 115 | |
| 116 | clone(): this { |
| 117 | const bundle = new Bundle({ |
| 118 | intro: this.intro, |
| 119 | separator: this.separator, |
| 120 | }) |
| 121 | |
| 122 | this.sources.forEach((source) => { |
| 123 | bundle.addSource({ |
| 124 | filename: source.filename, |
| 125 | content: source.content.clone(), |
| 126 | separator: source.separator, |
| 127 | }) |
| 128 | }) |
| 129 | |
| 130 | return bundle as this |
| 131 | } |
| 132 | |
| 133 | generateDecodedMap(options: SourceMapOptions = {}): DecodedSourceMapOrMissingContent { |
| 134 | const names = [] |