OLD | NEW |
1 | 1 |
2 class LocationJs extends DOMTypeJs implements Location native "*Location" { | 2 class _LocationJs extends _DOMTypeJs implements Location native "*Location" { |
3 | 3 |
4 String get hash() native "return this.hash;"; | 4 String get hash() native "return this.hash;"; |
5 | 5 |
6 void set hash(String value) native "this.hash = value;"; | 6 void set hash(String value) native "this.hash = value;"; |
7 | 7 |
8 String get host() native "return this.host;"; | 8 String get host() native "return this.host;"; |
9 | 9 |
10 void set host(String value) native "this.host = value;"; | 10 void set host(String value) native "this.host = value;"; |
11 | 11 |
12 String get hostname() native "return this.hostname;"; | 12 String get hostname() native "return this.hostname;"; |
(...skipping 23 matching lines...) Expand all Loading... |
36 void set search(String value) native "this.search = value;"; | 36 void set search(String value) native "this.search = value;"; |
37 | 37 |
38 void assign(String url) native; | 38 void assign(String url) native; |
39 | 39 |
40 void reload() native; | 40 void reload() native; |
41 | 41 |
42 void replace(String url) native; | 42 void replace(String url) native; |
43 | 43 |
44 String toString() native; | 44 String toString() native; |
45 } | 45 } |
OLD | NEW |