| 
									
										
										
										
											2019-09-12 15:20:54 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. 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.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {CommonModule} from '@angular/common'; | 
					
						
							|  |  |  | import {NgModule} from '@angular/core'; | 
					
						
							|  |  |  | import {FormsModule} from '@angular/forms'; | 
					
						
							|  |  |  | import {AppComponent} from './app.component'; | 
					
						
							| 
									
										
										
										
											2019-10-14 15:24:59 -07:00
										 |  |  | import * as ParsingCases from './parsing-cases'; | 
					
						
							| 
									
										
										
										
											2019-09-12 15:20:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  |   imports: [CommonModule, FormsModule], | 
					
						
							|  |  |  |   declarations: [ | 
					
						
							|  |  |  |     AppComponent, | 
					
						
							| 
									
										
										
										
											2019-10-14 15:24:59 -07:00
										 |  |  |     ParsingCases.CaseIncompleteOpen, | 
					
						
							|  |  |  |     ParsingCases.CaseMissingClosing, | 
					
						
							|  |  |  |     ParsingCases.CaseUnknown, | 
					
						
							| 
									
										
										
										
											2020-01-12 14:15:50 -08:00
										 |  |  |     ParsingCases.CounterDirective, | 
					
						
							| 
									
										
										
										
											2020-01-20 11:31:15 -08:00
										 |  |  |     ParsingCases.HintModel, | 
					
						
							| 
									
										
										
										
											2019-10-14 15:24:59 -07:00
										 |  |  |     ParsingCases.NoValueAttribute, | 
					
						
							|  |  |  |     ParsingCases.NumberModel, | 
					
						
							|  |  |  |     ParsingCases.StringModel, | 
					
						
							|  |  |  |     ParsingCases.TemplateReference, | 
					
						
							|  |  |  |     ParsingCases.TestComponent, | 
					
						
							| 
									
										
										
										
											2020-02-19 20:38:21 +01:00
										 |  |  |     ParsingCases.WithContextDirective, | 
					
						
							| 
									
										
										
										
											2019-09-12 15:20:54 -07:00
										 |  |  |   ] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | export class AppModule { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | declare function bootstrap(v: any): void; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 21:48:16 -07:00
										 |  |  | bootstrap(AppComponent); |