accept new baselines

This commit is contained in:
yortus
2016-08-14 21:42:31 +08:00
parent 59c09d90e6
commit cc8f326961
2 changed files with 81 additions and 17 deletions

View File

@@ -1,16 +1,26 @@
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(12,10): error TS2339: Property 'bar' does not exist on type 'A'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(18,10): error TS2339: Property 'bar' does not exist on type 'A'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(33,5): error TS2322: Type 'string' is not assignable to type 'number'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(34,10): error TS2339: Property 'bar' does not exist on type 'B<number>'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(41,10): error TS2339: Property 'bar' does not exist on type 'B<any>'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(66,10): error TS2339: Property 'bar2' does not exist on type 'C1'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(72,10): error TS2339: Property 'bar1' does not exist on type 'C1 | C2'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(73,10): error TS2339: Property 'bar2' does not exist on type 'C1 | C2'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(85,10): error TS2339: Property 'bar' does not exist on type 'D'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(91,10): error TS2339: Property 'bar' does not exist on type 'D'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(112,10): error TS2339: Property 'bar2' does not exist on type 'E1'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(118,11): error TS2339: Property 'bar1' does not exist on type 'E1 | E2'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(119,11): error TS2339: Property 'bar2' does not exist on type 'E1 | E2'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(134,11): error TS2339: Property 'foo' does not exist on type 'string | F'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(135,11): error TS2339: Property 'bar' does not exist on type 'string | F'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(160,11): error TS2339: Property 'foo2' does not exist on type 'G1'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(166,11): error TS2339: Property 'foo2' does not exist on type 'G1'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(182,11): error TS2339: Property 'bar' does not exist on type 'H'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(187,11): error TS2339: Property 'foo1' does not exist on type 'H'.
tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts(188,11): error TS2339: Property 'foo2' does not exist on type 'H'.
==== tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts (10 errors) ====
==== tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts (20 errors) ====
interface AConstructor {
new (): A;
}
@@ -28,9 +38,11 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj2: any;
if (obj2 instanceof A) { // can't narrow type from 'any'
if (obj2 instanceof A) {
obj2.foo;
obj2.bar;
~~~
!!! error TS2339: Property 'bar' does not exist on type 'A'.
}
// a construct signature with generics
@@ -54,10 +66,12 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj4: any;
if (obj4 instanceof B) { // can't narrow type from 'any'
if (obj4 instanceof B) {
obj4.foo = "str";
obj4.foo = 1;
obj4.bar = "str";
~~~
!!! error TS2339: Property 'bar' does not exist on type 'B<any>'.
}
// has multiple construct signature
@@ -88,10 +102,14 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj6: any;
if (obj6 instanceof C) { // can't narrow type from 'any'
if (obj6 instanceof C) {
obj6.foo;
obj6.bar1;
~~~~
!!! error TS2339: Property 'bar1' does not exist on type 'C1 | C2'.
obj6.bar2;
~~~~
!!! error TS2339: Property 'bar2' does not exist on type 'C1 | C2'.
}
// with object type literal
@@ -109,9 +127,11 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj8: any;
if (obj8 instanceof D) { // can't narrow type from 'any'
if (obj8 instanceof D) {
obj8.foo;
obj8.bar;
~~~
!!! error TS2339: Property 'bar' does not exist on type 'D'.
}
// a construct signature that returns a union type
@@ -138,10 +158,14 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj10: any;
if (obj10 instanceof E) { // can't narrow type from 'any'
if (obj10 instanceof E) {
obj10.foo;
obj10.bar1;
~~~~
!!! error TS2339: Property 'bar1' does not exist on type 'E1 | E2'.
obj10.bar2;
~~~~
!!! error TS2339: Property 'bar2' does not exist on type 'E1 | E2'.
}
// a construct signature that returns any
@@ -165,7 +189,7 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj12: any;
if (obj12 instanceof F) { // can't narrow type from 'any'
if (obj12 instanceof F) {
obj12.foo;
obj12.bar;
}
@@ -192,9 +216,11 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj14: any;
if (obj14 instanceof G) { // can't narrow type from 'any'
if (obj14 instanceof G) {
obj14.foo1;
obj14.foo2;
~~~~
!!! error TS2339: Property 'foo2' does not exist on type 'G1'.
}
// a type with a prototype that has any type
@@ -216,8 +242,24 @@ tests/cases/conformance/expressions/typeGuards/typeGuardsWithInstanceOfByConstru
}
var obj16: any;
if (obj16 instanceof H) { // can't narrow type from 'any'
if (obj16 instanceof H) {
obj16.foo1;
~~~~
!!! error TS2339: Property 'foo1' does not exist on type 'H'.
obj16.foo2;
~~~~
!!! error TS2339: Property 'foo2' does not exist on type 'H'.
}
var obj17: any;
if (obj17 instanceof Object) { // can't narrow type from 'any' to 'Object'
obj17.foo1;
obj17.foo2;
}
var obj18: any;
if (obj18 instanceof Function) { // can't narrow type from 'any' to 'Function'
obj18.foo1;
obj18.foo2;
}

View File

@@ -14,7 +14,7 @@ if (obj1 instanceof A) { // narrowed to A.
}
var obj2: any;
if (obj2 instanceof A) { // can't narrow type from 'any'
if (obj2 instanceof A) {
obj2.foo;
obj2.bar;
}
@@ -36,7 +36,7 @@ if (obj3 instanceof B) { // narrowed to B<number>.
}
var obj4: any;
if (obj4 instanceof B) { // can't narrow type from 'any'
if (obj4 instanceof B) {
obj4.foo = "str";
obj4.foo = 1;
obj4.bar = "str";
@@ -68,7 +68,7 @@ if (obj5 instanceof C) { // narrowed to C1|C2.
}
var obj6: any;
if (obj6 instanceof C) { // can't narrow type from 'any'
if (obj6 instanceof C) {
obj6.foo;
obj6.bar1;
obj6.bar2;
@@ -87,7 +87,7 @@ if (obj7 instanceof D) { // narrowed to D.
}
var obj8: any;
if (obj8 instanceof D) { // can't narrow type from 'any'
if (obj8 instanceof D) {
obj8.foo;
obj8.bar;
}
@@ -114,7 +114,7 @@ if (obj9 instanceof E) { // narrowed to E1 | E2
}
var obj10: any;
if (obj10 instanceof E) { // can't narrow type from 'any'
if (obj10 instanceof E) {
obj10.foo;
obj10.bar1;
obj10.bar2;
@@ -137,7 +137,7 @@ if (obj11 instanceof F) { // can't type narrowing, construct signature returns a
}
var obj12: any;
if (obj12 instanceof F) { // can't narrow type from 'any'
if (obj12 instanceof F) {
obj12.foo;
obj12.bar;
}
@@ -162,7 +162,7 @@ if (obj13 instanceof G) { // narrowed to G1. G1 is return type of prototype prop
}
var obj14: any;
if (obj14 instanceof G) { // can't narrow type from 'any'
if (obj14 instanceof G) {
obj14.foo1;
obj14.foo2;
}
@@ -184,10 +184,22 @@ if (obj15 instanceof H) { // narrowed to H.
}
var obj16: any;
if (obj16 instanceof H) { // can't narrow type from 'any'
if (obj16 instanceof H) {
obj16.foo1;
obj16.foo2;
}
var obj17: any;
if (obj17 instanceof Object) { // can't narrow type from 'any' to 'Object'
obj17.foo1;
obj17.foo2;
}
var obj18: any;
if (obj18 instanceof Function) { // can't narrow type from 'any' to 'Function'
obj18.foo1;
obj18.foo2;
}
//// [typeGuardsWithInstanceOfByConstructorSignature.js]
@@ -278,3 +290,13 @@ if (obj16 instanceof H) {
obj16.foo1;
obj16.foo2;
}
var obj17;
if (obj17 instanceof Object) {
obj17.foo1;
obj17.foo2;
}
var obj18;
if (obj18 instanceof Function) {
obj18.foo1;
obj18.foo2;
}