| 52 | } |
| 53 | |
| 54 | export class ImplicitReceiver extends AST { |
| 55 | override visit(visitor: AstVisitor, context: any = null): any { |
| 56 | return visitor.visitImplicitReceiver(this, context); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | export class ThisReceiver extends AST { |
| 61 | override visit(visitor: AstVisitor, context: any = null): any { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…