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 library _isolate_helper; | 5 library _isolate_helper; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:collection' show Queue, HashMap; | 8 import 'dart:collection' show Queue, HashMap; |
9 import 'dart:isolate'; | 9 import 'dart:isolate'; |
10 import 'dart:_js_helper' show | 10 import 'dart:_js_helper' show |
(...skipping 1796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1807 } | 1807 } |
1808 | 1808 |
1809 bool operator==(Object other) { | 1809 bool operator==(Object other) { |
1810 if (identical(other, this)) return true; | 1810 if (identical(other, this)) return true; |
1811 if (other is CapabilityImpl) { | 1811 if (other is CapabilityImpl) { |
1812 return identical(_id, other._id); | 1812 return identical(_id, other._id); |
1813 } | 1813 } |
1814 return false; | 1814 return false; |
1815 } | 1815 } |
1816 } | 1816 } |
OLD | NEW |