* Emit a `changed` event * @param operation - Operation that makes changes
(operation: string)
| 636 | * @param operation - Operation that makes changes |
| 637 | */ |
| 638 | private emitChangedEvent(operation: string) { |
| 639 | const event: BindingEvent = {binding: this, operation, type: 'changed'}; |
| 640 | this.emit('changed', event); |
| 641 | } |
| 642 | |
| 643 | /** |
| 644 | * Tag the binding with names or name/value objects. A tag has a name and |
no outgoing calls
no test coverage detected