| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 \ | 251 \ |
| 252 F(ClassOf, 1, 1) \ | 252 F(ClassOf, 1, 1) \ |
| 253 F(SetCode, 2, 1) \ | 253 F(SetCode, 2, 1) \ |
| 254 F(SetExpectedNumberOfProperties, 2, 1) \ | 254 F(SetExpectedNumberOfProperties, 2, 1) \ |
| 255 \ | 255 \ |
| 256 F(CreateApiFunction, 1, 1) \ | 256 F(CreateApiFunction, 1, 1) \ |
| 257 F(IsTemplate, 1, 1) \ | 257 F(IsTemplate, 1, 1) \ |
| 258 F(GetTemplateField, 2, 1) \ | 258 F(GetTemplateField, 2, 1) \ |
| 259 F(DisableAccessChecks, 1, 1) \ | 259 F(DisableAccessChecks, 1, 1) \ |
| 260 F(EnableAccessChecks, 1, 1) \ | 260 F(EnableAccessChecks, 1, 1) \ |
| 261 F(SetAccessorProperty, 6, 1) \ |
| 261 \ | 262 \ |
| 262 /* Dates */ \ | 263 /* Dates */ \ |
| 263 F(DateCurrentTime, 0, 1) \ | 264 F(DateCurrentTime, 0, 1) \ |
| 264 F(DateParseString, 2, 1) \ | 265 F(DateParseString, 2, 1) \ |
| 265 F(DateLocalTimezone, 1, 1) \ | 266 F(DateLocalTimezone, 1, 1) \ |
| 266 F(DateToUTC, 1, 1) \ | 267 F(DateToUTC, 1, 1) \ |
| 267 F(DateMakeDay, 2, 1) \ | 268 F(DateMakeDay, 2, 1) \ |
| 268 F(DateSetValue, 3, 1) \ | 269 F(DateSetValue, 3, 1) \ |
| 269 \ | 270 \ |
| 270 /* Numbers */ \ | 271 /* Numbers */ \ |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 //--------------------------------------------------------------------------- | 847 //--------------------------------------------------------------------------- |
| 847 // Constants used by interface to runtime functions. | 848 // Constants used by interface to runtime functions. |
| 848 | 849 |
| 849 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 850 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 850 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 851 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 851 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 852 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 852 | 853 |
| 853 } } // namespace v8::internal | 854 } } // namespace v8::internal |
| 854 | 855 |
| 855 #endif // V8_RUNTIME_H_ | 856 #endif // V8_RUNTIME_H_ |
| OLD | NEW |