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