@oaklean/profiler-core
Version:
Part of the @oaklean suite. It provides all basic functions to work with the `.oak` file format. It allows parsing the `.oak` file format as well as tools for analyzing the measurement values. It also provides all necessary capabilities required for prec
15 lines (14 loc) • 456 B
TypeScript
import { DebugProtocol as Dap } from '@vscode/debugprotocol';
/**
* References a specific line and column in a DAP source.
*/
export interface ISourceLocation {
lineNumber: number;
columnNumber: number;
source: Dap.Source;
relativePath?: string;
}
/**
* Adds the relativePath to the candidate based on the given root path..
*/
export declare const addRelativeDiskPath: (rootPath: string, candidate: ISourceLocation) => ISourceLocation;