@@ -57,6 +57,7 @@ describe('LocalModuleScopeRegistry', () => {
5757 rawDeclarations : null ,
5858 rawImports : null ,
5959 rawExports : null ,
60+ decorator : null ,
6061 } ) ;
6162
6263 const scope = scopeRegistry . getScopeOfModule ( Module . node ) as LocalModuleScope ;
@@ -77,6 +78,7 @@ describe('LocalModuleScopeRegistry', () => {
7778 rawDeclarations : null ,
7879 rawImports : null ,
7980 rawExports : null ,
81+ decorator : null ,
8082 } ) ;
8183 metaRegistry . registerNgModuleMetadata ( {
8284 kind : MetaKind . NgModule ,
@@ -88,6 +90,7 @@ describe('LocalModuleScopeRegistry', () => {
8890 rawDeclarations : null ,
8991 rawImports : null ,
9092 rawExports : null ,
93+ decorator : null ,
9194 } ) ;
9295 metaRegistry . registerNgModuleMetadata ( {
9396 kind : MetaKind . NgModule ,
@@ -99,6 +102,7 @@ describe('LocalModuleScopeRegistry', () => {
99102 rawDeclarations : null ,
100103 rawImports : null ,
101104 rawExports : null ,
105+ decorator : null ,
102106 } ) ;
103107
104108 const scopeA = scopeRegistry . getScopeOfModule ( ModuleA . node ) as LocalModuleScope ;
@@ -119,6 +123,7 @@ describe('LocalModuleScopeRegistry', () => {
119123 rawDeclarations : null ,
120124 rawImports : null ,
121125 rawExports : null ,
126+ decorator : null ,
122127 } ) ;
123128 metaRegistry . registerNgModuleMetadata ( {
124129 kind : MetaKind . NgModule ,
@@ -130,6 +135,7 @@ describe('LocalModuleScopeRegistry', () => {
130135 rawDeclarations : null ,
131136 rawImports : null ,
132137 rawExports : null ,
138+ decorator : null ,
133139 } ) ;
134140
135141 const scopeA = scopeRegistry . getScopeOfModule ( ModuleA . node ) as LocalModuleScope ;
@@ -150,6 +156,7 @@ describe('LocalModuleScopeRegistry', () => {
150156 rawDeclarations : null ,
151157 rawImports : null ,
152158 rawExports : null ,
159+ decorator : null ,
153160 } ) ;
154161 metaRegistry . registerNgModuleMetadata ( {
155162 kind : MetaKind . NgModule ,
@@ -161,6 +168,7 @@ describe('LocalModuleScopeRegistry', () => {
161168 rawDeclarations : null ,
162169 rawImports : null ,
163170 rawExports : null ,
171+ decorator : null ,
164172 } ) ;
165173 metaRegistry . registerNgModuleMetadata ( {
166174 kind : MetaKind . NgModule ,
@@ -172,6 +180,7 @@ describe('LocalModuleScopeRegistry', () => {
172180 rawDeclarations : null ,
173181 rawImports : null ,
174182 rawExports : null ,
183+ decorator : null ,
175184 } ) ;
176185
177186 const scope = scopeRegistry . getScopeOfModule ( ModuleA . node ) as LocalModuleScope ;
@@ -199,6 +208,7 @@ describe('LocalModuleScopeRegistry', () => {
199208 rawDeclarations : null ,
200209 rawImports : null ,
201210 rawExports : null ,
211+ decorator : null ,
202212 } ) ;
203213
204214 const scope = scopeRegistry . getScopeOfModule ( Module . node ) as LocalModuleScope ;
@@ -218,6 +228,7 @@ describe('LocalModuleScopeRegistry', () => {
218228 rawDeclarations : null ,
219229 rawImports : null ,
220230 rawExports : null ,
231+ decorator : null ,
221232 } ) ;
222233 metaRegistry . registerNgModuleMetadata ( {
223234 kind : MetaKind . NgModule ,
@@ -229,6 +240,7 @@ describe('LocalModuleScopeRegistry', () => {
229240 rawDeclarations : null ,
230241 rawImports : null ,
231242 rawExports : null ,
243+ decorator : null ,
232244 } ) ;
233245
234246 const scopeA = scopeRegistry . getScopeOfModule ( ModuleA . node ) as LocalModuleScope ;
@@ -248,6 +260,7 @@ describe('LocalModuleScopeRegistry', () => {
248260 rawDeclarations : null ,
249261 rawImports : null ,
250262 rawExports : null ,
263+ decorator : null ,
251264 } ) ;
252265 metaRegistry . registerNgModuleMetadata ( {
253266 kind : MetaKind . NgModule ,
@@ -259,6 +272,7 @@ describe('LocalModuleScopeRegistry', () => {
259272 rawDeclarations : null ,
260273 rawImports : null ,
261274 rawExports : null ,
275+ decorator : null ,
262276 } ) ;
263277
264278 expect ( scopeRegistry . getScopeOfModule ( ModuleA . node ) ! . compilation . isPoisoned ) . toBeTrue ( ) ;
@@ -297,6 +311,7 @@ function fakeDirective(ref: Reference<ClassDeclaration>): DirectiveMeta {
297311 isStandalone : false ,
298312 imports : null ,
299313 schemas : null ,
314+ decorator : null ,
300315 } ;
301316}
302317
@@ -308,6 +323,7 @@ function fakePipe(ref: Reference<ClassDeclaration>): PipeMeta {
308323 name,
309324 nameExpr : null ,
310325 isStandalone : false ,
326+ decorator : null ,
311327 } ;
312328}
313329
0 commit comments