From 570bd67eaee76b79a5b902745f7786bcf419cd75 Mon Sep 17 00:00:00 2001 From: Miles Malerba Date: Fri, 7 Jul 2023 12:59:51 -0700 Subject: [PATCH] refactor(compiler): make listener instruction chainable (#50975) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Makes the `ɵɵlistener` instruction chainable in the template pipeline PR Close #50975 --- packages/compiler/src/template/pipeline/src/phases/chaining.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/compiler/src/template/pipeline/src/phases/chaining.ts b/packages/compiler/src/template/pipeline/src/phases/chaining.ts index 214ea02ae65..8bd3c20d45d 100644 --- a/packages/compiler/src/template/pipeline/src/phases/chaining.ts +++ b/packages/compiler/src/template/pipeline/src/phases/chaining.ts @@ -29,6 +29,7 @@ const CHAINABLE = new Set([ R3.stylePropInterpolate8, R3.stylePropInterpolateV, R3.classProp, + R3.listener, R3.elementContainerStart, R3.elementContainerEnd, R3.elementContainer,