fix(ivy): export elementContainerStart/End instructions (#27053)

PR Close #27053
This commit is contained in:
JoostK
2018-11-12 00:46:02 +01:00
committed by Misko Hevery
parent b07bd30b70
commit 60800da6c1
4 changed files with 12 additions and 8 deletions

View File

@ -89,6 +89,8 @@ export {
enableBindings as ɵenableBindings,
disableBindings as ɵdisableBindings,
elementAttribute as ɵelementAttribute,
elementContainerStart as ɵelementContainerStart,
elementContainerEnd as ɵelementContainerEnd,
elementStyling as ɵelementStyling,
elementStylingMap as ɵelementStylingMap,
elementStyleProp as ɵelementStyleProp,

View File

@ -49,8 +49,8 @@ export const angularCoreEnv: {[name: string]: Function} = {
'ɵelementStart': r3.elementStart,
'ɵelementEnd': r3.elementEnd,
'ɵelement': r3.element,
EC': r3.elementContainerStart,
'ɵeC': r3.elementContainerEnd,
elementContainerStart': r3.elementContainerStart,
'ɵelementContainerEnd': r3.elementContainerEnd,
'ɵpureFunction0': r3.pureFunction0,
'ɵpureFunction1': r3.pureFunction1,
'ɵpureFunction2': r3.pureFunction2,