Skip to content

Commit aba8290

Browse files
Accepted baselines.
1 parent dac00d9 commit aba8290

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/baselines/reference/noImplicitThisFunctions.errors.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
tests/cases/compiler/noImplicitThisFunctions.ts(13,12): error TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.
22
tests/cases/compiler/noImplicitThisFunctions.ts(17,38): error TS7041: The containing arrow function captures the global value of 'this' which implicitly has type 'any'.
33
tests/cases/compiler/noImplicitThisFunctions.ts(18,22): error TS7041: The containing arrow function captures the global value of 'this' which implicitly has type 'any'.
4-
tests/cases/compiler/noImplicitThisFunctions.ts(20,36): error TS7041: The containing arrow function captures the global value of 'this' which implicitly has type 'any'.
4+
tests/cases/compiler/noImplicitThisFunctions.ts(20,36): error TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.
55
tests/cases/compiler/noImplicitThisFunctions.ts(21,50): error TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.
66

77

@@ -33,7 +33,7 @@ tests/cases/compiler/noImplicitThisFunctions.ts(21,50): error TS2683: 'this' imp
3333

3434
let f6 = function() { return () => this; };
3535
~~~~
36-
!!! error TS7041: The containing arrow function captures the global value of 'this' which implicitly has type 'any'.
36+
!!! error TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.
3737
let f7 = function() { return function() { return this } };
3838
~~~~
3939
!!! error TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

0 commit comments

Comments
 (0)