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

Side by Side Diff: runtime/observatory/lib/src/models/objects/function.dart

Issue 2291823002: Converted Observatory function-view element (Closed)
Patch Set: Updated observatory_sources.gypi Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of models; 5 part of models;
6 6
7 enum FunctionKind { 7 enum FunctionKind {
8 regular, 8 regular,
9 closure, 9 closure,
10 getter, 10 getter,
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 /// The kind of the function. 75 /// The kind of the function.
76 FunctionKind get kind; 76 FunctionKind get kind;
77 } 77 }
78 78
79 abstract class Function extends Object implements FunctionRef { 79 abstract class Function extends Object implements FunctionRef {
80 /// The location of this function in the source code. [optional] 80 /// The location of this function in the source code. [optional]
81 SourceLocation get location; 81 SourceLocation get location;
82 82
83 /// The compiled code associated with this function. [optional] 83 /// The compiled code associated with this function. [optional]
84 CodeRef get code; 84 CodeRef get code;
85 /// [optional]
86 CodeRef get unoptimizedCode;
87 /// [optional]
88 FieldRef get field;
89 int get usageCounter;
90 InstanceRef get icDataArray;
91 int get deoptimizations;
92 bool get isOptimizable;
93 bool get isInlinable;
94 bool get hasIntrinsic;
95 bool get isRecognized;
96 bool get isNative;
97 String get vmName;
85 } 98 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/service_view.html ('k') | runtime/observatory/lib/src/models/repositories/function.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698