| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 part of models; |
| 6 |
| 7 abstract class PersistentHandles { |
| 8 Iterable<PersistentHandle> get elements; |
| 9 Iterable<WeakPersistentHandle> get weakElements; |
| 10 } |
| 11 |
| 12 abstract class PersistentHandle { |
| 13 ObjectRef get object; |
| 14 } |
| 15 |
| 16 abstract class WeakPersistentHandle implements PersistentHandle { |
| 17 int get externalSize; |
| 18 String get peer; |
| 19 String get callbackSymbolName; |
| 20 String get callbackAddress; |
| 21 } |
| OLD | NEW |