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

Unified Diff: runtime/observatory/lib/src/elements/function_view.dart

Issue 3008923002: Improve the performance of closure-converted code. (Closed)
Patch Set: Additional bug fixes. Created 3 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/elements/function_view.dart
diff --git a/runtime/observatory/lib/src/elements/function_view.dart b/runtime/observatory/lib/src/elements/function_view.dart
index a829ded5c81a1f24bb77a1fa8f14ed27d03efc6e..b11bc3a0900028972ec4825a50c87aeb7edcb909 100644
--- a/runtime/observatory/lib/src/elements/function_view.dart
+++ b/runtime/observatory/lib/src/elements/function_view.dart
@@ -401,6 +401,8 @@ class FunctionViewElement extends HtmlElement implements Renderable {
return 'closure';
case M.FunctionKind.implicitClosure:
return 'implicit closure';
+ case M.FunctionKind.convertedClosure:
+ return 'converted closure';
case M.FunctionKind.getter:
return 'getter';
case M.FunctionKind.setter:
« no previous file with comments | « pkg/kernel/testcases/closures/syncstar.dart.expect ('k') | runtime/observatory/lib/src/models/objects/function.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698