You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
////import { /*1*/ } from "./file.ts"; // no globals in imports - export found
11
+
3
12
//@Filename: file.tsx
4
-
/////// <reference path="/*1*/..\services\services.ts" /> // no globals in reference paths
5
-
////import { /*2*/ } from "./file.ts"; // no globals in imports
6
-
////var test = "/*3*/"; // no globals in strings
7
-
/////*4*/class A { // insert globals
13
+
/////// <reference path="/*2*/..\services\services.ts" /> // no globals in reference paths
14
+
////import { /*3*/ } from "./file1.ts"; // no globals in imports - export not found
15
+
////var test = "/*4*/"; // no globals in strings
16
+
/////*5*/class A { // insert globals
8
17
//// foo(): string { return ''; }
9
18
////}
10
19
////
11
-
////class /*5*/B extends A { // no globals after class keyword
20
+
////class /*6*/B extends A { // no globals after class keyword
12
21
//// bar(): string {
13
-
//// /*6*/ // insert globals
22
+
//// /*7*/ // insert globals
14
23
//// return '';
15
24
//// }
16
25
////}
17
26
////
18
-
////class C</*7*/ U extends A, T extends A> { // no globals at beginning of generics
27
+
////class C</*8*/ U extends A, T extends A> { // no globals at beginning of generics
19
28
//// x: U;
20
-
//// y = this./*8*/x; // no globals inserted for member completions
21
-
//// /*9*/ // insert globals
29
+
//// y = this./*9*/x; // no globals inserted for member completions
30
+
//// /*10*/ // insert globals
22
31
////}
23
-
/////*10*/ // insert globals
24
-
////const y = <div /*11*/ />;
32
+
/////*11*/ // insert globals
33
+
////const y = <div /*12*/ />; // no globals in jsx attribute found
34
+
////const z = <div =/*13*/ />; // no globals in jsx attribute with syntax error
35
+
////const x = `/*14*/ ${/*15*/}`; // globals only in template expression
36
+
////var user = </*16*/User name=/*17*/{ /*18*/window.isLoggedIn ? window.name : '/*19*/'} />; // globals only in JSX expression (but not in JSX expression strings)
0 commit comments