nullDiffComputer.ts 659 字节
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
'use strict';

J
Johannes Rieken 已提交
7
import { ILineChange } from 'vs/editor/common/editorCommon';
E
Erich Gamma 已提交
8 9 10

export class DiffComputer {

J
Johannes Rieken 已提交
11
	constructor(originalLines: string[], modifiedLines: string[], shouldPostProcessCharChanges: boolean, shouldIgnoreTrimWhitespace: boolean) {
E
Erich Gamma 已提交
12 13
	}

A
Alex Dima 已提交
14
	public computeDiff(): ILineChange[] {
E
Erich Gamma 已提交
15 16 17
		return [];
	}
}