| Index: runtime/vm/flags.h
|
| diff --git a/runtime/vm/flags.h b/runtime/vm/flags.h
|
| index 23a9ed1c6130e035c264cad7ff14483b41be4244..d95e9090d641bbf841f9a9d3bd574bf3eb102946 100644
|
| --- a/runtime/vm/flags.h
|
| +++ b/runtime/vm/flags.h
|
| @@ -55,9 +55,13 @@ class Flags {
|
|
|
| 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.
|
|
|