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

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

Issue 2170723002: Converted Observatory vm-nav-menu element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Adding _getBoolAttribute helper method 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
(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 VMRef {
8 String get name;
9 }
10
11 abstract class VM implements VMRef {
12 /// Word length on target architecture (e.g. 32, 64).
13 int get architectureBits;
14
15 /// The CPU we are generating code for.
16 String get targetCPU;
17
18 /// The CPU we are actually running on.
19 String get hostCPU;
20
21 /// The Dart VM version string.
22 String get version;
23
24 /// The process id for the VM.
25 int get pid;
26
27 /// The time that the VM started in milliseconds since the epoch.
28 ///
29 /// Suitable to pass to DateTime.fromMillisecondsSinceEpoch.
30 DateTime get startTime;
31
32 // A list of isolates running in the VM.
33 Iterable<IsolateRef> get isolates;
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698