
scala.reflect.internal.transform.RefChecks.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-reflect Show documentation
Show all versions of scala-reflect Show documentation
Compiler for the SubScript extension of the Scala Programming Language
The newest version!
package scala
package reflect
package internal
package transform
trait RefChecks {
val global: SymbolTable
import global._
def transformInfo(sym: Symbol, tp: Type): Type =
if (sym.isModule && !sym.isStatic) NullaryMethodType(tp)
else tp
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy