Skip to content

Commit

Permalink
Add DiagnosticTag case for MarkerTag.Deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranayub committed Jul 22, 2019
1 parent 6b3ae43 commit 36c9106
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vs/workbench/api/common/extHostTypeConverters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ export namespace DiagnosticTag {
switch (value) {
case types.DiagnosticTag.Unnecessary:
return MarkerTag.Unnecessary;
case types.DiagnosticTag.Deprecated:
return MarkerTag.Deprecated;
}
return undefined;
}
Expand Down

0 comments on commit 36c9106

Please sign in to comment.