| 22 | import { currentTestName } from './helpers'; |
| 23 | |
| 24 | export interface ILocation { |
| 25 | path?: string; |
| 26 | line: number; |
| 27 | column?: number; |
| 28 | verified?: boolean; |
| 29 | } |
| 30 | |
| 31 | export interface IPartialLocation { |
| 32 | path?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected