mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-16 15:44:16 -06:00
Fixed more lint issues.
This commit is contained in:
parent
35a3d8547b
commit
413a3d3eb4
@ -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 {
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user