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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 void inspect(Object objectId, Object hints) { | 48 void inspect(Object objectId, Object hints) { |
49 _inspect(this, objectId, hints); | 49 _inspect(this, objectId, hints); |
50 return; | 50 return; |
51 } | 51 } |
52 static void _inspect(receiver, objectId, hints) native; | 52 static void _inspect(receiver, objectId, hints) native; |
53 | 53 |
54 Object inspectedNode(int num) { | 54 Object inspectedNode(int value) { |
55 return _inspectedNode(this, num); | 55 return _inspectedNode(this, value); |
56 } | 56 } |
57 static Object _inspectedNode(receiver, num) native; | 57 static Object _inspectedNode(receiver, value) native; |
58 | 58 |
59 Object internalConstructorName(Object object) { | 59 Object internalConstructorName(Object object) { |
60 return _internalConstructorName(this, object); | 60 return _internalConstructorName(this, object); |
61 } | 61 } |
62 static Object _internalConstructorName(receiver, object) native; | 62 static Object _internalConstructorName(receiver, object) native; |
63 | 63 |
64 bool isHTMLAllCollection(Object object) { | 64 bool isHTMLAllCollection(Object object) { |
65 return _isHTMLAllCollection(this, object); | 65 return _isHTMLAllCollection(this, object); |
66 } | 66 } |
67 static bool _isHTMLAllCollection(receiver, object) native; | 67 static bool _isHTMLAllCollection(receiver, object) native; |
68 | 68 |
69 int nextWorkerId() { | 69 int nextWorkerId() { |
70 return _nextWorkerId(this); | 70 return _nextWorkerId(this); |
71 } | 71 } |
72 static int _nextWorkerId(receiver) native; | 72 static int _nextWorkerId(receiver) native; |
73 | 73 |
74 int storageId(Object storage) { | 74 int storageId(Object storage) { |
75 return _storageId(this, storage); | 75 return _storageId(this, storage); |
76 } | 76 } |
77 static int _storageId(receiver, storage) native; | 77 static int _storageId(receiver, storage) native; |
78 | 78 |
79 String type(Object object) { | 79 String type(Object object) { |
80 return _type(this, object); | 80 return _type(this, object); |
81 } | 81 } |
82 static String _type(receiver, object) native; | 82 static String _type(receiver, object) native; |
83 | 83 |
84 String get typeName() { return "InjectedScriptHost"; } | 84 String get typeName() { return "InjectedScriptHost"; } |
85 } | 85 } |
OLD | NEW |