interface SourceLocation {
    end: Position;
    filename: string;
    identifierName: undefined | null | string;
    start: Position;
}

Properties

filename: string
identifierName: undefined | null | string
start: Position