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

Unified Diff: runtime/vm/object.cc

Issue 26436004: Implement constructor kinds in the VM mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: both_ Created 7 years, 2 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.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 4852fb8f201e6ae784a6316760f1825a7ed71ff6..3564c2c3c91d2a8d275fef5f64e2917360efe77d 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -4197,6 +4197,11 @@ void Function::set_is_recognized(bool value) const {
}
+void Function::set_is_redirecting(bool value) const {
+ set_kind_tag(RedirectingBit::update(value, raw_ptr()->kind_tag_));
+}
+
+
void Function::set_is_static(bool value) const {
set_kind_tag(StaticBit::update(value, raw_ptr()->kind_tag_));
}

Powered by Google App Engine
This is Rietveld 408576698