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 97512ca commit 7cdb761Copy full SHA for 7cdb761
compiler/src/dotty/tools/dotc/core/Definitions.scala
@@ -226,7 +226,9 @@ class Definitions {
226
@tu lazy val CompiletimePackageObject: Symbol = {
227
val x = requiredModule("scala.compiletime.package")
228
if (x.info.decls.toList.isEmpty) {
229
+ println("classpath: " + ctx.platform.classPath)
230
println("pkg: " + x)
231
+ println("x.owner.owner: " + x.owner.owner + " " + x.owner.owner.info + " " + x.owner.owner.info.decls.toList)
232
println("x.owner: " + x.owner.is(PackageClass) + " " + x.owner + " " + x.owner.info + " " + x.owner.info.decls.toList)
233
val member = x.owner.info.member("package".toTermName)
234
println("member: " + member + " " + member.info + " " + member.info.decls.toList)
0 commit comments