Path: blob/main/src/vs/editor/common/diff/linesDiffComputers.ts
3294 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { LegacyLinesDiffComputer } from './legacyLinesDiffComputer.js';6import { DefaultLinesDiffComputer } from './defaultLinesDiffComputer/defaultLinesDiffComputer.js';7import { ILinesDiffComputer } from './linesDiffComputer.js';89export const linesDiffComputers = {10getLegacy: () => new LegacyLinesDiffComputer(),11getDefault: () => new DefaultLinesDiffComputer(),12} satisfies Record<string, () => ILinesDiffComputer>;131415