| 
									
										
										
										
											2015-05-22 16:20:46 -07:00
										 |  |  | class ClassDecorator { | 
					
						
							|  |  |  |   final dynamic value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const ClassDecorator(this.value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ParamDecorator { | 
					
						
							|  |  |  |   final dynamic value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const ParamDecorator(this.value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ClassDecorator classDecorator(value) { | 
					
						
							|  |  |  |   return new ClassDecorator(value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ParamDecorator paramDecorator(value) { | 
					
						
							|  |  |  |   return new ParamDecorator(value); | 
					
						
							| 
									
										
										
										
											2015-05-29 10:42:47 -07:00
										 |  |  | } |