sbt / sbt-unidoc

sbt plugin to create a unified Scaladoc or Javadoc API document across multiple subprojects.
Apache License 2.0
124 stars 27 forks source link

Tasty parsing error #156

Open jprudent opened 11 months ago

jprudent commented 11 months ago

Hello !

I get this strange error:

 [error] -- Error: :202:38 --
[error] 202 |            case one :: two :: Nil => Chunk.from(Height.Range(one.next, two).heights)
[error]     |                                      ^^^^^^^^^^
[error]     |undefined: fs2.Chunk.from # -1: TermRef(TermRef(TermRef(ThisType(TypeRef(NoPrefix,module class <root>)),object fs2),Chunk),from) at readTasty
[warn] three warnings found
[error] one error found
[error] (Scalaunidoc / doc) DottyDoc Compilation Failed

I'm running "com.github.sbt" % "sbt-unidoc" % "0.5.0" with scala version 3.3.1

Looks like it's an error specific to fs2.Chunk usage ("co.fs2" %% "fs2-core" % "3.9.3")

Code is compiling fine and running fine too.

Thanks