| 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 class _LocationWrappingImplementation extends DOMWrapperBase implements Location
{ | 7 class _LocationWrappingImplementation extends DOMWrapperBase implements Location
{ |
| 8 _LocationWrappingImplementation() : super() {} | 8 _LocationWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__LocationWrappingImplementation() native { | 10 static create__LocationWrappingImplementation() native { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 void set search(String value) { _set_search(this, value); } | 62 void set search(String value) { _set_search(this, value); } |
| 63 static void _set_search(var _this, String value) native; | 63 static void _set_search(var _this, String value) native; |
| 64 | 64 |
| 65 void assign(String url) { | 65 void assign(String url) { |
| 66 _assign(this, url); | 66 _assign(this, url); |
| 67 return; | 67 return; |
| 68 } | 68 } |
| 69 static void _assign(receiver, url) native; | 69 static void _assign(receiver, url) native; |
| 70 | 70 |
| 71 String getParameter(String name) { |
| 72 return _getParameter(this, name); |
| 73 } |
| 74 static String _getParameter(receiver, name) native; |
| 75 |
| 71 void reload() { | 76 void reload() { |
| 72 _reload(this); | 77 _reload(this); |
| 73 return; | 78 return; |
| 74 } | 79 } |
| 75 static void _reload(receiver) native; | 80 static void _reload(receiver) native; |
| 76 | 81 |
| 77 void replace(String url) { | 82 void replace(String url) { |
| 78 _replace(this, url); | 83 _replace(this, url); |
| 79 return; | 84 return; |
| 80 } | 85 } |
| 81 static void _replace(receiver, url) native; | 86 static void _replace(receiver, url) native; |
| 82 | 87 |
| 83 String toString() { | 88 String toString() { |
| 84 return _toString(this); | 89 return _toString(this); |
| 85 } | 90 } |
| 86 static String _toString(receiver) native; | 91 static String _toString(receiver) native; |
| 87 | 92 |
| 88 String get typeName() { return "Location"; } | 93 String get typeName() { return "Location"; } |
| 89 } | 94 } |
| OLD | NEW |