Skip to content

Commit 845e5cc

Browse files
committed
remove experimental vue template tag code
1 parent d13a5f8 commit 845e5cc

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

typescript/src/completionsAtPosition.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -268,13 +268,6 @@ export const getCompletionsAtPosition = (
268268
prior.entries = prior.entries.filter(({ name, kind }) => kind === ts.ScriptElementKind.warning || !name.startsWith('__'))
269269
}
270270
}
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-
}
278271
// #endregion
279272

280273
addSourceDefinition(prior.entries)

0 commit comments

Comments
 (0)