| Index: runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory/isolate.dart
|
| diff --git a/runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory/isolate.dart b/runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory/isolate.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..58751a384a30c0335e10efc1cdff44b0815ec9b3
|
| --- /dev/null
|
| +++ b/runtime/bin/vmservice/client/observatory/packages/observatory/src/observatory/isolate.dart
|
| @@ -0,0 +1,11 @@
|
| +part of observatory;
|
| +
|
| +/// State for a running isolate.
|
| +class Isolate {
|
| + final int id;
|
| + final String name;
|
| +
|
| + Isolate(this.id, this.name);
|
| +
|
| + String toString() => '$id $name';
|
| +}
|
|
|