Skip to content

Commit 96ec48d

Browse files
committed
wip
1 parent 50d25aa commit 96ec48d

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

tests/cases/fourslash/jsDocSee3.ts

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
///<reference path="fourslash.ts" />
22

3-
//// interface [|/*def1*/A|] { }
4-
//// namespace [|/*def2*/A|] { }
5-
//// const [|/*def3*/A|] = 1;
6-
7-
//// /**
8-
//// * @see {/*use1*/[|A|]}
9-
//// */
10-
//// const v = 2;
11-
3+
//// function foo ([|/*def1*/a|]: string) {
4+
//// /**
5+
//// * @see {/*use1*/[|a|]}
6+
//// */
7+
//// function bar (a: string) {
8+
//// }
9+
//// }
1210

1311
goTo.marker("use1");
14-
verify.goToDefinitionIs(["def1", "def2", "def3"]);
12+
verify.goToDefinitionIs(["def1"]);

0 commit comments

Comments
 (0)