(
key: BindingAddress<T>,
public isLocked: boolean = false,
)
| 406 | } |
| 407 | |
| 408 | constructor( |
| 409 | key: BindingAddress<T>, |
| 410 | public isLocked: boolean = false, |
| 411 | ) { |
| 412 | super(); |
| 413 | BindingKey.validate(key); |
| 414 | this.key = key.toString(); |
| 415 | } |
| 416 | |
| 417 | /** |
| 418 | * Cache the resolved value by the binding scope |