gitnexus 1.6.6-rc.40 → 1.6.6-rc.41

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.
@@ -5,13 +5,25 @@ import type { ScopeResolver } from '../../scope-resolution/contract/scope-resolv
5
5
  * Kotlin is intentionally registered but not yet listed in
6
6
  * `MIGRATED_LANGUAGES`, matching the Java migration pattern from #1482:
7
7
  * the resolver can run in shadow/forced mode, while production default
8
- * stays on the legacy DAG until registry-primary parity reaches the
9
- * RFC threshold. Forced mode currently passes 154/175 fixtures (88%),
10
- * including core import, receiver, companion, default-param, vararg,
11
- * constructor, local assignment-chain, and collection-iteration fixtures.
12
- * Remaining gaps are advanced TypeEnv behaviors such as smart casts,
13
- * cross-file iterable return propagation, method-chain fixpoint cases,
14
- * overload target-id selection, virtual dispatch, and interface default
15
- * method dispatch.
8
+ * stays on the legacy DAG until the RFC flip criteria in #1746 are met.
9
+ *
10
+ * **Forced-mode parity (`REGISTRY_PRIMARY_KOTLIN=1`):** 175/175 fixtures
11
+ * after the migration sub-issues #1758–#1763 closed. Covers core
12
+ * import, receiver, companion, default-param, vararg, constructor,
13
+ * local assignment-chain, collection-iteration, smart casts
14
+ * (`when (x) { is T -> … }` and `if (x is T)` — #1758), cross-file
15
+ * iterable return propagation (#1759), single-level method-chain
16
+ * fixpoint receiver types (#1760), parameter-type-narrowed overload
17
+ * target-id selection (#1761), virtual dispatch via constructor RHS
18
+ * (`val x: Animal = Dog()` — #1762), and interface default-method
19
+ * dispatch via implements-split MRO (#1763).
20
+ *
21
+ * **Remaining pre-flip blockers (#1746):** #1755 (forced-mode preview
22
+ * CI workflow — obviated once Kotlin lands in `MIGRATED_LANGUAGES`
23
+ * because the existing scope-parity matrix auto-discovers it), #1756
24
+ * (companion vs instance member dispatch), and #1757 (lambda scopes
25
+ * and lambda-parameter bindings). The flip PR adds
26
+ * `SupportedLanguages.Kotlin` to `MIGRATED_LANGUAGES` after the named
27
+ * blockers close.
16
28
  */
17
29
  export declare const kotlinScopeResolver: ScopeResolver;
@@ -10,14 +10,26 @@ import { kotlinArityCompatibility, kotlinMergeBindings, populateKotlinOwners, re
10
10
  * Kotlin is intentionally registered but not yet listed in
11
11
  * `MIGRATED_LANGUAGES`, matching the Java migration pattern from #1482:
12
12
  * the resolver can run in shadow/forced mode, while production default
13
- * stays on the legacy DAG until registry-primary parity reaches the
14
- * RFC threshold. Forced mode currently passes 154/175 fixtures (88%),
15
- * including core import, receiver, companion, default-param, vararg,
16
- * constructor, local assignment-chain, and collection-iteration fixtures.
17
- * Remaining gaps are advanced TypeEnv behaviors such as smart casts,
18
- * cross-file iterable return propagation, method-chain fixpoint cases,
19
- * overload target-id selection, virtual dispatch, and interface default
20
- * method dispatch.
13
+ * stays on the legacy DAG until the RFC flip criteria in #1746 are met.
14
+ *
15
+ * **Forced-mode parity (`REGISTRY_PRIMARY_KOTLIN=1`):** 175/175 fixtures
16
+ * after the migration sub-issues #1758–#1763 closed. Covers core
17
+ * import, receiver, companion, default-param, vararg, constructor,
18
+ * local assignment-chain, collection-iteration, smart casts
19
+ * (`when (x) { is T -> … }` and `if (x is T)` — #1758), cross-file
20
+ * iterable return propagation (#1759), single-level method-chain
21
+ * fixpoint receiver types (#1760), parameter-type-narrowed overload
22
+ * target-id selection (#1761), virtual dispatch via constructor RHS
23
+ * (`val x: Animal = Dog()` — #1762), and interface default-method
24
+ * dispatch via implements-split MRO (#1763).
25
+ *
26
+ * **Remaining pre-flip blockers (#1746):** #1755 (forced-mode preview
27
+ * CI workflow — obviated once Kotlin lands in `MIGRATED_LANGUAGES`
28
+ * because the existing scope-parity matrix auto-discovers it), #1756
29
+ * (companion vs instance member dispatch), and #1757 (lambda scopes
30
+ * and lambda-parameter bindings). The flip PR adds
31
+ * `SupportedLanguages.Kotlin` to `MIGRATED_LANGUAGES` after the named
32
+ * blockers close.
21
33
  */
22
34
  export const kotlinScopeResolver = {
23
35
  language: SupportedLanguages.Kotlin,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitnexus",
3
- "version": "1.6.6-rc.40",
3
+ "version": "1.6.6-rc.41",
4
4
  "description": "Graph-powered code intelligence for AI agents. Index any codebase, query via MCP or CLI.",
5
5
  "author": "Abhigyan Patwari",
6
6
  "license": "PolyForm-Noncommercial-1.0.0",