mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
Fix bug: getTouchingPropertyName does not return undefined, but it may return the source file node
This commit is contained in:
@@ -4645,7 +4645,7 @@ namespace ts {
|
||||
|
||||
const sourceFile = getValidSourceFile(fileName);
|
||||
const node = getTouchingPropertyName(sourceFile, position);
|
||||
if (!node) {
|
||||
if (node === sourceFile) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
|
||||
9
tests/cases/fourslash/hoverOverComment.ts
Normal file
9
tests/cases/fourslash/hoverOverComment.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/// <reference path="fourslash.ts" />
|
||||
|
||||
////export function f() {}
|
||||
//////foo
|
||||
/////**///moo
|
||||
|
||||
goTo.marker();
|
||||
verify.quickInfoIs("");
|
||||
|
||||
Reference in New Issue
Block a user