refactor(ivy): remove short instruction names as they provide no value (#25493)
PR Close #25493
This commit is contained in:
@ -19,93 +19,85 @@ export {QUERY_READ_CONTAINER_REF, QUERY_READ_ELEMENT_REF, QUERY_READ_FROM_NODE,
|
||||
export {RenderFlags} from './interfaces/definition';
|
||||
export {CssSelectorList} from './interfaces/projection';
|
||||
|
||||
// Naming scheme:
|
||||
// - Capital letters are for creating things: T(Text), E(Element), D(Directive), V(View),
|
||||
// C(Container), L(Listener)
|
||||
// - lower case letters are for binding: b(bind)
|
||||
// - lower case letters are for binding target: p(property), a(attribute), k(class), s(style),
|
||||
// i(input)
|
||||
// - lower case letters for guarding life cycle hooks: l(lifeCycle)
|
||||
// - lower case for closing: c(containerEnd), e(elementEnd), v(viewEnd)
|
||||
// clang-format off
|
||||
export {
|
||||
|
||||
NO_CHANGE as NC,
|
||||
NO_CHANGE,
|
||||
|
||||
bind as b,
|
||||
interpolation1 as i1,
|
||||
interpolation2 as i2,
|
||||
interpolation3 as i3,
|
||||
interpolation4 as i4,
|
||||
interpolation5 as i5,
|
||||
interpolation6 as i6,
|
||||
interpolation7 as i7,
|
||||
interpolation8 as i8,
|
||||
interpolationV as iV,
|
||||
bind,
|
||||
interpolation1,
|
||||
interpolation2,
|
||||
interpolation3,
|
||||
interpolation4,
|
||||
interpolation5,
|
||||
interpolation6,
|
||||
interpolation7,
|
||||
interpolation8,
|
||||
interpolationV,
|
||||
|
||||
container as C,
|
||||
containerRefreshStart as cR,
|
||||
containerRefreshEnd as cr,
|
||||
container,
|
||||
containerRefreshStart,
|
||||
containerRefreshEnd,
|
||||
|
||||
nextContext as x,
|
||||
nextContext,
|
||||
|
||||
element as Ee,
|
||||
elementAttribute as a,
|
||||
elementClassProp as cp,
|
||||
elementEnd as e,
|
||||
elementProperty as p,
|
||||
elementStart as E,
|
||||
element,
|
||||
elementAttribute,
|
||||
elementClassProp,
|
||||
elementEnd,
|
||||
elementProperty,
|
||||
elementStart,
|
||||
|
||||
elementContainerStart as EC,
|
||||
elementContainerEnd as eC,
|
||||
elementContainerStart,
|
||||
elementContainerEnd,
|
||||
|
||||
elementStyling as s,
|
||||
elementStylingMap as sm,
|
||||
elementStyleProp as sp,
|
||||
elementStylingApply as sa,
|
||||
elementStyling,
|
||||
elementStylingMap,
|
||||
elementStyleProp,
|
||||
elementStylingApply,
|
||||
|
||||
getCurrentView as gV,
|
||||
restoreView as rV,
|
||||
getCurrentView,
|
||||
restoreView,
|
||||
|
||||
listener as L,
|
||||
store as st,
|
||||
load as ld,
|
||||
loadDirective as d,
|
||||
listener,
|
||||
store,
|
||||
load,
|
||||
loadDirective,
|
||||
|
||||
namespaceHTML as NH,
|
||||
namespaceMathML as NM,
|
||||
namespaceSVG as NS,
|
||||
namespaceHTML,
|
||||
namespaceMathML,
|
||||
namespaceSVG,
|
||||
|
||||
projection as P,
|
||||
projectionDef as pD,
|
||||
projection,
|
||||
projectionDef,
|
||||
|
||||
text as T,
|
||||
textBinding as t,
|
||||
text,
|
||||
textBinding,
|
||||
|
||||
reference as r,
|
||||
reference,
|
||||
|
||||
reserveSlots as rS,
|
||||
reserveSlots,
|
||||
|
||||
embeddedViewStart as V,
|
||||
embeddedViewEnd as v,
|
||||
embeddedViewStart,
|
||||
embeddedViewEnd,
|
||||
detectChanges,
|
||||
markDirty,
|
||||
tick,
|
||||
} from './instructions';
|
||||
|
||||
export {
|
||||
i18nApply as iA,
|
||||
i18nMapping as iM,
|
||||
i18nInterpolation1 as iI1,
|
||||
i18nInterpolation2 as iI2,
|
||||
i18nInterpolation3 as iI3,
|
||||
i18nInterpolation4 as iI4,
|
||||
i18nInterpolation5 as iI5,
|
||||
i18nInterpolation6 as iI6,
|
||||
i18nInterpolation7 as iI7,
|
||||
i18nInterpolation8 as iI8,
|
||||
i18nInterpolationV as iIV,
|
||||
i18nExpMapping as iEM,
|
||||
i18nApply,
|
||||
i18nMapping,
|
||||
i18nInterpolation1,
|
||||
i18nInterpolation2,
|
||||
i18nInterpolation3,
|
||||
i18nInterpolation4,
|
||||
i18nInterpolation5,
|
||||
i18nInterpolation6,
|
||||
i18nInterpolation7,
|
||||
i18nInterpolation8,
|
||||
i18nInterpolationV,
|
||||
i18nExpMapping,
|
||||
I18nInstruction,
|
||||
I18nExpInstruction
|
||||
} from './i18n';
|
||||
@ -117,35 +109,35 @@ export {
|
||||
} from './interfaces/node';
|
||||
|
||||
export {
|
||||
pipe as Pp,
|
||||
pipeBind1 as pb1,
|
||||
pipeBind2 as pb2,
|
||||
pipeBind3 as pb3,
|
||||
pipeBind4 as pb4,
|
||||
pipeBindV as pbV,
|
||||
pipe,
|
||||
pipeBind1,
|
||||
pipeBind2,
|
||||
pipeBind3,
|
||||
pipeBind4,
|
||||
pipeBindV,
|
||||
} from './pipe';
|
||||
|
||||
export {
|
||||
QueryList,
|
||||
query as Q,
|
||||
queryRefresh as qR,
|
||||
query,
|
||||
queryRefresh,
|
||||
} from './query';
|
||||
export {
|
||||
registerContentQuery as Qr,
|
||||
loadQueryList as ql,
|
||||
registerContentQuery,
|
||||
loadQueryList,
|
||||
} from './instructions';
|
||||
|
||||
export {
|
||||
pureFunction0 as f0,
|
||||
pureFunction1 as f1,
|
||||
pureFunction2 as f2,
|
||||
pureFunction3 as f3,
|
||||
pureFunction4 as f4,
|
||||
pureFunction5 as f5,
|
||||
pureFunction6 as f6,
|
||||
pureFunction7 as f7,
|
||||
pureFunction8 as f8,
|
||||
pureFunctionV as fV,
|
||||
pureFunction0,
|
||||
pureFunction1,
|
||||
pureFunction2,
|
||||
pureFunction3,
|
||||
pureFunction4,
|
||||
pureFunction5,
|
||||
pureFunction6,
|
||||
pureFunction7,
|
||||
pureFunction8,
|
||||
pureFunctionV,
|
||||
} from './pure_function';
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user