Skip to content

Commit ecfd408

Browse files
committed
Accept new baselines
1 parent 059fd2d commit ecfd408

7 files changed

+8
-8
lines changed

tests/baselines/reference/jsFileClassSelfReferencedProperty.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ export class StackOverflowTest {
44

55
constructor () {
66
this.testStackOverflow = this.testStackOverflow.bind(this)
7-
>this.testStackOverflow = this.testStackOverflow.bind(this) : error
7+
>this.testStackOverflow = this.testStackOverflow.bind(this) : any
88
>this.testStackOverflow : any
99
>this : this
1010
>testStackOverflow : any
11-
>this.testStackOverflow.bind(this) : error
11+
>this.testStackOverflow.bind(this) : any
1212
>this.testStackOverflow.bind : any
1313
>this.testStackOverflow : any
1414
>this : this
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement18.ts ===
22
for (var of of of) { }
33
>of : any
4-
>of : error
4+
>of : any
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement19.ts ===
22
for (var of in of) { }
33
>of : any
4-
>of : error
4+
>of : any
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement18.ts ===
22
for (var of of of) { }
33
>of : any
4-
>of : error
4+
>of : any
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement19.ts ===
22
for (var of in of) { }
33
>of : any
4-
>of : error
4+
>of : any
55

tests/baselines/reference/recur1.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ salt.pepper = function() {}
1515

1616
var cobalt = new cobalt.pitch();
1717
>cobalt : any
18-
>new cobalt.pitch() : error
18+
>new cobalt.pitch() : any
1919
>cobalt.pitch : any
2020
>cobalt : any
2121
>pitch : any

tests/baselines/reference/recursiveExportAssignmentAndFindAliasedType7.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import self = require("recursiveExportAssignmentAndFindAliasedType7_moduleD");
1414

1515
var selfVar = self;
1616
>selfVar : any
17-
>self : error
17+
>self : any
1818

1919
export = selfVar;
2020
>selfVar : any

0 commit comments

Comments
 (0)