refactor(test/linker): remove unused directive in tests

This commit is contained in:
Pascal Precht 2015-12-04 17:01:00 +01:00 committed by Jeremy Elbourn
parent a090843b84
commit f664a9c4d5
1 changed files with 0 additions and 10 deletions

View File

@ -2034,16 +2034,6 @@ class DirectiveUpdatingHostProperties {
constructor() { this.id = "one"; }
}
@Directive({selector: '[update-host-actions]', host: {'@setAttr': 'setAttribute'}})
@Injectable()
class DirectiveUpdatingHostActions {
setAttr: EventEmitter<any>;
constructor() { this.setAttr = new EventEmitter(); }
triggerSetAttr(attrValue) { ObservableWrapper.callEmit(this.setAttr, ["key", attrValue]); }
}
@Directive({selector: '[listener]', host: {'(event)': 'onEvent($event)'}})
@Injectable()
class DirectiveListeningEvent {