mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-28 19:27:05 +01:00
0562b55dde
* propagate test run info to caches * fix tests
14 lines
764 B
TypeScript
14 lines
764 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import { SQLiteSlottedCache } from './cache';
|
|
import { CacheableChatRequest, CachedResponse, IChatMLCache } from './cachingChatMLFetcher';
|
|
import { CurrentTestRunInfo } from './simulationContext';
|
|
|
|
export class ChatMLSQLiteCache extends SQLiteSlottedCache<CacheableChatRequest, CachedResponse> implements IChatMLCache {
|
|
constructor(salt: string, info: CurrentTestRunInfo) {
|
|
super('request', salt, info);
|
|
}
|
|
}
|