From 84be7c52dc431ab8621bc6231b8980a73072ae85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Mon, 8 Apr 2019 09:20:15 -0700 Subject: [PATCH] refactor(ivy): rename `styling_instructions` to `styling` (#29770) PR Close #29770 --- packages/core/src/render3/instructions/all.ts | 2 +- packages/core/src/render3/instructions/element.ts | 2 +- .../instructions/{styling_instructions.ts => styling.ts} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename packages/core/src/render3/instructions/{styling_instructions.ts => styling.ts} (100%) diff --git a/packages/core/src/render3/instructions/all.ts b/packages/core/src/render3/instructions/all.ts index 615c762fc5..faee257e01 100644 --- a/packages/core/src/render3/instructions/all.ts +++ b/packages/core/src/render3/instructions/all.ts @@ -41,5 +41,5 @@ export * from './projection'; export * from './property'; export * from './property_interpolation'; export * from './select'; -export * from './styling_instructions'; +export * from './styling'; export * from './text'; diff --git a/packages/core/src/render3/instructions/element.ts b/packages/core/src/render3/instructions/element.ts index ab061d3720..b257a6c92e 100644 --- a/packages/core/src/render3/instructions/element.ts +++ b/packages/core/src/render3/instructions/element.ts @@ -26,7 +26,7 @@ import {renderStringify} from '../util/misc_utils'; import {getNativeByIndex, getNativeByTNode, getTNode} from '../util/view_utils'; import {createDirectivesAndLocals, createNodeAtIndex, elementCreate, executeContentQueries, initializeTNodeInputs, setInputsForProperty, setNodeStylingTemplate} from './shared'; -import {getActiveDirectiveStylingIndex} from './styling_instructions'; +import {getActiveDirectiveStylingIndex} from './styling'; /** diff --git a/packages/core/src/render3/instructions/styling_instructions.ts b/packages/core/src/render3/instructions/styling.ts similarity index 100% rename from packages/core/src/render3/instructions/styling_instructions.ts rename to packages/core/src/render3/instructions/styling.ts