MCPcopy
hub / github.com/angular/angular / ChildComp

Class ChildComp

packages/platform-browser/test/testing_public_spec.ts:42–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40// Services, and components for the tests.
41
42@Component({
43 selector: 'child-comp',
44 template: `<span>Original {{ childBinding }}</span>`,
45 standalone: false,
46})
47@Injectable()
48class ChildComp {
49 childBinding: string;
50 constructor() {
51 this.childBinding = 'Child';
52 }
53}
54
55@Component({
56 selector: 'child-comp',

Callers

nothing calls this directly

Calls 2

ComponentInterface · 0.90
InjectableInterface · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…