Accept new baselines

This commit is contained in:
Anders Hejlsberg 2019-02-18 07:25:22 -10:00
parent 059fd2d42e
commit ecfd40891f
7 changed files with 8 additions and 8 deletions

View File

@ -4,11 +4,11 @@ export class StackOverflowTest {
constructor () {
this.testStackOverflow = this.testStackOverflow.bind(this)
>this.testStackOverflow = this.testStackOverflow.bind(this) : error
>this.testStackOverflow = this.testStackOverflow.bind(this) : any
>this.testStackOverflow : any
>this : this
>testStackOverflow : any
>this.testStackOverflow.bind(this) : error
>this.testStackOverflow.bind(this) : any
>this.testStackOverflow.bind : any
>this.testStackOverflow : any
>this : this

View File

@ -1,5 +1,5 @@
=== tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement18.ts ===
for (var of of of) { }
>of : any
>of : error
>of : any

View File

@ -1,5 +1,5 @@
=== tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement19.ts ===
for (var of in of) { }
>of : any
>of : error
>of : any

View File

@ -1,5 +1,5 @@
=== tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement18.ts ===
for (var of of of) { }
>of : any
>of : error
>of : any

View File

@ -1,5 +1,5 @@
=== tests/cases/conformance/parser/ecmascript6/Iterators/parserForOfStatement19.ts ===
for (var of in of) { }
>of : any
>of : error
>of : any

View File

@ -15,7 +15,7 @@ salt.pepper = function() {}
var cobalt = new cobalt.pitch();
>cobalt : any
>new cobalt.pitch() : error
>new cobalt.pitch() : any
>cobalt.pitch : any
>cobalt : any
>pitch : any

View File

@ -14,7 +14,7 @@ import self = require("recursiveExportAssignmentAndFindAliasedType7_moduleD");
var selfVar = self;
>selfVar : any
>self : error
>self : any
export = selfVar;
>selfVar : any