@specs-feup/lara
Version:
A js port of the popular framework for building source-to-source compilers
13 lines • 393 B
TypeScript
import { LaraJoinPoint } from "../../LaraJoinPoint.js";
/**
* Contains the results of a single mutation.
*/
export default class MutationResult {
private $mutation;
constructor($mutation: LaraJoinPoint);
/**
* @returns A copy of the original join point, where the mutation was applied.
*/
getMutation(): LaraJoinPoint;
}
//# sourceMappingURL=MutationResult.d.ts.map