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

Unified Diff: runtime/observatory/lib/src/service/object.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
« no previous file with comments | « runtime/observatory/lib/src/models/objects/function.dart ('k') | runtime/vm/kernel_binary_flowgraph.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/service/object.dart
diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
index 7b1133bbfc57cdb6032dfa92c37f68badf624753..5f2024d34e2c235ff82fa34768964d324360aefc 100644
--- a/runtime/observatory/lib/src/service/object.dart
+++ b/runtime/observatory/lib/src/service/object.dart
@@ -3020,6 +3020,8 @@ M.FunctionKind stringToFunctionKind(String value) {
return M.FunctionKind.closure;
case 'ImplicitClosureFunction':
return M.FunctionKind.implicitClosure;
+ case 'ConvertedClosureFunction':
+ return M.FunctionKind.convertedClosure;
case 'GetterFunction':
return M.FunctionKind.getter;
case 'SetterFunction':
« no previous file with comments | « runtime/observatory/lib/src/models/objects/function.dart ('k') | runtime/vm/kernel_binary_flowgraph.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698