Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: runtime/observatory/lib/src/service/object.dart

Issue 2168463004: Converted Observatory isolate-nav-menu element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed long line Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 M.IsolateRef {
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 2993 matching lines...) Expand 10 before | Expand all | Expand 10 after
4124 var v = list[i]; 4124 var v = list[i];
4125 if ((v is ObservableMap) && _isServiceMap(v)) { 4125 if ((v is ObservableMap) && _isServiceMap(v)) {
4126 list[i] = owner.getFromMap(v); 4126 list[i] = owner.getFromMap(v);
4127 } else if (v is ObservableList) { 4127 } else if (v is ObservableList) {
4128 _upgradeObservableList(v, owner); 4128 _upgradeObservableList(v, owner);
4129 } else if (v is ObservableMap) { 4129 } else if (v is ObservableMap) {
4130 _upgradeObservableMap(v, owner); 4130 _upgradeObservableMap(v, owner);
4131 } 4131 }
4132 } 4132 }
4133 } 4133 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/models/objects/object.dart ('k') | runtime/observatory/observatory_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698