(_this, self, cb, fnargs)
| 413 | |
| 414 | |
| 415 | function bound(_this, self, cb, fnargs) { |
| 416 | self.enter(); |
| 417 | const ret = ReflectApply(cb, _this, fnargs); |
| 418 | self.exit(); |
| 419 | |
| 420 | return ret; |
| 421 | } |
| 422 | |
| 423 | |
| 424 | Domain.prototype.bind = function(cb) { |
no test coverage detected
searching dependent graphs…