JS: Blacklist another cyclic property

This commit is contained in:
Asger Feldthaus
2020-03-11 13:09:37 +00:00
parent e3fed39f88
commit 6645df93ad
5 changed files with 10 additions and 1 deletions

View File

@@ -134,7 +134,8 @@ function isBlacklistedProperty(k: string) {
|| k === "symbol" || k === "localSymbol"
|| k === "flowNode" || k === "returnFlowNode" || k === "endFlowNode" || k === "fallthroughFlowNode"
|| k === "nextContainer" || k === "locals"
|| k === "bindDiagnostics" || k === "bindSuggestionDiagnostics";
|| k === "bindDiagnostics" || k === "bindSuggestionDiagnostics"
|| k === "relatedInformation";
}
/**