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

Method build

packages/animations/src/animation_builder.ts:136–142  ·  view source on GitHub ↗
(animation: AnimationMetadata | AnimationMetadata[])

Source from the content-addressed store, hash-verified

134 }
135
136 override build(animation: AnimationMetadata | AnimationMetadata[]): AnimationFactory {
137 const id = this._nextAnimationId;
138 this._nextAnimationId++;
139 const entry = Array.isArray(animation) ? sequence(animation) : animation;
140 issueAnimationCommand(this._renderer, null, id, 'register', [entry]);
141 return new BrowserAnimationFactory(id, this._renderer);
142 }
143}
144
145class BrowserAnimationFactory extends AnimationFactory {

Callers

nothing calls this directly

Calls 3

sequenceFunction · 0.90
issueAnimationCommandFunction · 0.85
isArrayMethod · 0.80

Tested by

no test coverage detected