| 
									
										
										
										
											2017-03-14 17:12:44 -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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 16:13:16 -07:00
										 |  |  | import {ParseError, ParseErrorLevel, ParseLocation, ParseSourceFile, ParseSourceSpan} from '../src/parse_util'; | 
					
						
							| 
									
										
										
										
											2017-03-14 17:12:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2017-07-27 16:13:16 -07:00
										 |  |  |   describe('ParseError', () => { | 
					
						
							|  |  |  |     it('should reflect the level in the message', () => { | 
					
						
							|  |  |  |       const file = new ParseSourceFile(`foo\nbar\nfoo`, 'url'); | 
					
						
							|  |  |  |       const start = new ParseLocation(file, 4, 1, 0); | 
					
						
							|  |  |  |       const end = new ParseLocation(file, 6, 1, 2); | 
					
						
							|  |  |  |       const span = new ParseSourceSpan(start, end); | 
					
						
							| 
									
										
										
										
											2017-03-14 17:12:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 16:13:16 -07:00
										 |  |  |       const fatal = new ParseError(span, 'fatal', ParseErrorLevel.ERROR); | 
					
						
							|  |  |  |       expect(fatal.toString()).toEqual('fatal ("foo\n[ERROR ->]bar\nfoo"): url@1:0'); | 
					
						
							| 
									
										
										
										
											2017-03-14 17:12:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 16:13:16 -07:00
										 |  |  |       const warning = new ParseError(span, 'warning', ParseErrorLevel.WARNING); | 
					
						
							|  |  |  |       expect(warning.toString()).toEqual('warning ("foo\n[WARNING ->]bar\nfoo"): url@1:0'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2017-03-14 17:12:44 -07:00
										 |  |  | } |