File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import type { Resolver } from '@ember/owner';
22import ApplicationInstance from '@ember/application/instance' ;
33import Application from '@ember/application' ;
44import EmberObject from '@ember/object' ;
5-
6- import Ember from 'ember' ;
5+ import { Registry } from '@ember/-internals/container' ;
6+ import { ComponentLookup } from '@ ember/-internals/views ' ;
77
88import type { FullName } from '@ember/owner' ;
99
@@ -102,10 +102,9 @@ export default function buildRegistry(resolver: Resolver) {
102102 const fallbackRegistry = Application . buildRegistry ( namespace ) ;
103103 // TODO: only do this on Ember < 3.13
104104 // @ts -ignore: this is private API.
105- fallbackRegistry . register ( 'component-lookup:main' , Ember . ComponentLookup ) ;
105+ fallbackRegistry . register ( 'component-lookup:main' , ComponentLookup ) ;
106106
107- // @ts -ignore: this is private API.
108- const registry = new Ember . Registry ( {
107+ const registry = new Registry ( {
109108 fallback : fallbackRegistry ,
110109 } ) ;
111110
You can’t perform that action at this time.
0 commit comments