| 
									
										
										
										
											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 {Component} from '@angular/core'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({ | 
					
						
							|  |  |  |   template: `
 | 
					
						
							| 
									
										
										
										
											2019-10-11 13:56:33 -07:00
										 |  |  |     <div ~{start-implicit}*ngIf="show; let l=unknown"~{end-implicit}> | 
					
						
							| 
									
										
										
										
											2019-09-12 15:20:54 -07:00
										 |  |  |       Showing now! | 
					
						
							|  |  |  |     </div>`,
 | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | export class ShowIf { | 
					
						
							|  |  |  |   show = false; | 
					
						
							|  |  |  | } |