UNPKG

@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) 859 B
import { ProjectReport } from '../../model/ProjectReport'; import { ModuleReport } from '../../model/ModuleReport'; import { SourceNodeMetaData } from '../../model/SourceNodeMetaData'; import { SourceNodeMetaDataType } from '../../types'; export declare class CallIdentifier { isAwaiterSourceNode: boolean; readonly report: ProjectReport | ModuleReport; readonly sourceNode: SourceNodeMetaData<SourceNodeMetaDataType.SourceNode | SourceNodeMetaDataType.LangInternalSourceNode> | null; readonly sourceNodeIDString: string; readonly compensationLayerDepth: number; constructor(report: ProjectReport | ModuleReport, sourceNode: SourceNodeMetaData<SourceNodeMetaDataType.SourceNode | SourceNodeMetaDataType.LangInternalSourceNode> | null, compensationLayerDepth: number); toString(): string; toCompensationLayerString(): string; }