Support writing & instead of with in types under -Xsource:3#9594
Merged
lrytz merged 1 commit intoscala:2.13.xfrom Apr 27, 2021
Merged
Support writing & instead of with in types under -Xsource:3#9594lrytz merged 1 commit intoscala:2.13.xfrom
& instead of with in types under -Xsource:3#9594lrytz merged 1 commit intoscala:2.13.xfrom
Conversation
Instead of:
val x: A with B = new A with B {}
One can now write:
val x: A & B = new A with B {}
However mixing `&` with other infix operators is not allowed, because
unlike Scala 3, we do not take operator precedence into account, cf scala#6147.
This implementation is a bit more restrictive than the Scala 3 one which
allows shadowing the built-in `&` with your own `&` type operator, but
this cannot be done with the simple parser-based approach of this PR.
Member
Author
|
(this is the last -Xsource:3 PR I plan to make, or at least I can't think of anything else to port at the moment :)) |
lrytz
approved these changes
Apr 27, 2021
Member
lrytz
left a comment
There was a problem hiding this comment.
this is the last -Xsource:3 PR I plan to make
Too bad, I was going to say keep them coming :-) Thanks a lot.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Instead of:
One can now write:
However mixing
&with other infix operators is not allowed, becauseunlike Scala 3, we do not take operator precedence into account, cf #6147.
This implementation is a bit more restrictive than the Scala 3 one which
allows shadowing the built-in
&with your own&type operator, butthis cannot be done with the simple parser-based approach of this PR.