Skip to content

Commit c0c6001

Browse files
committed
fix mission baseline
1 parent 11bed44 commit c0c6001

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/baselines/reference/nullishCoalescingOperator1.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ else {
6767

6868
//// [nullishCoalescingOperator1.js]
6969
"use strict";
70-
var _a;
7170
var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever';
7271
var aa2 = a2 !== null && a2 !== void 0 ? a2 : 'whatever';
7372
var aa3 = a3 !== null && a3 !== void 0 ? a3 : 'whatever';
@@ -94,7 +93,7 @@ if (maybeBool !== null && maybeBool !== void 0 ? maybeBool : true) {
9493
else {
9594
foo();
9695
}
97-
if ((_a = false) !== null && _a !== void 0 ? _a : true) {
96+
if (false !== null && false !== void 0 ? false : true) {
9897
foo();
9998
}
10099
else {

0 commit comments

Comments
 (0)