Align IParameterHintsSupport with the ext host api

This commit is contained in:
Alex Dima
2016-05-19 09:20:58 +02:00
parent 387e290787
commit 3e399132f5
11 changed files with 151 additions and 155 deletions

View File

@@ -306,7 +306,7 @@ class ExtHostApiCommands {
position: position && typeConverters.fromPosition(position),
triggerCharacter
};
return this._commands.executeCommand<modes.IParameterHints>('_executeSignatureHelpProvider', args).then(value => {
return this._commands.executeCommand<modes.SignatureHelp>('_executeSignatureHelpProvider', args).then(value => {
if (value) {
return typeConverters.SignatureHelp.to(value);
}