312
313
private _report(telemetryContext: IAgentHostRestrictedTelemetryContext, isContextCurrent: () => boolean, telemetryMessageId: string, location: 'begin' | 'end', repoInfo: IRepoInfoContext, result: AgentHostRepoInfoResult, workspaceFileCount: number, changedFileCount: number, diffSizeBytes: number, fileRelativePaths?: string, diffsJSON?: string): AgentHostRepoInfoResult {
315
return result;
316
}
318
>
telemetryMessageId,
319
>
location,
320
>
remoteUrl: repoInfo.remoteUrl,
321
>
repoId: repoInfo.repoId,
322
>
repoType: repoInfo.repoType,
323
>
headCommitHash: repoInfo.headCommitHash,
324
>
headBranchName: repoInfo.headBranchName,
325
>
fileRelativePaths,
326
>
diffsJSON,
327
>
result,
328
>
isActiveRepository: 'true',
329
>
workspaceFileCount,
330
>
changedFileCount,
331
>
diffSizeBytes,
332
>
});
333
>
return result;
334
>
}
335
}
336