()
| 666 | } |
| 667 | |
| 668 | ref() { |
| 669 | if (this[kRefed] === false) { |
| 670 | this[kRefed] = true; |
| 671 | |
| 672 | if (immediateInfo[kRefCount]++ === 0) { |
| 673 | // We need to use the binding as the receiver for fast API calls. |
| 674 | binding.toggleImmediateRef(true); |
| 675 | } |
| 676 | } |
| 677 | return this; |
| 678 | } |
| 679 | |
| 680 | unref() { |
| 681 | if (this[kRefed] === true) { |
no test coverage detected