| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 service; | 5 part of service; |
| 6 | 6 |
| 7 // Some value smaller than the object ring, so requesting a large array | 7 // Some value smaller than the object ring, so requesting a large array |
| 8 // doesn't result in an expired ref because the elements lapped it in the | 8 // doesn't result in an expired ref because the elements lapped it in the |
| 9 // object ring. | 9 // object ring. |
| 10 const int kDefaultFieldLimit = 100; | 10 const int kDefaultFieldLimit = 100; |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 print("${obj.runtimeType} should be a HeapObject"); | 1110 print("${obj.runtimeType} should be a HeapObject"); |
| 1111 } | 1111 } |
| 1112 return obj; | 1112 return obj; |
| 1113 })); | 1113 })); |
| 1114 } | 1114 } |
| 1115 return result; | 1115 return result; |
| 1116 } | 1116 } |
| 1117 } | 1117 } |
| 1118 | 1118 |
| 1119 /// State for a running isolate. | 1119 /// State for a running isolate. |
| 1120 class Isolate extends ServiceObjectOwner { | 1120 class Isolate extends ServiceObjectOwner implements I.Isolate { |
| 1121 static const kLoggingStream = '_Logging'; | 1121 static const kLoggingStream = '_Logging'; |
| 1122 static const kExtensionStream = 'Extension'; | 1122 static const kExtensionStream = 'Extension'; |
| 1123 | 1123 |
| 1124 @reflectable VM get vm => owner; | 1124 @reflectable VM get vm => owner; |
| 1125 @reflectable Isolate get isolate => this; | 1125 @reflectable Isolate get isolate => this; |
| 1126 @observable int number; | 1126 @observable int number; |
| 1127 @observable int originNumber; | 1127 @observable int originNumber; |
| 1128 @observable DateTime startTime; | 1128 @observable DateTime startTime; |
| 1129 @observable Duration get upTime { | 1129 @observable Duration get upTime { |
| 1130 if (startTime == null) { | 1130 if (startTime == null) { |
| (...skipping 2984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4115 var v = list[i]; | 4115 var v = list[i]; |
| 4116 if ((v is ObservableMap) && _isServiceMap(v)) { | 4116 if ((v is ObservableMap) && _isServiceMap(v)) { |
| 4117 list[i] = owner.getFromMap(v); | 4117 list[i] = owner.getFromMap(v); |
| 4118 } else if (v is ObservableList) { | 4118 } else if (v is ObservableList) { |
| 4119 _upgradeObservableList(v, owner); | 4119 _upgradeObservableList(v, owner); |
| 4120 } else if (v is ObservableMap) { | 4120 } else if (v is ObservableMap) { |
| 4121 _upgradeObservableMap(v, owner); | 4121 _upgradeObservableMap(v, owner); |
| 4122 } | 4122 } |
| 4123 } | 4123 } |
| 4124 } | 4124 } |
| OLD | NEW |