blob: b41befdf38621a9bc06e726b1c3fc8621f660fe8 [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.
library isolate_summary_element;
import 'observatory_element.dart';
import 'package:observatory/service.dart';
import 'package:polymer/polymer.dart';
@CustomTag('isolate-summary')
class IsolateSummaryElement extends ObservatoryElement {
IsolateSummaryElement.created() : super.created();
@published Isolate isolate;
}
@CustomTag('isolate-run-state')
class IsolateRunStateElement extends ObservatoryElement {
IsolateRunStateElement.created() : super.created();
@published Isolate isolate;
}
@CustomTag('isolate-location')
class IsolateLocationElement extends ObservatoryElement {
IsolateLocationElement.created() : super.created();
@published Isolate isolate;
}