@specs-feup/lara
Version:
A js port of the popular framework for building source-to-source compilers
16 lines • 378 B
JavaScript
/**
* Contains the results of a single mutation.
*/
export default class MutationResult {
$mutation;
constructor($mutation) {
this.$mutation = $mutation;
}
/**
* @returns A copy of the original join point, where the mutation was applied.
*/
getMutation() {
return this.$mutation;
}
}
//# sourceMappingURL=MutationResult.js.map