File tree Expand file tree Collapse file tree 4 files changed +44
-0
lines changed Expand file tree Collapse file tree 4 files changed +44
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ /// <reference path='fourslash.ts' />
2+
3+ ////module m {
4+ //// declare [|const|] x;
5+ //// declare [|const|] enum E {
6+ //// }
7+ //// }
8+ ////
9+ ////declare [|const|] x;
10+ ////declare [|const|] enum E {
11+ //// }
12+
13+ test . ranges ( ) . forEach ( range => {
14+ goTo . position ( range . start ) ;
15+ verify . occurrencesAtPositionCount ( 0 ) ;
16+ } ) ;
Original file line number Diff line number Diff line change 1+ /// <reference path='fourslash.ts' />
2+
3+ ////module m {
4+ //// export [|const|] x;
5+ //// export [|const|] enum E {
6+ //// }
7+ //// }
8+ ////
9+ ////export [|const|] x;
10+ ////export [|const|] enum E {
11+ //// }
12+
13+ test . ranges ( ) . forEach ( range => {
14+ goTo . position ( range . start ) ;
15+ verify . occurrencesAtPositionCount ( 0 ) ;
16+ } ) ;
Original file line number Diff line number Diff line change 1+ /// <reference path='fourslash.ts' />
2+
3+ ////export const class C {
4+ //// private static [|const|] foo;
5+ //// constructor(public [|const|] foo) {
6+ //// }
7+ //// }
8+
9+ test . ranges ( ) . forEach ( range => {
10+ goTo . position ( range . start ) ;
11+ verify . occurrencesAtPositionCount ( 0 ) ;
12+ } ) ;
You can’t perform that action at this time.
0 commit comments