File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
editor/browser/viewParts/viewZones Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export interface IDiffResult {
69
69
// The code below has been ported from a C# implementation in VS
70
70
//
71
71
72
- export class Debug {
72
+ class Debug {
73
73
74
74
public static Assert ( condition : boolean , message : string ) : void {
75
75
if ( ! condition ) {
@@ -78,7 +78,7 @@ export class Debug {
78
78
}
79
79
}
80
80
81
- export class MyArray {
81
+ class MyArray {
82
82
/**
83
83
* Copies a range of elements from an Array starting at the specified source index and pastes
84
84
* them to another Array starting at the specified destination index. The length and the indexes
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import * as viewEvents from 'vs/editor/common/viewEvents';
14
14
import { IEditorWhitespace , IViewWhitespaceViewportData , IWhitespaceChangeAccessor } from 'vs/editor/common/viewModel' ;
15
15
import { EditorOption } from 'vs/editor/common/config/editorOptions' ;
16
16
17
- export interface IMyViewZone {
17
+ interface IMyViewZone {
18
18
whitespaceId : string ;
19
19
delegate : IViewZone ;
20
20
isInHiddenArea : boolean ;
You can’t perform that action at this time.
0 commit comments