Skip to content

Commit 0dee5ad

Browse files
committedApr 22, 2016
Accepting new baselines
1 parent 42e3fc4 commit 0dee5ad

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎tests/baselines/reference/stringLiteralTypesAsTags01.types

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ if (hasKind(x, "A")) {
9999
}
100100
else {
101101
let b = x;
102-
>b : {}
103-
>x : {}
102+
>b : A
103+
>x : A
104104
}
105105

106106
if (!hasKind(x, "B")) {

‎tests/baselines/reference/stringLiteralTypesAsTags02.types

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ if (hasKind(x, "A")) {
9393
}
9494
else {
9595
let b = x;
96-
>b : {}
97-
>x : {}
96+
>b : A
97+
>x : A
9898
}
9999

100100
if (!hasKind(x, "B")) {

‎tests/baselines/reference/stringLiteralTypesAsTags03.types

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ if (hasKind(x, "A")) {
9696
}
9797
else {
9898
let b = x;
99-
>b : {}
100-
>x : {}
99+
>b : A
100+
>x : A
101101
}
102102

103103
if (!hasKind(x, "B")) {

0 commit comments

Comments
 (0)
Please sign in to comment.