From 08d25e19e2bed7ff8815ac77971e8cd1e0a71b28 Mon Sep 17 00:00:00 2001 From: Florian3k Date: Tue, 27 Jun 2023 13:49:19 +0200 Subject: [PATCH] Hide dotty.tools.tasty in api docs [Cherry-picked f1023103192766d0f0bfedadf6e75f727e12abe4] --- project/Build.scala | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/project/Build.scala b/project/Build.scala index e950459eb9e0..49ec5816814c 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -351,6 +351,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", @@ -1917,7 +1919,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")