tntim96 / JSCover

JSCover is a JavaScript Code Coverage Tool that measures line, branch and function coverage
GNU General Public License v2.0
399 stars 84 forks source link

Missing instrumentation in a 'if' in 'case' statement #241

Closed tntim96 closed 7 years ago

tntim96 commented 7 years ago

Same code

switch (x) {
    case 10:
        if (a) {
            x++;
        }
}