Skip to content

Commit acd7f81

Browse files
committed
Accept new baselines
Baselines print worse because 2.8 is missing improvements in type printing and symbol structure.
1 parent 2d7efb3 commit acd7f81

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
=== tests/cases/conformance/salsa/a.js ===
22
// #24131
33
const a = {};
4-
>a : { [x: string]: any; d: typeof d; }
5-
>{} : { [x: string]: any; d: typeof d; }
4+
>a : { [x: string]: any; d: typeof (Anonymous function); }
5+
>{} : { [x: string]: any; d: typeof (Anonymous function); }
66

77
a.d = function() {};
8-
>a.d = function() {} : typeof d
9-
>a.d : typeof d
10-
>a : { [x: string]: any; d: typeof d; }
11-
>d : typeof d
12-
>function() {} : typeof d
8+
>a.d = function() {} : typeof (Anonymous function)
9+
>a.d : typeof (Anonymous function)
10+
>a : { [x: string]: any; d: typeof (Anonymous function); }
11+
>d : typeof (Anonymous function)
12+
>function() {} : typeof (Anonymous function)
1313

1414
=== tests/cases/conformance/salsa/b.js ===
1515
a.d.prototype = {};
1616
>a.d.prototype = {} : { [x: string]: any; }
1717
>a.d.prototype : { [x: string]: any; }
18-
>a.d : typeof d
19-
>a : { [x: string]: any; d: typeof d; }
20-
>d : typeof d
18+
>a.d : typeof (Anonymous function)
19+
>a : { [x: string]: any; d: typeof (Anonymous function); }
20+
>d : typeof (Anonymous function)
2121
>prototype : { [x: string]: any; }
2222
>{} : { [x: string]: any; }
2323

0 commit comments

Comments
 (0)