You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/baselines/reference/crashInGetTextOfComputedPropertyName.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ typeof itemOk1; // pass
41
41
varobjWithItems={items: {}};
42
42
varitemOk2=objWithItems.items[itemId];
43
43
typeofitemOk2;// pass
44
-
var_c=objWithItems,_d=_c.items/*happens when default value is provided*/,_e=itemId,itemWithTSError=(_d===void0 ? {}/*happens when default value is provided*/ : _d)[_e];
44
+
var_c=objWithItems,_d=_c.items/*happens when default value is provided*/,_e=_d===void0 ? {}: _d/*happens when default value is provided*/,_f=itemId,itemWithTSError=_e[_f];
45
45
// in order to re-produce the error, uncomment next line:
0 commit comments