@@ -445,7 +445,6 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
445
445
446
446
/** Methods of the module object `val ClassDef` */
447
447
trait ClassDefModule { this : ClassDef .type =>
448
- // TODO def apply(name: String, constr: DefDef, parents: List[TermOrTypeTree], selfOpt: Option[ValDef], body: List[Statement]): ClassDef
449
448
def copy (original : Tree )(name : String , constr : DefDef , parents : List [Tree /* Term | TypeTree */ ], derived : List [TypeTree ], selfOpt : Option [ValDef ], body : List [Statement ]): ClassDef
450
449
def unapply (cdef : ClassDef ): (String , DefDef , List [Tree /* Term | TypeTree */ ], List [TypeTree ], Option [ValDef ], List [Statement ])
451
450
}
@@ -1650,7 +1649,6 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
1650
1649
1651
1650
/** Methods of the module object `val TypeProjection` */
1652
1651
trait TypeProjectionModule { this : TypeProjection .type =>
1653
- // TODO def apply(qualifier: TypeTree, name: String): Project
1654
1652
def copy (original : Tree )(qualifier : TypeTree , name : String ): TypeProjection
1655
1653
def unapply (x : TypeProjection ): (TypeTree , String )
1656
1654
}
@@ -1703,7 +1701,6 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
1703
1701
1704
1702
/** Methods of the module object `val Refined` */
1705
1703
trait RefinedModule { this : Refined .type =>
1706
- // TODO def apply(tpt: TypeTree, refinements: List[Definition]): Refined
1707
1704
def copy (original : Tree )(tpt : TypeTree , refinements : List [Definition ]): Refined
1708
1705
def unapply (x : Refined ): (TypeTree , List [Definition ])
1709
1706
}
@@ -1865,7 +1862,6 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
1865
1862
1866
1863
/** Methods of the module object `val TypeBind` */
1867
1864
trait TypeBindModule { this : TypeBind .type =>
1868
- // TODO def apply(name: String, tree: Tree): TypeBind
1869
1865
def copy (original : Tree )(name : String , tpt : Tree /* TypeTree | TypeBoundsTree*/ ): TypeBind
1870
1866
def unapply (x : TypeBind ): (String , Tree /* TypeTree | TypeBoundsTree*/ )
1871
1867
}
@@ -2064,7 +2060,6 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
2064
2060
2065
2061
/** Methods of the module object `val Unapply` */
2066
2062
trait UnapplyModule { this : Unapply .type =>
2067
- // TODO def apply(fun: Term, implicits: List[Term], patterns: List[Tree]): Unapply
2068
2063
def copy (original : Tree )(fun : Term , implicits : List [Term ], patterns : List [Tree ]): Unapply
2069
2064
def unapply (x : Unapply ): (Term , List [Term ], List [Tree ])
2070
2065
}
0 commit comments