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

New Syntax for Capture Variables and Explicit Capture Polymorphism v2 #22902

Open
wants to merge 11 commits into
base: main
Choose a base branch
from

Conversation

bracevac
Copy link
Contributor

@bracevac bracevac commented Apr 1, 2025

Closes #22490
Builds on #22725
Supersedes #22758

This aim of this PR is reducing the clunkyness of the explicit capture polymorphism syntax following internal discussions.

  • Nice to have: partial applications and compatibility with named type arguments
import language.experimental.namedTypeArguments
foo[{a,b}]
foo[cap D = {x}]
  • Rebase on Separation checking for product types #22539 and patch all tests.
  • Document the parser changes for capture checking in the internal syntax.md.
  • Add specialized syntax error messages for cap lists & co. (make separate issue)
  • Remove the old [C^] syntax for good.
  • Make cap members and lists pretty-printed (with option to turn off). (separate issue, let's wait for under-the-hood changes to the capset representation)
  • Let parser mark capture variables with some attachment to be used by later phases.

Neg test use-capset revealed that type param
clauses are incorrectly parsed when a capset
parameter has an annotation.
@bracevac bracevac requested a review from noti0na1 April 1, 2025 17:35
@bracevac bracevac marked this pull request as ready for review April 2, 2025 13:46
@bracevac bracevac requested a review from odersky April 2, 2025 13:46
@odersky
Copy link
Contributor

odersky commented Apr 2, 2025

I think it would be good to open a thread on contributors to discuss the new syntax. That way, p[eople can weigh in with opinions and proposals.

Copy link
Member

@noti0na1 noti0na1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall LGTM

@@ -1917,6 +1917,23 @@ class ExpectedTypeBoundOrEquals(found: Token)(using Context)
|"""
}

class ExpectedCaptureBoundOrEquals(found: Token)(using Context)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need some check tests for the error message.

@@ -8,37 +8,37 @@ trait BoundsTest:

val b: Bar^ = ???

def testTransMixed[A^,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can add a test where the bound of a type parameter depends on the capture parameters in the same list.

@@ -2283,6 +2325,15 @@ object Parsers {
else atSpan((t.span union cbs.head.span).start) { ContextBounds(t, cbs) }
}

/** CaptureSetAndCtxBounds ::= CaptureSetBounds [`:` ContextBounds] -- under captureChecking
*/
def captureSetAndCtxBounds(pname: TypeName): Tree = {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add a test for capture param with ctx bound.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's already in pos test cap-paramlists7.scala

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.

CC: Better End-User Syntax for Declaring and Mentioning Capture Variables
3 participants