| 
									
										
										
										
											2017-01-10 00:11:34 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const formatPosition = (pos) => { | 
					
						
							|  |  |  | 	if(pos === null) | 
					
						
							|  |  |  | 		return ""; | 
					
						
							|  |  |  | 	const typeOfPos = typeof pos; | 
					
						
							|  |  |  | 	switch(typeOfPos) { | 
					
						
							|  |  |  | 		case "string": | 
					
						
							| 
									
										
										
										
											2017-01-10 00:11:34 +08:00
										 |  |  | 			return pos; | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 		case "number": | 
					
						
							|  |  |  | 			return `${pos}`; | 
					
						
							|  |  |  | 		case "object": | 
					
						
							| 
									
										
										
										
											2017-01-10 00:11:34 +08:00
										 |  |  | 			if(typeof pos.line === "number" && typeof pos.column === "number") | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 				return `${pos.line}:${pos.column}`; | 
					
						
							|  |  |  | 			else if(typeof pos.line === "number") | 
					
						
							|  |  |  | 				return `${pos.line}:?`; | 
					
						
							|  |  |  | 			else if(typeof pos.index === "number") | 
					
						
							|  |  |  | 				return `+${pos.index}`; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				return ""; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			return ""; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const formatLocation = (loc) => { | 
					
						
							|  |  |  | 	if(loc === null) | 
					
						
							| 
									
										
										
										
											2017-01-10 00:11:34 +08:00
										 |  |  | 		return ""; | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 	const typeOfLoc = typeof loc; | 
					
						
							|  |  |  | 	switch(typeOfLoc) { | 
					
						
							|  |  |  | 		case "string": | 
					
						
							|  |  |  | 			return loc; | 
					
						
							|  |  |  | 		case "number": | 
					
						
							|  |  |  | 			return `${loc}`; | 
					
						
							|  |  |  | 		case "object": | 
					
						
							|  |  |  | 			if(loc.start && loc.end) { | 
					
						
							|  |  |  | 				if(typeof loc.start.line === "number" && typeof loc.end.line === "number" && typeof loc.end.column === "number" && loc.start.line === loc.end.line) | 
					
						
							|  |  |  | 					return `${formatPosition(loc.start)}-${loc.end.column}`; | 
					
						
							|  |  |  | 				return `${formatPosition(loc.start)}-${formatPosition(loc.end)}`; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if(loc.start) | 
					
						
							|  |  |  | 				return formatPosition(loc.start); | 
					
						
							|  |  |  | 			return formatPosition(loc); | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			return ""; | 
					
						
							| 
									
										
										
										
											2017-01-10 00:11:34 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | module.exports = formatLocation; |