Skip to content

Commit 9f4fa00

Browse files
committed
fix: files to apply snippet compiler
1 parent 816e4f5 commit 9f4fa00

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

project/Build.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2360,6 +2360,7 @@ object ScaladocConfigs {
23602360
.add(DocumentSyntheticTypes(true))
23612361
.add(SnippetCompiler(List(
23622362
s"$dottyLibRoot/src/scala=compile",
2363+
s"$dottyLibRoot/src/scala/quoted=compile",
23632364
s"$dottyLibRoot/src/scala/compiletime=compile",
23642365
s"$dottyLibRoot/src/scala/util=compile",
23652366
s"$dottyLibRoot/src/scala/util/control=compile",
@@ -2378,10 +2379,12 @@ object ScaladocConfigs {
23782379
.add(ProjectVersion(version))
23792380
.add(SnippetCompiler(
23802381
List(
2382+
s"$dottyLibrarySrc/scala=compile",
23812383
s"$dottyLibrarySrc/scala/quoted=compile",
23822384
s"$dottyLibrarySrc/scala/compiletime=compile",
23832385
s"$dottyLibrarySrc/scala/util=compile",
2384-
s"$dottyLibrarySrc/scala/util/control=compile"
2386+
s"$dottyLibrarySrc/scala/util/control=compile",
2387+
"docs/_docs/reference/enums=compile"
23852388
)
23862389
))
23872390
.add(CommentSyntax(List(

0 commit comments

Comments
 (0)