File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ /// <reference path='fourslash.ts' />
2
+
3
+ ////function \u0042 () { /*0*/ }
4
+ ////export default function \u0043 () { /*1*/ }
5
+ ////class \u0041 { /*2*/ }
6
+ /////*3*/
7
+
8
+ goTo . marker ( "0" ) ;
9
+ verify . not . completionListContains ( "B" ) ;
10
+ verify . not . completionListContains ( "\u0042" ) ;
11
+
12
+ goTo . marker ( "2" ) ;
13
+ verify . not . completionListContains ( "C" ) ;
14
+ verify . not . completionListContains ( "\u0043" ) ;
15
+
16
+ goTo . marker ( "2" ) ;
17
+ verify . not . completionListContains ( "A" ) ;
18
+ verify . not . completionListContains ( "\u0041" ) ;
19
+
20
+ goTo . marker ( "3" ) ;
21
+ verify . not . completionListContains ( "B" ) ;
22
+ verify . not . completionListContains ( "\u0042" ) ;
23
+ verify . not . completionListContains ( "A" ) ;
24
+ verify . not . completionListContains ( "\u0041" ) ;
25
+ verify . not . completionListContains ( "C" ) ;
26
+ verify . not . completionListContains ( "\u0043" ) ;
27
+
You can’t perform that action at this time.
0 commit comments