-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
base: main
Are you sure you want to change the base?
Conversation
`cap` is now a soft modifier and we abolish separate cap lists.
Neg test use-capset revealed that type param clauses are incorrectly parsed when a capset parameter has an annotation.
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. |
There was a problem hiding this 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) |
There was a problem hiding this comment.
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^, |
There was a problem hiding this comment.
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 = { |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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
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.
syntax.md
.Add specialized syntax error messages for cap lists & co.(make separate issue)[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)