Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not truncate after switch-statement with removed case #3241

Merged
merged 1 commit into from Nov 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/ast/nodes/SwitchStatement.ts
Expand Up @@ -65,6 +65,8 @@ export default class SwitchStatement extends StatementBase {
switchCase.include(context, includeChildrenRecursively);
minBrokenFlow = minBrokenFlow < context.brokenFlow ? minBrokenFlow : context.brokenFlow;
context.brokenFlow = brokenFlow;
} else {
minBrokenFlow = brokenFlow;
}
}
if (
Expand Down
@@ -0,0 +1,3 @@
module.exports = {
description: 'does not remove code after a switch statement that should be retained'
};
10 changes: 10 additions & 0 deletions test/function/samples/switch-statements-removed-default/main.js
@@ -0,0 +1,10 @@
function performSwitch(value) {
switch (value) {
case 'foo':
return false;
default:
}
return true;
}

assert.ok(performSwitch('baz'));