aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t8192/Test_2.scala
blob: dec90ab6616f68765ca19f9c59ccce1b478e9684 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import java.io._
import scala.reflect.runtime.universe._
import scala.reflect.runtime.{universe => ru}

class C(x: Int) {
  def this(x: String) = this(x.toInt)
}

object Test extends dotty.runtime.LegacyApp {
  def test(sym: ClassSymbol): Unit = {
    def fullyInitializeSymbol(sym: Symbol): Unit = {
      val internal = ru.asInstanceOf[scala.reflect.internal.SymbolTable]
      internal.definitions.fullyInitializeSymbol(sym.asInstanceOf[internal.Symbol])
    }
    def defString(sym: Symbol): String = {
      val internal = ru.asInstanceOf[scala.reflect.internal.SymbolTable]
      sym.asInstanceOf[internal.Symbol].defString
    }
    def showCtor(sym: Symbol): String = {
      fullyInitializeSymbol(sym)
      if (sym == NoSymbol) "NoSymbol"
      else s"${defString(sym)} => ${sym.asMethod.isPrimaryConstructor}"
    }
    sym.info
    println(sym.toString)
    println(s"primary constructor: ${showCtor(sym.primaryConstructor)}")
    val ctors = sym.info.members.filter(_.name == termNames.CONSTRUCTOR).map(sym => showCtor(sym))
    ctors.toList.sorted.foreach(println)
  }

  Macros.foo
  println("runtime")
  // SI-8367 primaryConstructor for Java-defined classes is unstable, so I'm commenting this out
  // test(typeOf[File].typeSymbol.asClass)
  test(definitions.ScalaPackageClass)
  test(definitions.ListModule.moduleClass.asClass)
  test(typeOf[Product1[_]].typeSymbol.asClass)
  test(typeOf[UninitializedFieldError].typeSymbol.asClass)
  test(typeOf[C].typeSymbol.asClass)
}