| Index: runtime/vm/flags.h
|
| diff --git a/runtime/vm/flags.h b/runtime/vm/flags.h
|
| index 23a9ed1c6130e035c264cad7ff14483b41be4244..00339d19b6426689c518521e5d50ec557faa1b95 100644
|
| --- a/runtime/vm/flags.h
|
| +++ b/runtime/vm/flags.h
|
| @@ -51,13 +51,17 @@ class Flags {
|
| const char* default_value,
|
| const char* comment);
|
|
|
| - static void ProcessCommandLineFlags(int argc, const char** argv);
|
| + static bool ProcessCommandLineFlags(int argc, const char** argv);
|
|
|
| static Flag* Lookup(const char* name);
|
|
|
| + static bool Initialized() { return initialized_; }
|
| +
|
| private:
|
| static Flag* flags_;
|
|
|
| + static bool initialized_;
|
| +
|
| static void Parse(const char* option);
|
|
|
| // Testing needs direct access to private methods.
|
|
|