mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Merge deno_cli_snapshots into deno_cli (#3064)
This commit is contained in:
parent
9049213867
commit
b81e5db17a
148 changed files with 38 additions and 83 deletions
52
cli/js/location.ts
Normal file
52
cli/js/location.ts
Normal file
|
@ -0,0 +1,52 @@
|
|||
// 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue