@effect/language-service 0.62.1 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect/language-service",
3
- "version": "0.62.1",
3
+ "version": "0.62.3",
4
4
  "description": "A Language-Service Plugin to Refactor and Diagnostic effect-ts projects",
5
5
  "main": "index.cjs",
6
6
  "bin": {
package/transform.js CHANGED
@@ -5779,6 +5779,7 @@ var processType = fn(
5779
5779
  const isSame = existingType && typeChecker.isTypeAssignableTo(type, existingType) && typeChecker.isTypeAssignableTo(existingType, type);
5780
5780
  if (!isSame) {
5781
5781
  const usedCount = usedGlobalIdentifiers.get(hoistName) || 0;
5782
+ usedGlobalIdentifiers.set(hoistName, usedCount + 1);
5782
5783
  hoistName = usedCount > 0 ? hoistName + "_" + usedCount : hoistName;
5783
5784
  }
5784
5785
  }