MCPcopy Create free account
hub / github.com/angular/angular / constructor

Method constructor

packages/core/test/linker/integration_spec.ts:2747–2755  ·  view source on GitHub ↗
(
    @Attribute('type') typeAttribute: string,
    @Attribute('static') staticAttribute: string,
    @Attribute('foo') fooAttribute: string,
  )

Source from the content-addressed store, hash-verified

2745 staticAttribute: string;
2746 fooAttribute: string;
2747 constructor(
2748 @Attribute('type') typeAttribute: string,
2749 @Attribute('static') staticAttribute: string,
2750 @Attribute('foo') fooAttribute: string,
2751 ) {
2752 this.typeAttribute = typeAttribute;
2753 this.staticAttribute = staticAttribute;
2754 this.fooAttribute = fooAttribute;
2755 }
2756}
2757
2758@Injectable()

Callers

nothing calls this directly

Calls 1

AttributeInterface · 0.90

Tested by

no test coverage detected