@effect/language-service 0.62.2 → 0.62.3

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.
package/cli.js CHANGED
@@ -33647,8 +33647,8 @@ var processType = fn2(
33647
33647
  const isSame = existingType && typeChecker.isTypeAssignableTo(type2, existingType) && typeChecker.isTypeAssignableTo(existingType, type2);
33648
33648
  if (!isSame) {
33649
33649
  const usedCount = usedGlobalIdentifiers.get(hoistName) || 0;
33650
- hoistName = usedCount > 0 ? hoistName + "_" + usedCount : hoistName;
33651
33650
  usedGlobalIdentifiers.set(hoistName, usedCount + 1);
33651
+ hoistName = usedCount > 0 ? hoistName + "_" + usedCount : hoistName;
33652
33652
  }
33653
33653
  }
33654
33654
  }