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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 \ | 250 \ |
251 F(ClassOf, 1, 1) \ | 251 F(ClassOf, 1, 1) \ |
252 F(SetCode, 2, 1) \ | 252 F(SetCode, 2, 1) \ |
253 F(SetExpectedNumberOfProperties, 2, 1) \ | 253 F(SetExpectedNumberOfProperties, 2, 1) \ |
254 \ | 254 \ |
255 F(CreateApiFunction, 1, 1) \ | 255 F(CreateApiFunction, 1, 1) \ |
256 F(IsTemplate, 1, 1) \ | 256 F(IsTemplate, 1, 1) \ |
257 F(GetTemplateField, 2, 1) \ | 257 F(GetTemplateField, 2, 1) \ |
258 F(DisableAccessChecks, 1, 1) \ | 258 F(DisableAccessChecks, 1, 1) \ |
259 F(EnableAccessChecks, 1, 1) \ | 259 F(EnableAccessChecks, 1, 1) \ |
| 260 F(SetAccessorProperty, 6, 1) \ |
260 \ | 261 \ |
261 /* Dates */ \ | 262 /* Dates */ \ |
262 F(DateCurrentTime, 0, 1) \ | 263 F(DateCurrentTime, 0, 1) \ |
263 F(DateParseString, 2, 1) \ | 264 F(DateParseString, 2, 1) \ |
264 F(DateLocalTimezone, 1, 1) \ | 265 F(DateLocalTimezone, 1, 1) \ |
265 F(DateToUTC, 1, 1) \ | 266 F(DateToUTC, 1, 1) \ |
266 F(DateMakeDay, 2, 1) \ | 267 F(DateMakeDay, 2, 1) \ |
267 F(DateSetValue, 3, 1) \ | 268 F(DateSetValue, 3, 1) \ |
268 \ | 269 \ |
269 /* Numbers */ \ | 270 /* Numbers */ \ |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 //--------------------------------------------------------------------------- | 846 //--------------------------------------------------------------------------- |
846 // Constants used by interface to runtime functions. | 847 // Constants used by interface to runtime functions. |
847 | 848 |
848 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 849 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
849 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 850 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
850 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 851 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
851 | 852 |
852 } } // namespace v8::internal | 853 } } // namespace v8::internal |
853 | 854 |
854 #endif // V8_RUNTIME_H_ | 855 #endif // V8_RUNTIME_H_ |
OLD | NEW |