Skip to content

Commit c7d2e59

Browse files
committed
Accept new baselines
1 parent aa8c6c8 commit c7d2e59

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

tests/baselines/reference/nonContextuallyTypedLogicalOr.symbols

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ var e: Ellement;
2828
>Ellement : Symbol(Ellement, Decl(nonContextuallyTypedLogicalOr.ts, 3, 1))
2929

3030
(c || e).dummy;
31-
>(c || e).dummy : Symbol(dummy, Decl(nonContextuallyTypedLogicalOr.ts, 0, 22), Decl(nonContextuallyTypedLogicalOr.ts, 5, 20))
31+
>(c || e).dummy : Symbol(Contextual.dummy, Decl(nonContextuallyTypedLogicalOr.ts, 0, 22))
3232
>c : Symbol(c, Decl(nonContextuallyTypedLogicalOr.ts, 10, 3))
3333
>e : Symbol(e, Decl(nonContextuallyTypedLogicalOr.ts, 11, 3))
34-
>dummy : Symbol(dummy, Decl(nonContextuallyTypedLogicalOr.ts, 0, 22), Decl(nonContextuallyTypedLogicalOr.ts, 5, 20))
34+
>dummy : Symbol(Contextual.dummy, Decl(nonContextuallyTypedLogicalOr.ts, 0, 22))
3535

tests/baselines/reference/nonContextuallyTypedLogicalOr.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ var e: Ellement;
2929

3030
(c || e).dummy;
3131
>(c || e).dummy : any
32-
>(c || e) : Contextual | Ellement
33-
>c || e : Contextual | Ellement
32+
>(c || e) : Contextual
33+
>c || e : Contextual
3434
>c : Contextual
3535
>e : Ellement
3636
>dummy : any

tests/baselines/reference/subtypingWithObjectMembersOptionality3.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ var b: { Foo2: Derived; }
6969
>Derived : Derived
7070

7171
var r = true ? a : b; // ok
72-
>r : { Foo?: Base; } | { Foo2: Derived; }
73-
>true ? a : b : { Foo?: Base; } | { Foo2: Derived; }
72+
>r : { Foo?: Base; }
73+
>true ? a : b : { Foo?: Base; }
7474
>true : boolean
7575
>a : { Foo?: Base; }
7676
>b : { Foo2: Derived; }

tests/baselines/reference/subtypingWithObjectMembersOptionality4.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ var b: { Foo2?: Derived; }
6969
>Derived : Derived
7070

7171
var r = true ? a : b; // ok
72-
>r : { Foo: Base; } | { Foo2?: Derived; }
73-
>true ? a : b : { Foo: Base; } | { Foo2?: Derived; }
72+
>r : { Foo2?: Derived; }
73+
>true ? a : b : { Foo2?: Derived; }
7474
>true : boolean
7575
>a : { Foo: Base; }
7676
>b : { Foo2?: Derived; }

0 commit comments

Comments
 (0)