-
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
Dealias before checking for member in lint #22708
Merged
KacperFKorban
merged 1 commit into
scala:main
from
som-snytt:issue/22705-extension-never-selected
Mar 10, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//> using options -Xfatal-warnings | ||
//> using options -Werror | ||
|
||
trait Foo[T]: | ||
extension (x: T) | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//> using options -Werror | ||
|
||
object Native { | ||
class Obj: | ||
def f: String = "F" | ||
} | ||
|
||
object Types { | ||
|
||
opaque type Node = Native.Obj | ||
|
||
type S = Node | ||
|
||
object S: | ||
def apply(): S = new Node | ||
|
||
extension (s: S) | ||
def f: String = "S" | ||
} | ||
|
||
import Types.* | ||
|
||
object Main { | ||
def main(args: Array[String]): Unit = { | ||
val v: S = S() | ||
println(v.f) | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
//> using options -Werror | ||
|
||
object Native { | ||
class O { | ||
def f: String = "F" | ||
} | ||
class M extends O | ||
} | ||
|
||
object Types { | ||
opaque type N = Native.O | ||
opaque type GS = Native.M | ||
|
||
type S = N | GS | ||
|
||
object S: | ||
def apply(): S = new N | ||
|
||
extension (s: S) | ||
def f: String = "S" | ||
} | ||
|
||
import Types.* | ||
|
||
object Main { | ||
def main(args: Array[String]): Unit = { | ||
val v: S = S() | ||
println(v.f) | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//> using options -Werror | ||
|
||
object Main { | ||
type IXY = (Int, Int) | ||
|
||
extension (xy: IXY) { | ||
def map(f: Int => Int): (Int, Int) = (f(xy._1), f(xy._2)) | ||
} | ||
|
||
def main(args: Array[String]): Unit = { | ||
val a = (0, 1) | ||
println(a) | ||
} | ||
} |
Oops, something went wrong.
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.
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.
The refactor looks correct to me. The only question is: were the
isEmpty
andlength
checks there for happy-path-optimization? I suppose that RefChecks is not a performance bottleneck, so it should be fine.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.
I almost added a code comment at the time:
paramTps.isEmpty
was checked, andcorresponds
ensures same length, so the extra length compare was only because oflazyZip
. My question was why didn't I make this edit last time I touched the code? I guess it's OK to focus on correctness first and then performance & style eventually.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.
Simple coding decisions become harder when the domain model is harder (do I need
dealias
here?stripPoly
there?) and still some mental friction in Scala 3 syntax (can I put a colon here? is this easy to read?).