| Index: runtime/observatory/lib/src/models/objects/field.dart
|
| diff --git a/runtime/observatory/lib/src/models/objects/field.dart b/runtime/observatory/lib/src/models/objects/field.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..152c920866c71a2d602c06a93382ae46d15ef464
|
| --- /dev/null
|
| +++ b/runtime/observatory/lib/src/models/objects/field.dart
|
| @@ -0,0 +1,29 @@
|
| +// 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 FieldRef extends ObjectRef {
|
| + /// The name of this field.
|
| + String get name;
|
| +
|
| + /// The owner of this field, which can be either a Library or a
|
| + /// Class.
|
| + ObjectRef get dartOwner;
|
| +
|
| + /// The declared type of this field.
|
| + ///
|
| + /// The value will always be of one of the kinds:
|
| + /// Type, TypeRef, TypeParameter, BoundedType.
|
| + InstanceRef get declaredType;
|
| +
|
| + /// Is this field const?
|
| + bool get isConst;
|
| +
|
| + /// Is this field final?
|
| + bool get isFinal;
|
| +
|
| + /// Is this field static?
|
| + bool get isStatic;
|
| +}
|
|
|