Skip to content

Commit

Permalink
Add missing static fields
Browse files Browse the repository at this point in the history
Change-Id: I72dfd4d5706afe7840b505d458b3b13794d8ba67
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
  • Loading branch information
benoitf committed Apr 23, 2019
1 parent 756bc5d commit fd33cca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/plugin-ext/src/plugin/types-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,9 +529,9 @@ export class ThemeColor {

export class ThemeIcon {

static readonly File: ThemeIcon;
static readonly File: ThemeIcon = new ThemeIcon('file');

static readonly Folder: ThemeIcon;
static readonly Folder: ThemeIcon = new ThemeIcon('folder');

private constructor(public id: string) {
}
Expand Down Expand Up @@ -938,6 +938,7 @@ export class CodeActionKind {
public static readonly RefactorRewrite = CodeActionKind.Refactor.append('rewrite');
public static readonly Source = CodeActionKind.Empty.append('source');
public static readonly SourceOrganizeImports = CodeActionKind.Source.append('organizeImports');
public static readonly SourceFixAll = CodeActionKind.Source.append('fixAll');

constructor(
public readonly value: string
Expand Down

0 comments on commit fd33cca

Please sign in to comment.