From acd7f81d0e40c1746681fed415f52c962de7c025 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Tue, 15 May 2018 12:24:11 -0700 Subject: [PATCH] Accept new baselines Baselines print worse because 2.8 is missing improvements in type printing and symbol structure. --- .../jsContainerMergeJsContainer.types | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/baselines/reference/jsContainerMergeJsContainer.types b/tests/baselines/reference/jsContainerMergeJsContainer.types index fa5c74f5b05..6449e832efa 100644 --- a/tests/baselines/reference/jsContainerMergeJsContainer.types +++ b/tests/baselines/reference/jsContainerMergeJsContainer.types @@ -1,23 +1,23 @@ === tests/cases/conformance/salsa/a.js === // #24131 const a = {}; ->a : { [x: string]: any; d: typeof d; } ->{} : { [x: string]: any; d: typeof d; } +>a : { [x: string]: any; d: typeof (Anonymous function); } +>{} : { [x: string]: any; d: typeof (Anonymous function); } a.d = function() {}; ->a.d = function() {} : typeof d ->a.d : typeof d ->a : { [x: string]: any; d: typeof d; } ->d : typeof d ->function() {} : typeof d +>a.d = function() {} : typeof (Anonymous function) +>a.d : typeof (Anonymous function) +>a : { [x: string]: any; d: typeof (Anonymous function); } +>d : typeof (Anonymous function) +>function() {} : typeof (Anonymous function) === tests/cases/conformance/salsa/b.js === a.d.prototype = {}; >a.d.prototype = {} : { [x: string]: any; } >a.d.prototype : { [x: string]: any; } ->a.d : typeof d ->a : { [x: string]: any; d: typeof d; } ->d : typeof d +>a.d : typeof (Anonymous function) +>a : { [x: string]: any; d: typeof (Anonymous function); } +>d : typeof (Anonymous function) >prototype : { [x: string]: any; } >{} : { [x: string]: any; }