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

tethys.derivation.impl.builder.ReaderDescriptionMacro.scala Maven / Gradle / Ivy

There is a newer version: 0.29.1
Show newest version
package tethys.derivation.impl.builder

import tethys.derivation.builder.{ReaderBuilder, ReaderDescription}

import scala.reflect.macros.blackbox

class ReaderDescriptionMacro(val c: blackbox.Context) extends ReaderDescriptionCommons {
  import c.universe._

  def readerDescription[A: WeakTypeTag](builder: Expr[ReaderBuilder[A]]): Expr[ReaderDescription[A]] = {
    convertReaderBuilder[A](builder)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy