blob: c5423b98c3028b3661d3a982a16172b9d16206cf [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of observatory;
/// State for a running isolate.
class Isolate extends Observable {
@observable int id;
@observable String name;
@observable final Map<String, ScriptSource> scripts =
toObservable(new Map<String, ScriptSource>());
Isolate(this.id, this.name);
String toString() => '$id $name';
}