/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import {LowerCasePipe, NgIf} from '@angular/common'; import {AppModule, Component, ComponentFactoryResolver, Injectable} from '@angular/core'; @Injectable() export class SomeService { public prop = 'someValue'; } @Injectable() export class NestedService { } @Component({ selector: 'cmp', template: `
` }) export class SomeComp { constructor() {} } @Component({selector: 'parent', template: `