@trebco/treb 28.15.1 → 28.17.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -592,10 +592,14 @@ function CollectDependencyTransformer<T extends ts.Node>(
592
592
  // must be public).
593
593
 
594
594
  if (ts.isIdentifier(node.name)) {
595
-
596
595
  if (!is_public || internal) {
597
596
  return undefined; // don't recurse
598
597
  }
598
+ }
599
+ else if (ts.isComputedPropertyName(node.name)) {
600
+
601
+ // this is probably [Symbol.iterator] -- are there other
602
+ // computed property names? should we check? (...)
599
603
 
600
604
  }
601
605
  else {