| 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 _InjectedScriptHostWrappingImplementation extends DOMWrapperBase implement
s InjectedScriptHost { | 7 class _InjectedScriptHostWrappingImplementation extends DOMWrapperBase implement
s InjectedScriptHost { |
| 8 _InjectedScriptHostWrappingImplementation() : super() {} | 8 _InjectedScriptHostWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__InjectedScriptHostWrappingImplementation() native { | 10 static create__InjectedScriptHostWrappingImplementation() native { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 _didDestroyWorker(this, id); | 38 _didDestroyWorker(this, id); |
| 39 return; | 39 return; |
| 40 } | 40 } |
| 41 static void _didDestroyWorker(receiver, id) native; | 41 static void _didDestroyWorker(receiver, id) native; |
| 42 | 42 |
| 43 Object evaluate(String text) { | 43 Object evaluate(String text) { |
| 44 return _evaluate(this, text); | 44 return _evaluate(this, text); |
| 45 } | 45 } |
| 46 static Object _evaluate(receiver, text) native; | 46 static Object _evaluate(receiver, text) native; |
| 47 | 47 |
| 48 Object functionLocation(Object object) { | 48 Object functionDetails(Object object) { |
| 49 return _functionLocation(this, object); | 49 return _functionDetails(this, object); |
| 50 } | 50 } |
| 51 static Object _functionLocation(receiver, object) native; | 51 static Object _functionDetails(receiver, object) native; |
| 52 | 52 |
| 53 void inspect(Object objectId, Object hints) { | 53 void inspect(Object objectId, Object hints) { |
| 54 _inspect(this, objectId, hints); | 54 _inspect(this, objectId, hints); |
| 55 return; | 55 return; |
| 56 } | 56 } |
| 57 static void _inspect(receiver, objectId, hints) native; | 57 static void _inspect(receiver, objectId, hints) native; |
| 58 | 58 |
| 59 Object inspectedNode(int num) { | 59 Object inspectedNode(int num) { |
| 60 return _inspectedNode(this, num); | 60 return _inspectedNode(this, num); |
| 61 } | 61 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 81 } | 81 } |
| 82 static int _storageId(receiver, storage) native; | 82 static int _storageId(receiver, storage) native; |
| 83 | 83 |
| 84 String type(Object object) { | 84 String type(Object object) { |
| 85 return _type(this, object); | 85 return _type(this, object); |
| 86 } | 86 } |
| 87 static String _type(receiver, object) native; | 87 static String _type(receiver, object) native; |
| 88 | 88 |
| 89 String get typeName() { return "InjectedScriptHost"; } | 89 String get typeName() { return "InjectedScriptHost"; } |
| 90 } | 90 } |
| OLD | NEW |