stryker
Version:
The extendable JavaScript mutation testing framework
18 lines • 833 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var TranspiledMutant = /** @class */ (function () {
/**
* Creates a transpiled mutant
* @param mutant The mutant which is just transpiled
* @param transpileResult The transpile result of the mutant
* @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
*/
function TranspiledMutant(mutant, transpileResult, changedAnyTranspiledFiles) {
this.mutant = mutant;
this.transpileResult = transpileResult;
this.changedAnyTranspiledFiles = changedAnyTranspiledFiles;
}
return TranspiledMutant;
}());
exports.default = TranspiledMutant;
//# sourceMappingURL=TranspiledMutant.js.map
;