Improve comments and code style

This commit is contained in:
kingwl
2020-12-24 15:28:27 +08:00
parent ff8ae0b93f
commit d24ab0a201
8 changed files with 54 additions and 14 deletions

View File

@@ -1796,7 +1796,8 @@ export class ExtHostLanguageFeatures implements extHostProtocol.ExtHostLanguageF
this._withAdapter(handle, SignatureHelpAdapter, adapter => adapter.releaseSignatureHelp(id), undefined);
}
// --- arguments labels
// --- signature arguments labels
$provideSignatureArgumentsLabel(handle: number, resource: UriComponents, token: CancellationToken): Promise<extHostProtocol.ISignatureArgumentsLabelDto | undefined> {
return this._withAdapter(handle, SignatureArgumentsLabelAdapter, adapter => adapter.provideSignatureArgumentsLabels(URI.revive(resource), token), undefined);
}