()
| 878 | return this; |
| 879 | } |
| 880 | clone() { |
| 881 | const bundle = new Bundle({ |
| 882 | intro: this.intro, |
| 883 | separator: this.separator, |
| 884 | }); |
| 885 | this.sources.forEach((source) => { |
| 886 | bundle.addSource({ |
| 887 | filename: source.filename, |
| 888 | content: source.content.clone(), |
| 889 | separator: source.separator, |
| 890 | }); |
| 891 | }); |
| 892 | return bundle; |
| 893 | } |
| 894 | generateDecodedMap(options = {}) { |
| 895 | const names = []; |
| 896 | this.sources.forEach((source) => { |