@@ -109,31 +109,31 @@ export function getFullLanguageServicePlugins(ts: typeof import('typescript')) {
109
109
} ;
110
110
return {
111
111
async collectExtractProps ( ...args ) {
112
- return await collectExtractProps . apply ( requestContext , args ) ;
112
+ return collectExtractProps . apply ( requestContext , args ) ;
113
113
} ,
114
114
async getPropertiesAtLocation ( ...args ) {
115
- return await getPropertiesAtLocation . apply ( requestContext , args ) ;
115
+ return getPropertiesAtLocation . apply ( requestContext , args ) ;
116
116
} ,
117
117
async getImportPathForFile ( ...args ) {
118
- return await getImportPathForFile . apply ( requestContext , args ) ;
118
+ return getImportPathForFile . apply ( requestContext , args ) ;
119
119
} ,
120
120
async getComponentEvents ( ...args ) {
121
- return await getComponentEvents . apply ( requestContext , args ) ;
121
+ return getComponentEvents . apply ( requestContext , args ) ;
122
122
} ,
123
123
async getComponentDirectives ( ...args ) {
124
- return await getComponentDirectives . apply ( requestContext , args ) ;
124
+ return getComponentDirectives . apply ( requestContext , args ) ;
125
125
} ,
126
126
async getComponentNames ( ...args ) {
127
- return await getComponentNames . apply ( requestContext , args ) ;
127
+ return getComponentNames . apply ( requestContext , args ) ;
128
128
} ,
129
129
async getComponentProps ( ...args ) {
130
- return await getComponentProps . apply ( requestContext , args ) ;
130
+ return getComponentProps . apply ( requestContext , args ) ;
131
131
} ,
132
132
async getElementAttrs ( ...args ) {
133
- return await getElementAttrs . apply ( requestContext , args ) ;
133
+ return getElementAttrs . apply ( requestContext , args ) ;
134
134
} ,
135
135
async getElementNames ( ...args ) {
136
- return await getElementNames . apply ( requestContext , args ) ;
136
+ return getElementNames . apply ( requestContext , args ) ;
137
137
} ,
138
138
async getQuickInfoAtPosition ( fileName , position ) {
139
139
const languageService = context . getLanguageService ( ) ;
0 commit comments