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

Allow for using explicit copy methods in classes #236

Merged
merged 2 commits into from
Sep 2, 2024
Merged

Allow for using explicit copy methods in classes #236

merged 2 commits into from
Sep 2, 2024

Conversation

KacperFKorban
Copy link
Collaborator

fixes part of #234

@KacperFKorban KacperFKorban marked this pull request as ready for review August 12, 2024 13:18
@adamw adamw merged commit 8d0e135 into master Sep 2, 2024
5 checks passed
@adamw
Copy link
Member

adamw commented Sep 2, 2024

Thanks :)

@mergify mergify bot deleted the i234 branch September 2, 2024 09:51
@adamw
Copy link
Member

adamw commented Sep 17, 2024

@KacperFKorban I'm getting the following error in tapir after updating:

[error] -- Error: /Users/adamw/projects/tapir/docs/openapi-docs/src/test/scalajvm/sttp/tapir/docs/openapi/VerifyYamlTest.scala:847:15
[error] 847 |    docs.modify(_.paths.pathItems)
[error]     |    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[error]     |Unsupported source object: must be a case class or sealed trait, but got: val <none>

Followed by a compiler crash:

[error] ## Exception when compiling 20 sources to /Users/adamw/projects/tapir/docs/openapi-docs/target/jvm-3/test-classes
[error] java.lang.AssertionError: assertion failed
[error] scala.runtime.Scala3RunTime$.assertFailed(Scala3RunTime.scala:11)
[error] dotty.tools.dotc.typer.Typer.typedDefDef(Typer.scala:2439)
[error] dotty.tools.dotc.typer.Typer.typedNamed$1(Typer.scala:3026)
[error] dotty.tools.dotc.typer.Typer.typedUnadapted(Typer.scala:3114)
[error] dotty.tools.dotc.typer.ReTyper.typedUnadapted(ReTyper.scala:153)
[error] dotty.tools.dotc.inlines.Inliner$InlineTyper.typedUnadapted(Inliner.scala:915)
[error] dotty.tools.dotc.typer.Typer.typed(Typer.scala:3187)
[error] dotty.tools.dotc.typer.Typer.typed(Typer.scala:3191)
[error] dotty.tools.dotc.typer.Typer.traverse$1(Typer.scala:3213)
[error] dotty.tools.dotc.typer.Typer.typedStats(Typer.scala:3259)
[error] dotty.tools.dotc.typer.Typer.typedBlockStats(Typer.scala:1161)
[error] dotty.tools.dotc.typer.Typer.typedBlock(Typer.scala:1165)
[error] dotty.tools.dotc.typer.Typer.typedUnnamed$1(Typer.scala:3058)
[error] dotty.tools.dotc.typer.Typer.typedUnadapted(Typer.scala:3115)
[error] dotty.tools.dotc.typer.ReTyper.typedUnadapted(ReTyper.scala:153)
[error] dotty.tools.dotc.inlines.Inliner$InlineTyper.typedUnadapted(Inliner.scala:915)
(...)

The definition of .pathItems doesn't look extraordinary:

final case class Paths(
    pathItems: ListMap[String, PathItem] = ListMap.empty,
    extensions: ListMap[String, ExtensionValue] = ListMap.empty
)

Do you maybe have any ideas what could be the cause?

@KacperFKorban
Copy link
Collaborator Author

@adamw I'll take a look. quicklens uses named accessors now instead of the copy$default methods, so there might be a bug in there.

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.

2 participants