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

Method isEquivalent

packages/compiler/src/output/output_ast.ts:533–539  ·  view source on GitHub ↗
(e: Expression)

Source from the content-addressed store, hash-verified

531 }
532
533 override isEquivalent(e: Expression): boolean {
534 return (
535 e instanceof InstantiateExpr &&
536 this.classExpr.isEquivalent(e.classExpr) &&
537 areAllEquivalent(this.args, e.args)
538 );
539 }
540
541 override isConstant() {
542 return false;

Callers

nothing calls this directly

Calls 2

areAllEquivalentFunction · 0.85
isEquivalentMethod · 0.45

Tested by

no test coverage detected