All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ghik.silencer.SilencerPluginCompat.scala Maven / Gradle / Ivy

The newest version!
package com.github.ghik.silencer

trait SilencerPluginCompat { this: SilencerPlugin =>
  import global._

  protected object MaybeNamedArg {
    def unapply(tree: Tree): OptRef[Tree] = tree match {
      case AssignOrNamedArg(_, rhs) => OptRef(rhs)
      case _ => OptRef(tree)
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy