@@ -227,7 +227,6 @@ trait CompilerInterface {
227
227
228
228
def PackageDef_owner (self : PackageDef )(given ctx : Context ): PackageDef
229
229
def PackageDef_members (self : PackageDef )(given ctx : Context ): List [Statement ]
230
- def PackageDef_symbol (self : PackageDef )(given ctx : Context ): Symbol
231
230
232
231
/** Tree representing a class definition. This includes annonymus class definitions and the class of a module object */
233
232
type ClassDef <: Definition
@@ -239,7 +238,6 @@ trait CompilerInterface {
239
238
def ClassDef_derived (self : ClassDef )(given ctx : Context ): List [TypeTree ]
240
239
def ClassDef_self (self : ClassDef )(given ctx : Context ): Option [ValDef ]
241
240
def ClassDef_body (self : ClassDef )(given ctx : Context ): List [Statement ]
242
- def ClassDef_symbol (self : ClassDef )(given ctx : Context ): Symbol
243
241
244
242
def ClassDef_copy (original : ClassDef )(name : String , constr : DefDef , parents : List [Tree /* Term | TypeTree */ ], derived : List [TypeTree ], selfOpt : Option [ValDef ], body : List [Statement ])(given ctx : Context ): ClassDef
245
243
@@ -249,7 +247,6 @@ trait CompilerInterface {
249
247
def matchTypeDef (tree : Tree )(given ctx : Context ): Option [TypeDef ]
250
248
251
249
def TypeDef_rhs (self : TypeDef )(given ctx : Context ): Tree /* TypeTree | TypeBoundsTree*/
252
- def TypeDef_symbol (self : TypeDef )(given ctx : Context ): Symbol
253
250
254
251
def TypeDef_apply (symbol : Symbol )(given ctx : Context ): TypeDef
255
252
def TypeDef_copy (original : TypeDef )(name : String , rhs : Tree /* TypeTree | TypeBoundsTree*/ )(given ctx : Context ): TypeDef
@@ -263,7 +260,6 @@ trait CompilerInterface {
263
260
def DefDef_paramss (self : DefDef )(given ctx : Context ): List [List [ValDef ]]
264
261
def DefDef_returnTpt (self : DefDef )(given ctx : Context ): TypeTree
265
262
def DefDef_rhs (self : DefDef )(given ctx : Context ): Option [Term ]
266
- def DefDef_symbol (self : DefDef )(given ctx : Context ): Symbol
267
263
268
264
def DefDef_apply (symbol : Symbol , rhsFn : List [Type ] => List [List [Term ]] => Option [Term ])(given ctx : Context ): DefDef
269
265
def DefDef_copy (original : DefDef )(name : String , typeParams : List [TypeDef ], paramss : List [List [ValDef ]], tpt : TypeTree , rhs : Option [Term ])(given ctx : Context ): DefDef
@@ -275,7 +271,6 @@ trait CompilerInterface {
275
271
276
272
def ValDef_tpt (self : ValDef )(given ctx : Context ): TypeTree
277
273
def ValDef_rhs (self : ValDef )(given ctx : Context ): Option [Term ]
278
- def ValDef_symbol (self : ValDef )(given ctx : Context ): Symbol
279
274
280
275
def ValDef_apply (symbol : Symbol , rhs : Option [Term ])(given ctx : Context ): ValDef
281
276
def ValDef_copy (original : ValDef )(name : String , tpt : TypeTree , rhs : Option [Term ])(given ctx : Context ): ValDef
@@ -285,7 +280,6 @@ trait CompilerInterface {
285
280
286
281
def matchTerm (tree : Tree )(given ctx : Context ): Option [Term ]
287
282
288
- def Term_pos (self : Term )(given ctx : Context ): Position
289
283
def Term_tpe (self : Term )(given ctx : Context ): Type
290
284
def Term_underlyingArgument (self : Term )(given ctx : Context ): Term
291
285
def Term_underlying (self : Term )(given ctx : Context ): Term
@@ -533,7 +527,6 @@ trait CompilerInterface {
533
527
534
528
def SelectOuter_qualifier (self : SelectOuter )(given ctx : Context ): Term
535
529
def SelectOuter_level (self : SelectOuter )(given ctx : Context ): Int
536
- def SelectOuter_tpe (self : SelectOuter )(given ctx : Context ): Type
537
530
538
531
def SelectOuter_apply (qualifier : Term , name : String , levels : Int )(given ctx : Context ): SelectOuter
539
532
def SelectOuter_copy (original : Tree )(qualifier : Term , name : String , levels : Int )(given ctx : Context ): SelectOuter
@@ -554,8 +547,6 @@ trait CompilerInterface {
554
547
555
548
def matchTypeTree (tree : Tree )(given ctx : Context ): Option [TypeTree ]
556
549
557
- def TypeTree_pos (self : TypeTree )(given ctx : Context ): Position
558
- def TypeTree_symbol (self : TypeTree )(given ctx : Context ): Symbol
559
550
def TypeTree_tpe (self : TypeTree )(given ctx : Context ): Type
560
551
561
552
/** Type tree representing an inferred type */
0 commit comments