We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a1b7d4 commit ddab13aCopy full SHA for ddab13a
1 file changed
javascript/extractor/lib/typescript/src/main.ts
@@ -107,6 +107,7 @@ function checkCycle(root: any) {
107
obj.$cycle_visiting = true;
108
for (let k in obj) {
109
if (!obj.hasOwnProperty(k)) continue;
110
+ // Ignore numeric and whitelisted properties.
111
if (+k !== +k && !astPropertySet.has(k)) continue;
112
if (k === "$cycle_visiting") continue;
113
let cycle = visit(obj[k]);
0 commit comments