forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal_compilation.ts
More file actions
31 lines (29 loc) · 836 Bytes
/
local_compilation.ts
File metadata and controls
31 lines (29 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import {depsTracker} from './deps_tracker/deps_tracker';
import {
ComponentType,
DependencyTypeList,
RawScopeInfoFromDecorator,
} from './interfaces/definition';
export function ɵɵgetComponentDepsFactory(
type: ComponentType<any>,
rawImports?: RawScopeInfoFromDecorator[],
): () => DependencyTypeList {
return () => {
try {
return depsTracker.getComponentDependencies(type, rawImports).dependencies;
} catch (e) {
console.error(
`Computing dependencies in local compilation mode for the component "${type.name}" failed with the exception:`,
e,
);
throw e;
}
};
}