Merge pull request #18 from sbt/wip/fileinfo

Adds picklers to FileInfo, also new house rules
This commit is contained in:
eugene yokota 2015-09-25 17:34:19 -04:00
commit 81d46d365d
1 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,9 @@ object Instance {
* this should be the argument wrapped in Right.
*/
def contImpl[T, N[_]](c: Context, i: Instance with Singleton, convert: Convert, builder: TupleBuilder)(t: Either[c.Expr[T], c.Expr[i.M[T]]], inner: Transform[c.type, N])(
implicit tt: c.WeakTypeTag[T], nt: c.WeakTypeTag[N[T]], it: c.TypeTag[i.type]): c.Expr[i.M[N[T]]] =
implicit
tt: c.WeakTypeTag[T], nt: c.WeakTypeTag[N[T]], it: c.TypeTag[i.type]
): c.Expr[i.M[N[T]]] =
{
import c.universe.{ Apply => ApplyTree, _ }