| 
									
										
										
										
											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"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | const formatPosition = pos => { | 
					
						
							|  |  |  | 	if (pos === null) return ""; | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 	const typeOfPos = typeof pos; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 	switch (typeOfPos) { | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 		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": | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			if (typeof pos.line === "number" && typeof pos.column === "number") | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 				return `${pos.line}:${pos.column}`; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			else if (typeof pos.line === "number") return `${pos.line}:?`; | 
					
						
							|  |  |  | 			else if (typeof pos.index === "number") return `+${pos.index}`; | 
					
						
							|  |  |  | 			else return ""; | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 			return ""; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | const formatLocation = loc => { | 
					
						
							|  |  |  | 	if (loc === null) return ""; | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 	const typeOfLoc = typeof loc; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 	switch (typeOfLoc) { | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 		case "string": | 
					
						
							|  |  |  | 			return loc; | 
					
						
							|  |  |  | 		case "number": | 
					
						
							|  |  |  | 			return `${loc}`; | 
					
						
							|  |  |  | 		case "object": | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			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 | 
					
						
							|  |  |  | 				) | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 					return `${formatPosition(loc.start)}-${loc.end.column}`; | 
					
						
							|  |  |  | 				return `${formatPosition(loc.start)}-${formatPosition(loc.end)}`; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			if (loc.start) return formatPosition(loc.start); | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 			return formatPosition(loc); | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			return ""; | 
					
						
							| 
									
										
										
										
											2017-01-10 00:11:34 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-04-17 20:00:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | module.exports = formatLocation; |