()
| 292 | } |
| 293 | |
| 294 | func (p *proxyObject) checkHandler() proxyHandler { |
| 295 | r := p.val.runtime |
| 296 | if handler := p.handler; handler != nil { |
| 297 | return handler |
| 298 | } |
| 299 | panic(r.NewTypeError("Proxy already revoked")) |
| 300 | } |
| 301 | |
| 302 | func (p *proxyObject) proto() *Object { |
| 303 | target := p.target |
no test coverage detected