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
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* method
|
|
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
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
* method
|
|
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