We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 079266d commit ecc632bCopy full SHA for ecc632b
library/src/scala/tasty/Reflection.scala
@@ -2,7 +2,7 @@ package scala.tasty
2
3
import scala.tasty.reflect._
4
5
-class Reflection(val internal: Internal)
+class Reflection(private[scala] val internal: Internal)
6
extends Core
7
with ConstantOps
8
with ContextOps
library/src/scala/tasty/reflect/Core.scala
@@ -120,7 +120,7 @@ package scala.tasty.reflect
120
*/
121
trait Core {
122
123
- val internal: Internal
+ private[scala] val internal: Internal
124
125
/** Compilation context */
126
type Context = internal.Context
0 commit comments