(bind, scope)
| 49 | } |
| 50 | |
| 51 | function getStaticContext(bind, scope) { |
| 52 | const object = bind.object || bind.callee.object; |
| 53 | return scope.isStatic(object) && (_core.types.isSuper(object) ? _core.types.thisExpression() : object); |
| 54 | } |
| 55 | |
| 56 | function inferBindContext(bind, scope) { |
| 57 | const staticContext = getStaticContext(bind, scope); |