diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-10-04 20:28:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 20:28:51 -0400 |
commit | b81e5db17aa8b3088d6034ddf86b79c69410f012 (patch) | |
tree | 579e4c23d60d1b0d038156bc28a04f74ea87b2f0 /js/location.ts | |
parent | 9049213867d30f7df090a83b6baf3e0717a4d2d2 (diff) |
Merge deno_cli_snapshots into deno_cli (#3064)
Diffstat (limited to 'js/location.ts')
-rw-r--r-- | js/location.ts | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/js/location.ts b/js/location.ts deleted file mode 100644 index d495f99ca..000000000 --- a/js/location.ts +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { URL } from "./url.ts"; -import { notImplemented } from "./util.ts"; -import { Location } from "./dom_types.ts"; -import { window } from "./window.ts"; - -export class LocationImpl implements Location { - constructor(url: string) { - const u = new URL(url); - this.url = u; - this.hash = u.hash; - this.host = u.host; - this.href = u.href; - this.hostname = u.hostname; - this.origin = u.protocol + "//" + u.host; - this.pathname = u.pathname; - this.protocol = u.protocol; - this.port = u.port; - this.search = u.search; - } - - private url: URL; - - toString(): string { - return this.url.toString(); - } - - readonly ancestorOrigins: string[] = []; - hash: string; - host: string; - hostname: string; - href: string; - readonly origin: string; - pathname: string; - port: string; - protocol: string; - search: string; - assign(_url: string): void { - throw notImplemented(); - } - reload(): void { - throw notImplemented(); - } - replace(_url: string): void { - throw notImplemented(); - } -} - -export function setLocation(url: string): void { - window.location = new LocationImpl(url); - Object.freeze(window.location); -} |