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; }