Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! feat(ivy): add ngcc ivy switch
  • Loading branch information
mhevery committed Aug 16, 2018
commit ed87ef909430765fd72185d2c4cbbc0bcdd03825
3 changes: 2 additions & 1 deletion packages/core/src/render/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
* found in the LICENSE file at https://angular.io/license
*/

import {InjectionToken, Injector} from '../di';
import {InjectionToken} from '../di/injection_token';
import {Injector} from '../di/injector';
import {ViewEncapsulation} from '../metadata/view';

/**
Expand Down
87 changes: 87 additions & 0 deletions packages/core/test/bundling/hello_world/bundle.golden_symbols.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
{
"name": "BINDING_INDEX"
},
{
"name": "BLOOM_MASK"
},
{
"name": "CLEAN_PROMISE"
},
Expand All @@ -14,9 +17,18 @@
{
"name": "CONTEXT"
},
{
"name": "ChangeDetectionStrategy"
},
{
"name": "DIRECTIVES"
},
{
"name": "EMPTY$1"
},
{
"name": "EMPTY_ARRAY"
},
{
"name": "FLAGS"
},
Expand All @@ -35,6 +47,9 @@
{
"name": "NEXT"
},
{
"name": "NG_ELEMENT_ID"
},
{
"name": "NG_HOST_SYMBOL"
},
Expand All @@ -44,12 +59,18 @@
{
"name": "PARENT"
},
{
"name": "PublicFeature"
},
{
"name": "QUERIES"
},
{
"name": "RENDERER"
},
{
"name": "RENDER_PARENT"
},
{
"name": "ROOT_DIRECTIVE_INDICES"
},
Expand All @@ -68,12 +89,30 @@
{
"name": "_getComponentHostLElementNode"
},
{
"name": "_renderCompCount"
},
{
"name": "appendChild"
},
{
"name": "baseDirectiveCreate"
},
{
"name": "bloomAdd"
},
{
"name": "callHooks"
},
{
"name": "canInsertNativeChildOfElement"
},
{
"name": "canInsertNativeChildOfView"
},
{
"name": "canInsertNativeNode"
},
{
"name": "checkNoChangesMode"
},
Expand All @@ -98,12 +137,24 @@
{
"name": "createTView"
},
{
"name": "createTextNode"
},
{
"name": "createViewQuery"
},
{
"name": "defineComponent"
},
{
"name": "detectChangesInternal"
},
{
"name": "diPublic"
},
{
"name": "diPublicInInjector"
},
{
"name": "domRendererFactory3"
},
Expand All @@ -119,21 +170,42 @@
{
"name": "executeInitHooks"
},
{
"name": "extractDirectiveDef"
},
{
"name": "extractPipeDef"
},
{
"name": "firstTemplatePass"
},
{
"name": "getChildLNode"
},
{
"name": "getLViewChild"
},
{
"name": "getOrCreateNodeInjector"
},
{
"name": "getOrCreateNodeInjectorForNode"
},
{
"name": "getOrCreateTView"
},
{
"name": "getParentLNode"
},
{
"name": "getPreviousOrParentNode"
},
{
"name": "getRenderFlags"
},
{
"name": "getRenderParent"
},
{
"name": "getRootView"
},
Expand All @@ -143,6 +215,9 @@
{
"name": "initChangeDetectorIfExisting"
},
{
"name": "invertObject"
},
{
"name": "isProceduralRenderer"
},
Expand All @@ -155,6 +230,12 @@
{
"name": "namespaceHTML"
},
{
"name": "nativeInsertBefore"
},
{
"name": "nextNgElementId"
},
{
"name": "readElementValue"
},
Expand Down Expand Up @@ -188,6 +269,12 @@
{
"name": "setUpAttributes"
},
{
"name": "stringify$2"
},
{
"name": "text"
},
{
"name": "tickRootContext"
},
Expand Down
Loading