UNPKG

stryker

Version:
14 lines 560 B
import NodeMutator from './NodeMutator'; import { IdentifiedNode } from './IdentifiedNode'; /** * Represents a mutator which can remove the conditional clause from statements. */ export default class RemoveConditionalsMutator implements NodeMutator { name: string; private readonly types; constructor(); applyMutations(node: IdentifiedNode, copy: <T extends IdentifiedNode>(obj: T, deep?: boolean) => T): IdentifiedNode[] | void; private booleanLiteralNode; private canMutate; } //# sourceMappingURL=RemoveConditionalsMutator.d.ts.map