| Index: runtime/observatory/lib/src/models/objects/function.dart
|
| diff --git a/runtime/observatory/lib/src/models/objects/function.dart b/runtime/observatory/lib/src/models/objects/function.dart
|
| index 933954ff52502a5c97bf03f1eaf3ed23bf5c67fe..f73f0db8cc7af012da5beb5d7538ad977f6405b2 100644
|
| --- a/runtime/observatory/lib/src/models/objects/function.dart
|
| +++ b/runtime/observatory/lib/src/models/objects/function.dart
|
| @@ -82,4 +82,17 @@ abstract class Function extends Object implements FunctionRef {
|
|
|
| /// The compiled code associated with this function. [optional]
|
| CodeRef get code;
|
| + /// [optional]
|
| + CodeRef get unoptimizedCode;
|
| + /// [optional]
|
| + FieldRef get field;
|
| + int get usageCounter;
|
| + InstanceRef get icDataArray;
|
| + int get deoptimizations;
|
| + bool get isOptimizable;
|
| + bool get isInlinable;
|
| + bool get hasIntrinsic;
|
| + bool get isRecognized;
|
| + bool get isNative;
|
| + String get vmName;
|
| }
|
|
|