We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d13a5f8 commit 845e5ccCopy full SHA for 845e5cc
typescript/src/completionsAtPosition.ts
@@ -268,13 +268,6 @@ export const getCompletionsAtPosition = (
268
prior.entries = prior.entries.filter(({ name, kind }) => kind === ts.ScriptElementKind.warning || !name.startsWith('__'))
269
}
270
271
- if (isVueFile && exactNode && ts.isArrayLiteralExpression(ts.isIdentifier(exactNode) ? exactNode.parent : exactNode)) {
272
- const type = languageService
273
- .getProgram()!
274
- .getTypeChecker()!
275
- .getTypeOfSymbol(prior.entries.find(e => e.name === 'Logo')?.symbol!)
276
- console.log(type)
277
- }
278
// #endregion
279
280
addSourceDefinition(prior.entries)
0 commit comments