-
-
Save lildata/4781b5c8e30e7876ff71 to your computer and use it in GitHub Desktop.
Get companion object instance with new Scala reflection API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait ReflectionSugars{ | |
import scala.reflect.runtime.{universe => ru} | |
private lazy val universeMirror = ru.runtimeMirror(getClass.getClassLoader) | |
def companionOf[T](implicit tt: ru.TypeTag[T]) = { | |
val companionMirror = universeMirror.reflectModule(ru.typeOf[T].typeSymbol.companionSymbol.asModule) | |
companionMirror.instance | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment