UNPKG

@stryker-mutator/api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

15 lines 429 B
import { Position } from './position.js'; /** * Represents a range of mutants that the instrumenter should instrument */ export interface MutationRange { /** * The start of the range to instrument, by line and column number, inclusive */ start: Position; /** * The end of the range to instrument, by line and number, inclusive */ end: Position; } //# sourceMappingURL=mutation-range.d.ts.map