Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Unified Diff: runtime/observatory/lib/src/models/objects/field.dart

Issue 2244433003: Converted Observatory refs elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merged with master Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+}
« no previous file with comments | « runtime/observatory/lib/src/models/objects/context.dart ('k') | runtime/observatory/lib/src/models/objects/guarded.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698