| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName WorkerLocation |
| 8 interface WorkerLocation { |
| 9 |
| 10 /** @domName WorkerLocation.hash */ |
| 11 final String hash; |
| 12 |
| 13 /** @domName WorkerLocation.host */ |
| 14 final String host; |
| 15 |
| 16 /** @domName WorkerLocation.hostname */ |
| 17 final String hostname; |
| 18 |
| 19 /** @domName WorkerLocation.href */ |
| 20 final String href; |
| 21 |
| 22 /** @domName WorkerLocation.pathname */ |
| 23 final String pathname; |
| 24 |
| 25 /** @domName WorkerLocation.port */ |
| 26 final String port; |
| 27 |
| 28 /** @domName WorkerLocation.protocol */ |
| 29 final String protocol; |
| 30 |
| 31 /** @domName WorkerLocation.search */ |
| 32 final String search; |
| 33 |
| 34 /** @domName WorkerLocation.toString */ |
| 35 String toString(); |
| 36 } |
| OLD | NEW |