@effect/language-service 0.62.2 → 0.62.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.
@@ -5783,8 +5783,8 @@ var processType = fn(
5783
5783
  const isSame = existingType && typeChecker.isTypeAssignableTo(type, existingType) && typeChecker.isTypeAssignableTo(existingType, type);
5784
5784
  if (!isSame) {
5785
5785
  const usedCount = usedGlobalIdentifiers.get(hoistName) || 0;
5786
- hoistName = usedCount > 0 ? hoistName + "_" + usedCount : hoistName;
5787
5786
  usedGlobalIdentifiers.set(hoistName, usedCount + 1);
5787
+ hoistName = usedCount > 0 ? hoistName + "_" + usedCount : hoistName;
5788
5788
  }
5789
5789
  }
5790
5790
  }