Skip to content

Commit 29be461

Browse files
authored
Merge pull request #2576 from asger-semmle/typescript-cyclic-prop-fallthroughnode
Approved by max-schaefer
2 parents 06d812a + bcf1533 commit 29be461

File tree

1 file changed

+1
-1
lines changed
  • javascript/extractor/lib/typescript/src

1 file changed

+1
-1
lines changed

javascript/extractor/lib/typescript/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function checkCycle(root: any) {
126126
function isBlacklistedProperty(k: string) {
127127
return k === "parent" || k === "pos" || k === "end"
128128
|| k === "symbol" || k === "localSymbol"
129-
|| k === "flowNode" || k === "returnFlowNode" || k === "endFlowNode"
129+
|| k === "flowNode" || k === "returnFlowNode" || k === "endFlowNode" || k === "fallthroughFlowNode"
130130
|| k === "nextContainer" || k === "locals"
131131
|| k === "bindDiagnostics" || k === "bindSuggestionDiagnostics";
132132
}

0 commit comments

Comments
 (0)