We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b67add commit 360dc47Copy full SHA for 360dc47
src/control-flow/cfg-c.ts
@@ -233,15 +233,6 @@ export class CFGBuilder {
233
"CASE_CONDITION",
234
isDefault ? "default" : (caseSyntax.firstNamedChild?.text ?? ""),
235
);
236
- // let consequenceBlock;
237
- // if (consequence.length) {
238
- // consequenceBlock = blockHandler.update(
239
- // this.processStatements(consequence),
240
- // );
241
- // } else {
242
- // const consequenceNode = this.addNode("EMPTY", "empty case body");
243
- // consequenceBlock = { entry: consequenceNode, exit: consequenceNode };
244
- // }
245
246
const consequenceBlock = blockHandler.update(
247
this.processStatements(consequence),
0 commit comments