diff --git a/project/Build.scala b/project/Build.scala index 80dfe241af5f..3638ca7fef51 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -353,6 +353,8 @@ object Build { // Reflect doesn't expect to see it as a standalone definition // and therefore it's easier just not to document it "-skip-by-id:scala.runtime.MatchCase", + "-skip-by-id:dotty.tools.tasty", + "-skip-by-id:dotty.tools.tasty.util", "-project-footer", s"Copyright (c) 2002-$currentYear, LAMP/EPFL", "-author", "-groups", @@ -1978,7 +1980,9 @@ object ScaladocConfigs { def skipByRegex = SkipByRegex(List(".+\\.internal($|\\..+)", ".+\\.impl($|\\..+)")) def skipById = SkipById(List( "scala.runtime.stdLibPatches", - "scala.runtime.MatchCase" + "scala.runtime.MatchCase", + "dotty.tools.tasty", + "dotty.tools.tasty.util", )) def projectFooter = ProjectFooter(s"Copyright (c) 2002-$currentYear, LAMP/EPFL") def defaultTemplate = DefaultTemplate("static-site-main")