Skip to content

Commit b603b36

Browse files
committed
Update baselines
1 parent a560547 commit b603b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/baselines/reference/assertionTypePredicates2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ exports.main = void 0;
3737
* @param {A} a
3838
* @returns { asserts a is B }
3939
*/
40-
var foo = function (a) {
40+
var foo = function foo(a) {
4141
if ( /** @type { B } */(a).y !== 0)
4242
throw TypeError();
4343
return undefined;
4444
};
45-
var main = function () {
45+
var main = function main() {
4646
/** @type { A } */
4747
var a = { x: 1 };
4848
foo(a);

0 commit comments

Comments
 (0)