On VSCode you can register to provide an specific function of a language server like:
vscode.languages.registerDefinitionProvider
vscode.languages.registerCompletionItemProvider
Is there a way from the extension get the list of all the providers and call it's methods to for example get completion items for a given position on the editor?
Thanks