OLD | NEW |
---|---|
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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 part of html; | 5 part of html; |
6 | 6 |
7 _serialize(var message) { | 7 _serialize(var message) { |
8 return new _JsSerializer().traverse(message); | 8 return new _JsSerializer().traverse(message); |
9 } | 9 } |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
53 case 'dart': | 53 case 'dart': |
54 num isolateId = x[2]; | 54 num isolateId = x[2]; |
55 num portId = x[3]; | 55 num portId = x[3]; |
56 return ReceivePortSync._lookup(isolateId, portId); | 56 return ReceivePortSync._lookup(isolateId, portId); |
57 default: | 57 default: |
58 throw 'Illegal SendPortSync type: $tag'; | 58 throw 'Illegal SendPortSync type: $tag'; |
59 } | 59 } |
60 } | 60 } |
61 } | 61 } |
62 | 62 |
63 class SendPortSync {} | |
Lasse Reichstein Nielsen
2013/10/25 09:42:49
If this is just a marker interface, make it abstra
floitsch
2013/10/25 13:11:01
Marking as abstract now, but I'm not sure if we do
| |
64 | |
63 // The receiver is JS. | 65 // The receiver is JS. |
64 class _JsSendPortSync implements SendPortSync { | 66 class _JsSendPortSync implements SendPortSync { |
65 | 67 |
66 final num _id; | 68 final num _id; |
67 _JsSendPortSync(this._id); | 69 _JsSendPortSync(this._id); |
68 | 70 |
69 callSync(var message) { | 71 callSync(var message) { |
70 var serialized = _serialize(message); | 72 var serialized = _serialize(message); |
71 var result = _callPortSync(_id, serialized); | 73 var result = _callPortSync(_id, serialized); |
72 return _deserialize(result); | 74 return _deserialize(result); |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
213 | 215 |
214 get _isolateId => ReceivePortSync._isolateId; | 216 get _isolateId => ReceivePortSync._isolateId; |
215 | 217 |
216 void _dispatchEvent(String receiver, var message) { | 218 void _dispatchEvent(String receiver, var message) { |
217 var event = new CustomEvent(receiver, canBubble: false, cancelable:false, | 219 var event = new CustomEvent(receiver, canBubble: false, cancelable:false, |
218 detail: JSON.encode(message)); | 220 detail: JSON.encode(message)); |
219 window.dispatchEvent(event); | 221 window.dispatchEvent(event); |
220 } | 222 } |
221 | 223 |
222 String _getPortSyncEventData(CustomEvent event) => event.detail; | 224 String _getPortSyncEventData(CustomEvent event) => event.detail; |
OLD | NEW |