From 28f3c1c96ae03300c898e83a1133ff3744b8ac1f Mon Sep 17 00:00:00 2001 From: Andrew Kushnir Date: Wed, 22 Apr 2020 17:52:57 -0700 Subject: [PATCH] refactor(core): rename `instructions/container.ts` -> `instructions/template.ts` (#34715) Prior to this change, the `template` instruction logic was located in the `instructions/container.ts` file alongside embedded view instructions. Since unused embedded view instructions are removed in a previous commit, this commit renames `container.ts` -> `template.ts`, since only template-related instructions were retained. PR Close #34715 --- packages/core/src/render3/instructions/all.ts | 2 +- .../core/src/render3/instructions/{container.ts => template.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/core/src/render3/instructions/{container.ts => template.ts} (100%) diff --git a/packages/core/src/render3/instructions/all.ts b/packages/core/src/render3/instructions/all.ts index ec72f45dc2..435e02cc77 100644 --- a/packages/core/src/render3/instructions/all.ts +++ b/packages/core/src/render3/instructions/all.ts @@ -28,7 +28,7 @@ export * from './attribute'; export * from './attribute_interpolation'; export * from './change_detection'; -export * from './container'; +export * from './template'; export * from './storage'; export * from './di'; export * from './element'; diff --git a/packages/core/src/render3/instructions/container.ts b/packages/core/src/render3/instructions/template.ts similarity index 100% rename from packages/core/src/render3/instructions/container.ts rename to packages/core/src/render3/instructions/template.ts