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

Unified Diff: runtime/vm/object.h

Issue 10824201: Verify at method exit that stack size is the same as at entry, except for methods with finally clau… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 10341)
+++ runtime/vm/object.h (working copy)
@@ -1503,6 +1503,9 @@
bool is_optimizable() const { return raw()->IsOptimizable(); }
void set_is_optimizable(bool value) const;
+ bool has_finally() const { return raw()->HasFinally(); }
+ void set_has_finally(bool value) const;
+
bool is_native() const { return raw()->IsNative(); }
void set_is_native(bool value) const;

Powered by Google App Engine
This is Rietveld 408576698