| 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 0b4ef60355a2ed83475e778601c1383ba3c630eb..2352b71784de92468be82abf3756fa3f3ac6fd77 100644
|
| --- a/runtime/observatory/lib/src/models/objects/function.dart
|
| +++ b/runtime/observatory/lib/src/models/objects/function.dart
|
| @@ -43,9 +43,7 @@ bool hasDartCode(FunctionKind kind) =>
|
| isDartFunction(kind) || isStubFunction(kind);
|
|
|
| String getFunctionFullName(FunctionRef function) {
|
| - var content = <String>[
|
| - function.name
|
| - ];
|
| + var content = <String>[function.name];
|
| ObjectRef owner = function.dartOwner;
|
| while (owner is FunctionRef) {
|
| FunctionRef function = (owner as FunctionRef);
|
| @@ -82,8 +80,10 @@ 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;
|
|
|