Accept new baselines

This commit is contained in:
Anders Hejlsberg 2018-11-02 07:53:48 -07:00
parent abebf15af8
commit bcc1d2a8cd

View File

@ -18,20 +18,20 @@ class C<T extends Options> {
>method : () => void
let { a, b } = this.foo;
>a : { [P in keyof T]: T[P]; }["a"]
>b : { [P in keyof T]: T[P]; }["b"]
>a : T["a"]
>b : T["b"]
>this.foo : { [P in keyof T]: T[P]; }
>this : this
>foo : { [P in keyof T]: T[P]; }
!(a && b);
>!(a && b) : false
>(a && b) : { [P in keyof T]: T[P]; }["b"]
>a && b : { [P in keyof T]: T[P]; }["b"]
>a : { [P in keyof T]: T[P]; }["a"]
>b : { [P in keyof T]: T[P]; }["b"]
>(a && b) : T["b"]
>a && b : T["b"]
>a : T["a"]
>b : T["b"]
a;
>a : { [P in keyof T]: T[P]; }["a"]
>a : T["a"]
}
}