Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchronize language-reference-stable with 3.6.4 #22738

Merged

Conversation

WojciechMazur
Copy link
Contributor

No description provided.

Count in dcs exactly those locations where a cap gets replaced by a reach capability.
Simplify code that handles applications, avoiding adding pieces of mutable state.
The correct point to address charging reach capabilities is in markFree itself:
When a reach capability goes out of scope, and that capability is not a parameter,
we need to continue with the underlying capture set.
Drop the scheme where we only charge the last arrow of a curried lambda with
elements used in the body. On the one hand, this is unsound without compensation
measures (like, restricting to reach capabilities, or taking all capture sets
of a named curried function as the underlying reference). On the other hand, this
should be generalized to all closures and anonymous functions forming the right
hand sides of methods.
Use sets of nested methods are anyway charged on call.
This gives better error messages. Previously we thought this would
make reach capabilities unsound, but I don't see an issue with the latest
design.
With our current @use scheme, this is unsound. We leave the possibility to re-enable
as a Config option which is disabled by default and comes with a warning that enabling
it would be unsound.
Check that type parameters of methods and parent traits don't get instantiated
with types containing a `cap` anywhere in covariant or invariant position.
Also: add test that reach capabilities are contained inside boxes
We can use the dcs only if there are no type variables.
The additional purity in the asInstanceOf target is not needed
Retain only caps.unsafe.unsafeAssumePure
Don't show an `(ex$n: Exists) ->` if the bound variable
does not appear in the result. The full type will be shown under -Ycc-debug.

Also, avoid spurious ineffective mappings in widenReach.
A by-name Closure node, which is produced by phase ElimByName gets a target type to indicate
it's a contextual zero parameter closure. But for the purposes of rechecking and capture checking,
it needs to be treated like a function. In particular the type of the closure needs to be derived
from the result type of the anonymous function.

Fixes scala#21920
KacperFKorban and others added 27 commits January 13, 2025 12:50
…hen collecting them in CheckUnused (scala#22314)

Also make the wildcard selectors exclusion-aware in CheckUnused

closes scala#21420
Fixes scala#22150.
Previously, there were several ways to check if something was a Named
Tuple (`derivesFromNamedTuple`, `isNamedTupleType` and
`NamedTuple.unapply`), this PR moves everything into
`NamedTuple.unapply`. `namedTupleElementTypes` now takes an argument
`derived` that when false will skip `unapply` (to avoid infinite
recursion, used in desugaring and RefinedPrinter where trees can have
invalid cycles).
This PR creates a new Env when evaluating a by name closure, fixing a
crash due to duplicate initialization of the same value.
I found out that there is no validation happening for named patterns of
case classes.

https://scastie.scala-lang.org/W4p7RBrySwuteISEPuqSUw

There were 2 different things that blocked the errors:
1. We actually did not run `checkWellFormedTupleElems` in that scenario,
2. We run `tryAdaptPatternArgs` in `tryEither` which has nested context
that does not report errors which are not sticky.
… is valid. (scala#22366)

Review by @odersky because you seem to have been in the area recently
with named tuples:

scala@0fbdb49
…-release-assert` actions (scala#22176)

Both of these actions were archived in 2021. In the future they're going
to fail, due to deprecation of `set-output` command in GitHub actions.
We replace their usage with a single `gh release create` command. It
also allows us to simplify the workflow

[skip ci]
@WojciechMazur WojciechMazur merged commit 18fe436 into scala:language-reference-stable Mar 7, 2025
25 checks passed
@WojciechMazur WojciechMazur deleted the lrs/sync-3.6.4 branch March 7, 2025 14:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.