TS: Blacklist another cyclic property

This commit is contained in:
Asger F
2019-10-30 15:45:06 +00:00
parent 7dfd4e0687
commit 4846e53a10

View File

@@ -126,7 +126,7 @@ function checkCycle(root: any) {
function isBlacklistedProperty(k: string) {
return k === "parent" || k === "pos" || k === "end"
|| k === "symbol" || k === "localSymbol"
|| k === "flowNode" || k === "returnFlowNode"
|| k === "flowNode" || k === "returnFlowNode" || k === "endFlowNode"
|| k === "nextContainer" || k === "locals"
|| k === "bindDiagnostics" || k === "bindSuggestionDiagnostics";
}