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

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

Issue 2989493002: Simplify and fix implicit closure check, speed up Closure_equals (Closed)
Patch Set: Avoid overloaded NewClosureFunction 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
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:

Powered by Google App Engine
This is Rietveld 408576698