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

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

Issue 2987703002: Simplify and fix implicit closure check, speed up Closure_equals, v2 (Closed)
Patch Set: Created 3 years, 5 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/lib/function.cc ('k') | runtime/observatory/lib/src/models/objects/function.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ce0a0e3317118c5c2efa3dcd14cda80671f96f3f..a829ded5c81a1f24bb77a1fa8f14ed27d03efc6e 100644
--- a/runtime/observatory/lib/src/elements/function_view.dart
+++ b/runtime/observatory/lib/src/elements/function_view.dart
@@ -399,6 +399,8 @@ class FunctionViewElement extends HtmlElement implements Renderable {
return 'regular';
case M.FunctionKind.closure:
return 'closure';
+ case M.FunctionKind.implicitClosure:
+ return 'implicit closure';
case M.FunctionKind.getter:
return 'getter';
case M.FunctionKind.setter:
« no previous file with comments | « runtime/lib/function.cc ('k') | runtime/observatory/lib/src/models/objects/function.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698