Accept new baselines

This commit is contained in:
Anders Hejlsberg 2018-06-21 17:29:24 -10:00
parent cffa1dd2d0
commit 0a94f77b72

View File

@ -41,13 +41,13 @@ class FooIterator {
}
function fun(...[a, ...b]) { }
>fun : (...[a, ...b]: Iterable<any>) => void
>fun : (__0_0: any, __0_1?: any) => void
>a : any
>b : any[]
fun(new FooIterator);
>fun(new FooIterator) : void
>fun : (...[a, ...b]: Iterable<any>) => void
>fun : (__0_0: any, __0_1?: any) => void
>new FooIterator : FooIterator
>FooIterator : typeof FooIterator