| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index c411b306b1241f5f7803c39ebcabf7b625ec8018..9d39e5ddeadc824f7f6ecda999778062d0061d3a 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -687,9 +687,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
|
|
|
|
|