@@ -32,7 +32,7 @@ import { getComponentProps } from '@vue/typescript-plugin/lib/requests/getCompon
3232import { getComponentSlots } from '@vue/typescript-plugin/lib/requests/getComponentSlots'
3333import { getElementAttrs } from '@vue/typescript-plugin/lib/requests/getElementAttrs'
3434import { getElementNames } from '@vue/typescript-plugin/lib/requests/getElementNames'
35- import { getPropertiesAtLocation } from '@vue/typescript-plugin/lib/requests/getPropertiesAtLocation '
35+ import { isRefAtPosition } from '@vue/typescript-plugin/lib/requests/isRefAtPosition '
3636
3737export interface CreateData {
3838 tsconfig : {
@@ -204,16 +204,15 @@ self.onmessage = async (msg: MessageEvent<WorkerMessage>) => {
204204 getElementNames ( fileName ) {
205205 return getElementNames ( ts , getProgram ( ) , fileName )
206206 } ,
207- getPropertiesAtLocation ( fileName , position ) {
207+ isRefAtPosition ( fileName , position ) {
208208 const { sourceScript, virtualCode } = getVirtualCode ( fileName )
209- return getPropertiesAtLocation (
209+ return isRefAtPosition (
210210 ts ,
211211 getLanguageService ( ) . context . language ,
212212 getProgram ( ) ,
213213 sourceScript ,
214214 virtualCode ,
215215 position ,
216- false ,
217216 )
218217 } ,
219218 async getQuickInfoAtPosition ( fileName , position ) {
@@ -260,6 +259,9 @@ self.onmessage = async (msg: MessageEvent<WorkerMessage>) => {
260259 getEncodedSemanticClassifications ( ) {
261260 throw new Error ( 'Not implemented' )
262261 } ,
262+ getReactiveReferences ( ) {
263+ throw new Error ( 'Not implemented' )
264+ } ,
263265 } )
264266 const ignoreVueServicePlugins = new Set ( [
265267 'vue-extract-file' ,
0 commit comments