refactor(core): Removed readonly getters and changed to readonly (#19225)

variables
This commit is contained in:
tinayuangao
2017-09-29 00:36:29 +08:00
committed by Victor Berchet
parent 3aa3d5c548
commit 2b84b86fc0
14 changed files with 64 additions and 46 deletions

View File

@ -23,7 +23,10 @@ import {supportsState} from './history';
*/
@Injectable()
export class BrowserPlatformLocation extends PlatformLocation {
public readonly location: Location;
readonly location: Location;
readonly search: string;
readonly hash: string;
private _history: History;
constructor(@Inject(DOCUMENT) private _doc: any) {
@ -36,6 +39,8 @@ export class BrowserPlatformLocation extends PlatformLocation {
_init() {
(this as{location: Location}).location = getDOM().getLocation();
this._history = getDOM().getHistory();
(this as{hash: string}).hash = this.location.hash;
(this as{search: string}).search = this.location.search;
}
getBaseHrefFromDOM(): string { return getDOM().getBaseHref(this._doc) !; }
@ -49,8 +54,6 @@ export class BrowserPlatformLocation extends PlatformLocation {
}
get pathname(): string { return this.location.pathname; }
get search(): string { return this.location.search; }
get hash(): string { return this.location.hash; }
set pathname(newPath: string) { this.location.pathname = newPath; }
pushState(state: any, title: string, url: string): void {