blob: d4338dce0f75f14a3f6fe1277663bf8fe5306048 [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 dprof.Isolate profiler;
@observable String id;
@observable String name;
@observable final Map<String, ScriptSource> scripts =
toObservable(new Map<String, ScriptSource>());
Isolate(this.id, this.name);
String toString() => '$id $name';
}