UNPKG

@stryker-mutator/api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

17 lines (14 loc) 371 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; }