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
I want to disable the unreachable code detection for the condition completeness check.
functionf(n){switch(n){case0: return0;default: return1;}// comment base disabling// @unreachableassert(false);// remove by unassert tools before the releasethrownewError();}