blob: 360d81ded799e7e2236f0a13d3eca6061e3cc1b5 [file] [log] [blame]
// Copyright (c) 2016, 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 models;
abstract class RetainingPath {
Iterable<RetainingPathItem> get elements;
String get gcRootType;
}
abstract class RetainingPathItem {
ObjectRef get source;
/// [optional]
String get parentField;
/// [optional]
int get parentListIndex;
/// [optional]
int get parentWordOffset;
}