OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface WorkerLocation { | 7 interface WorkerLocation { |
8 | 8 |
9 String get hash(); | 9 final String hash; |
10 | 10 |
11 String get host(); | 11 final String host; |
12 | 12 |
13 String get hostname(); | 13 final String hostname; |
14 | 14 |
15 String get href(); | 15 final String href; |
16 | 16 |
17 String get pathname(); | 17 final String pathname; |
18 | 18 |
19 String get port(); | 19 final String port; |
20 | 20 |
21 String get protocol(); | 21 final String protocol; |
22 | 22 |
23 String get search(); | 23 final String search; |
24 | 24 |
25 String toString(); | 25 String toString(); |
26 } | 26 } |
OLD | NEW |