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

Unified Diff: runtime/vm/flags.cc

Issue 290713004: First step towards asynchronous loading of sources (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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/vm/flags.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flags.cc
===================================================================
--- runtime/vm/flags.cc (revision 36574)
+++ runtime/vm/flags.cc (working copy)
@@ -98,6 +98,15 @@
}
+bool Flags::IsSet(const char* name) {
+ Flag* flag = Lookup(name);
+ return (flag != NULL) &&
+ (flag->type_ == Flag::kBoolean) &&
+ (flag->bool_ptr_ != NULL) &&
+ (*flag->bool_ptr_ == true);
+}
+
+
bool Flags::Register_bool(bool* addr,
const char* name,
bool default_value,
« no previous file with comments | « runtime/vm/flags.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698