* Apply default scope to the binding. It only changes the scope if it's not * set yet * @param scope - Default binding scope
(scope: BindingScope)
| 706 | * @param scope - Default binding scope |
| 707 | */ |
| 708 | applyDefaultScope(scope: BindingScope): this { |
| 709 | if (!this._scope) { |
| 710 | this.inScope(scope); |
| 711 | } |
| 712 | return this; |
| 713 | } |
| 714 | |
| 715 | /** |
| 716 | * Set the `_getValue` function |
no test coverage detected