UNPKG

apex-mutation-testing

Version:

Apex mutation testing plugin

11 lines (10 loc) 440 B
import { ApexMutation } from '../type/ApexMutation.js'; import { BaseListener } from './baseListener.js'; import { ApexParserListener } from 'apex-parser'; export declare class MutationListener implements ApexParserListener { protected readonly coveredLines: Set<number>; private listeners; _mutations: ApexMutation[]; getMutations(): ApexMutation[]; constructor(listeners: BaseListener[], coveredLines: Set<number>); }