OLD | NEW |
1 | 1 |
2 class _WorkerLocationJs extends _DOMTypeJs implements WorkerLocation native "*Wo
rkerLocation" { | 2 class _WorkerLocationJs extends _DOMTypeJs implements WorkerLocation native "*Wo
rkerLocation" { |
3 | 3 |
4 String get hash() native "return this.hash;"; | 4 final String hash; |
5 | 5 |
6 String get host() native "return this.host;"; | 6 final String host; |
7 | 7 |
8 String get hostname() native "return this.hostname;"; | 8 final String hostname; |
9 | 9 |
10 String get href() native "return this.href;"; | 10 final String href; |
11 | 11 |
12 String get pathname() native "return this.pathname;"; | 12 final String pathname; |
13 | 13 |
14 String get port() native "return this.port;"; | 14 final String port; |
15 | 15 |
16 String get protocol() native "return this.protocol;"; | 16 final String protocol; |
17 | 17 |
18 String get search() native "return this.search;"; | 18 final String search; |
19 | 19 |
20 String toString() native; | 20 String toString() native; |
21 } | 21 } |
OLD | NEW |