Skip to content

Commit

Permalink
Make lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
polinasok committed Jun 9, 2020
1 parent 3f528ce commit 9a52492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/debugAdapter/goDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1592,9 +1592,9 @@ export class GoDebugSession extends LoggingDebugSession {
// are continiously reevaluated in the Watch panel, which
// already displays errors.
if (args.context === 'watch') {
dest = null
dest = null;
} else {
dest = ErrorDestination.User
dest = ErrorDestination.User;
}
this.sendErrorResponse(response, 2009, 'Unable to eval expression: "{e}"', {
e: err.toString()
Expand Down

0 comments on commit 9a52492

Please sign in to comment.