Skip to content

Commit 643ac4e

Browse files
authored
Avoid exporting symbols (microsoft#164940) (microsoft#166288)
1 parent 1a69d6c commit 643ac4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vs/base/common/diff/diff.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export interface IDiffResult {
6969
// The code below has been ported from a C# implementation in VS
7070
//
7171

72-
export class Debug {
72+
class Debug {
7373

7474
public static Assert(condition: boolean, message: string): void {
7575
if (!condition) {
@@ -78,7 +78,7 @@ export class Debug {
7878
}
7979
}
8080

81-
export class MyArray {
81+
class MyArray {
8282
/**
8383
* Copies a range of elements from an Array starting at the specified source index and pastes
8484
* them to another Array starting at the specified destination index. The length and the indexes

src/vs/editor/browser/viewParts/viewZones/viewZones.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import * as viewEvents from 'vs/editor/common/viewEvents';
1414
import { IEditorWhitespace, IViewWhitespaceViewportData, IWhitespaceChangeAccessor } from 'vs/editor/common/viewModel';
1515
import { EditorOption } from 'vs/editor/common/config/editorOptions';
1616

17-
export interface IMyViewZone {
17+
interface IMyViewZone {
1818
whitespaceId: string;
1919
delegate: IViewZone;
2020
isInHiddenArea: boolean;

0 commit comments

Comments
 (0)