MCPcopy Index your code
hub / github.com/angular/angular / constructor

Method constructor

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

Source from the content-addressed store, hash-verified

2710 staticAttribute: string;
2711 fooAttribute: string;
2712 constructor(
2713 @Attribute('type') typeAttribute: string,
2714 @Attribute('static') staticAttribute: string,
2715 @Attribute('foo') fooAttribute: string,
2716 ) {
2717 this.typeAttribute = typeAttribute;
2718 this.staticAttribute = staticAttribute;
2719 this.fooAttribute = fooAttribute;
2720 }
2721}
2722
2723@Injectable()

Callers

nothing calls this directly

Calls 1

AttributeInterface · 0.90

Tested by

no test coverage detected