Skip to content

Commit 91aaf39

Browse files
committed
Move modelBuilder up to /workbench/
1 parent 829ab90 commit 91aaf39

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/vs/editor/node/model/modelBuilder.ts renamed to src/vs/workbench/services/textfile/electron-browser/modelBuilder.ts

File renamed without changes.

src/vs/workbench/services/textfile/electron-browser/textFileService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
2222
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
2323
import { IModeService } from 'vs/editor/common/services/modeService';
2424
import { IWindowIPCService } from 'vs/workbench/services/window/electron-browser/windowService';
25-
import { ModelBuilder } from 'vs/editor/node/model/modelBuilder';
25+
import { ModelBuilder } from 'vs/workbench/services/textfile/electron-browser/modelBuilder';
2626
import product from 'vs/platform/node/product';
2727
import { IEnvironmentService } from 'vs/platform/environment/common/environment';
2828
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';

src/vs/editor/test/node/model/modelBuilder.test.ts renamed to src/vs/workbench/services/textfile/test/modelBuilder.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
'use strict';
66

77
import * as assert from 'assert';
8-
import { ModelBuilder, computeHash } from 'vs/editor/node/model/modelBuilder';
8+
import { ModelBuilder, computeHash } from 'vs/workbench/services/textfile/electron-browser/modelBuilder';
99
import { ITextModelCreationOptions } from 'vs/editor/common/editorCommon';
1010
import { TextModel } from 'vs/editor/common/model/textModel';
1111
import * as strings from 'vs/base/common/strings';

src/vs/editor/test/node/model/modelBuilderAuto.test.ts renamed to src/vs/workbench/services/textfile/test/modelBuilderAuto.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55
'use strict';
66

7-
import { testModelBuilder, testDifferentHash } from 'vs/editor/test/node/model/modelBuilder.test';
7+
import { testModelBuilder, testDifferentHash } from './modelBuilder.test';
88
import { CharCode } from 'vs/base/common/charCode';
99

1010
const GENERATE_TESTS = false;

0 commit comments

Comments
 (0)