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 {
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
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import * as viewEvents from 'vs/editor/common/viewEvents';
1414import { IEditorWhitespace , IViewWhitespaceViewportData , IWhitespaceChangeAccessor } from 'vs/editor/common/viewModel' ;
1515import { EditorOption } from 'vs/editor/common/config/editorOptions' ;
1616
17- export interface IMyViewZone {
17+ interface IMyViewZone {
1818 whitespaceId : string ;
1919 delegate : IViewZone ;
2020 isInHiddenArea : boolean ;
You can’t perform that action at this time.
0 commit comments