(absoluteUrl, locationObj, appBase)
| 9134 | } |
| 9135 | |
| 9136 | function parseAbsoluteUrl(absoluteUrl, locationObj, appBase) { |
| 9137 | var parsedUrl = urlResolve(absoluteUrl, appBase); |
| 9138 | |
| 9139 | locationObj.$$protocol = parsedUrl.protocol; |
| 9140 | locationObj.$$host = parsedUrl.hostname; |
| 9141 | locationObj.$$port = int(parsedUrl.port) || DEFAULT_PORTS[parsedUrl.protocol] || null; |
| 9142 | } |
| 9143 | |
| 9144 | |
| 9145 | function parseAppUrl(relativeUrl, locationObj, appBase) { |
no test coverage detected