p. exported from angular2/annotations defined in angular2/src/core/annotations/visibility.js (line 105) :markdown Specifies that an injector should retrieve a dependency from any ancestor element. An ancestor is any element between the parent element and shadow root. ## Example Here is a simple directive that retrieves a dependency from an ancestor element. ``` @Decorator({ selector: '[dependency]', properties: { 'id':'dependency' } }) class Dependency { id:string; } @Decorator({ selector: '[my-directive]' }) class Dependency { constructor(@Ancestor() dependency:Dependency) { expect(dependency.id).toEqual(2); }; } ``` We use this with the following HTML template: ```