UNPKG

759 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3class TranspiledMutant {
4 /**
5 * Creates a transpiled mutant
6 * @param mutant The mutant which is just transpiled
7 * @param transpileResult The transpile result of the mutant
8 * @param changedAnyTranspiledFiles Indicated whether or not this mutant changed the transpiled output files. This is not always the case, for example: mutating a TS interface
9 */
10 constructor(mutant, transpileResult, changedAnyTranspiledFiles) {
11 this.mutant = mutant;
12 this.transpileResult = transpileResult;
13 this.changedAnyTranspiledFiles = changedAnyTranspiledFiles;
14 }
15}
16exports.default = TranspiledMutant;
17//# sourceMappingURL=TranspiledMutant.js.map
\No newline at end of file