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

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

Issue 2345023003: Use dartfmt on Observatory code (Closed)
Patch Set: merge 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 side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698