const activeEditor = vscode.window.activeTextEditor;
const uri = activeEditor.document.uri
const pos = activeEditor.selection.active
vscode.commands.executeCommand<vscode.Location[]>('vscode.executeReferenceProvider', uri, pos).then(locations => {
locations
});