Skip to content

Commit 134d561

Browse files
committed
update baseline
1 parent 4ec5509 commit 134d561

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/baselines/reference/typeofThis.symbols

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function Test3(this: { no: number }) {
7575
let x: typeof this.no = 1;
7676
>x : Symbol(x, Decl(typeofThis.ts, 27, 7))
7777
>this.no : Symbol(no, Decl(typeofThis.ts, 26, 22))
78-
>this : Symbol(__type, Decl(typeofThis.ts, 26, 20))
78+
>this : Symbol(this, Decl(typeofThis.ts, 26, 15))
7979
>no : Symbol(no, Decl(typeofThis.ts, 26, 22))
8080
}
8181

@@ -87,6 +87,7 @@ function Test4(this: { no: number } | undefined) {
8787
let x: typeof this.no = 1;
8888
>x : Symbol(x, Decl(typeofThis.ts, 31, 7))
8989
>this.no : Symbol(no, Decl(typeofThis.ts, 30, 22))
90+
>this : Symbol(this, Decl(typeofThis.ts, 30, 15))
9091
>no : Symbol(no, Decl(typeofThis.ts, 30, 22))
9192
}
9293

@@ -156,6 +157,7 @@ class Test9 {
156157

157158
const d1: typeof this = this;
158159
>d1 : Symbol(d1, Decl(typeofThis.ts, 65, 17))
160+
>this : Symbol(Test9, Decl(typeofThis.ts, 57, 1))
159161

160162
d1.f1();
161163
>d1.f1 : Symbol(Test9D1.f1, Decl(typeofThis.ts, 86, 15))
@@ -169,6 +171,7 @@ class Test9 {
169171

170172
const d2: typeof this = this;
171173
>d2 : Symbol(d2, Decl(typeofThis.ts, 70, 17))
174+
>this : Symbol(Test9, Decl(typeofThis.ts, 57, 1))
172175

173176
d2.f2();
174177
>d2.f2 : Symbol(Test9D2.f2, Decl(typeofThis.ts, 90, 15))

0 commit comments

Comments
 (0)