docs: use TS Parameter properties in SkipSelf example (#40858)

PR Close #40858
This commit is contained in:
Alexey Elin 2021-02-15 19:25:43 +03:00 committed by Joey Perrott
parent 4ec045e12b
commit e3c21c5465
1 changed files with 1 additions and 3 deletions

View File

@ -103,9 +103,7 @@ import {ComponentFixture, TestBed} from '@angular/core/testing';
@Injectable()
class NeedsDependency {
constructor(@SkipSelf() public dependency: Dependency) {
this.dependency = dependency;
}
constructor(@SkipSelf() public dependency: Dependency) {}
}
const parent = Injector.create({providers: [{provide: Dependency, deps: []}]});