| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index ef172d3266b7364ff37417b7c067e0e6c4ee7c2c..05f27ccf1e7aecd2820e10d524155ea8c42e4d5c 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -688,9 +688,9 @@ class Runtime : public AllStatic {
|
| //---------------------------------------------------------------------------
|
| // Constants used by interface to runtime functions.
|
|
|
| -class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
|
| -class DeclareGlobalsStrictModeFlag: public BitField<StrictModeFlag, 1, 1> {};
|
| -class DeclareGlobalsNativeFlag: public BitField<bool, 2, 1> {};
|
| +class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
|
| +class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
|
| +class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
|
|
|
| } } // namespace v8::internal
|
|
|
|
|