Skip to content

Commit 76505f8

Browse files
Hide dotty.tools.tasty in api docs (#18076)
Fixes #18026
2 parents afe463f + f102310 commit 76505f8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

project/Build.scala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,8 @@ object Build {
353353
// Reflect doesn't expect to see it as a standalone definition
354354
// and therefore it's easier just not to document it
355355
"-skip-by-id:scala.runtime.MatchCase",
356+
"-skip-by-id:dotty.tools.tasty",
357+
"-skip-by-id:dotty.tools.tasty.util",
356358
"-project-footer", s"Copyright (c) 2002-$currentYear, LAMP/EPFL",
357359
"-author",
358360
"-groups",
@@ -1978,7 +1980,9 @@ object ScaladocConfigs {
19781980
def skipByRegex = SkipByRegex(List(".+\\.internal($|\\..+)", ".+\\.impl($|\\..+)"))
19791981
def skipById = SkipById(List(
19801982
"scala.runtime.stdLibPatches",
1981-
"scala.runtime.MatchCase"
1983+
"scala.runtime.MatchCase",
1984+
"dotty.tools.tasty",
1985+
"dotty.tools.tasty.util",
19821986
))
19831987
def projectFooter = ProjectFooter(s"Copyright (c) 2002-$currentYear, LAMP/EPFL")
19841988
def defaultTemplate = DefaultTemplate("static-site-main")

0 commit comments

Comments
 (0)