stryker
Version:
The extendable JavaScript mutation testing framework
12 lines • 487 B
TypeScript
import NodeMutator from './NodeMutator';
import { IdentifiedNode } from './IdentifiedNode';
/**
* Represents a mutator which can remove the content of a BlockStatement.
*/
export default class BlockStatementMutator implements NodeMutator {
name: string;
private readonly type;
constructor();
applyMutations(node: IdentifiedNode, copy: <T extends IdentifiedNode>(obj: T, deep?: boolean) => T): void | IdentifiedNode;
}
//# sourceMappingURL=BlockStatementMutator.d.ts.map