Skip to content

Commit f0a977a

Browse files
authored
Backport "Hide dotty.tools.tasty in api docs" to LTS (#19049)
Backports #18076 to the LTS branch. PR submitted by the release tooling. [skip ci]
2 parents a8759e6 + 08d25e1 commit f0a977a

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
@@ -351,6 +351,8 @@ object Build {
351351
// Reflect doesn't expect to see it as a standalone definition
352352
// and therefore it's easier just not to document it
353353
"-skip-by-id:scala.runtime.MatchCase",
354+
"-skip-by-id:dotty.tools.tasty",
355+
"-skip-by-id:dotty.tools.tasty.util",
354356
"-project-footer", s"Copyright (c) 2002-$currentYear, LAMP/EPFL",
355357
"-author",
356358
"-groups",
@@ -1917,7 +1919,9 @@ object ScaladocConfigs {
19171919
def skipByRegex = SkipByRegex(List(".+\\.internal($|\\..+)", ".+\\.impl($|\\..+)"))
19181920
def skipById = SkipById(List(
19191921
"scala.runtime.stdLibPatches",
1920-
"scala.runtime.MatchCase"
1922+
"scala.runtime.MatchCase",
1923+
"dotty.tools.tasty",
1924+
"dotty.tools.tasty.util",
19211925
))
19221926
def projectFooter = ProjectFooter(s"Copyright (c) 2002-$currentYear, LAMP/EPFL")
19231927
def defaultTemplate = DefaultTemplate("static-site-main")

0 commit comments

Comments
 (0)