Skip to content

Commit

Permalink
Fixed more lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
armanio123 committed May 23, 2020
1 parent 35a3d85 commit 413a3d3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions src/harness/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -812,20 +812,20 @@ namespace ts.server {
return notImplemented();
}

toggleLineComment(): ts.TextChange[] {
throw new Error("Method not implemented.");
toggleLineComment(): TextChange[] {
return notImplemented();
}

toggleMultilineComment(): ts.TextChange[] {
throw new Error("Method not implemented.");
toggleMultilineComment(): TextChange[] {
return notImplemented();
}

commentSelection(): ts.TextChange[] {
throw new Error("Method not implemented.");
commentSelection(): TextChange[] {
return notImplemented();
}

uncommentSelection(): ts.TextChange[] {
throw new Error("Method not implemented.");
uncommentSelection(): TextChange[] {
return notImplemented();
}

dispose(): void {
Expand Down
2 changes: 1 addition & 1 deletion src/services/shims.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ namespace ts {
getEmitOutputObject(fileName: string): EmitOutput;

toggleLineComment(fileName: string, textChange: TextRange): string;
toggleMultilineComment(fileName: string, textChange:TextRange): string;
toggleMultilineComment(fileName: string, textChange: TextRange): string;
commentSelection(fileName: string, textChange: TextRange): string;
uncommentSelection(fileName: string, textChange: TextRange): string;
}
Expand Down

0 comments on commit 413a3d3

Please sign in to comment.