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

Side by Side Diff: runtime/observatory/lib/src/models/objects/isolate.dart

Issue 2583313002: Added thread.dart and zone.dart to the observatory sources to resolve build issues. (Closed)
Patch Set: Added ability to request zone memory information for all isolates through the VM service and added … Created 4 years 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) 2016, the Dart project authors. Please see the AUTHORS file 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 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 models; 5 part of models;
6 6
7 abstract class IsolateRef { 7 abstract class IsolateRef {
8 /// The id which is passed to the getIsolate RPC to reload this 8 /// The id which is passed to the getIsolate RPC to reload this
9 /// isolate. 9 /// isolate.
10 String get id; 10 String get id;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 /// 44 ///
45 /// Guaranteed to be initialized when the IsolateRunnable event fires. 45 /// Guaranteed to be initialized when the IsolateRunnable event fires.
46 Iterable<LibraryRef> get libraries; 46 Iterable<LibraryRef> get libraries;
47 47
48 /// A list of all breakpoints for this isolate. 48 /// A list of all breakpoints for this isolate.
49 //Iterable<Breakpoint> get breakpoints; 49 //Iterable<Breakpoint> get breakpoints;
50 50
51 /// [optional] The error that is causing this isolate to exit, if applicable. 51 /// [optional] The error that is causing this isolate to exit, if applicable.
52 Error get error; 52 Error get error;
53 53
54 /// The list of threads associated with this isolate.
55 Iterable<Thread> get threads;
56
54 /// The current pause on exception mode for this isolate. 57 /// The current pause on exception mode for this isolate.
55 //ExceptionPauseMode get exceptionPauseMode; 58 //ExceptionPauseMode get exceptionPauseMode;
56 59
57 /// [optional] The list of service extension RPCs that are registered for this 60 /// [optional] The list of service extension RPCs that are registered for this
58 /// isolate, if any. 61 /// isolate, if any.
59 Iterable<String> get extensionRPCs; 62 Iterable<String> get extensionRPCs;
60 63
61 Map get counters; 64 Map get counters;
62 HeapSpace get newSpace; 65 HeapSpace get newSpace;
63 HeapSpace get oldSpace; 66 HeapSpace get oldSpace;
64 67
65 IsolateStatus get status; 68 IsolateStatus get status;
66 69
67 /// [optional] 70 /// [optional]
68 FunctionRef get entry; 71 FunctionRef get entry;
69 } 72 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/models.dart ('k') | runtime/observatory/lib/src/models/objects/thread.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698