OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 /* Harmony proxies */ \ | 289 /* Harmony proxies */ \ |
290 F(CreateJSProxy, 2, 1) \ | 290 F(CreateJSProxy, 2, 1) \ |
291 F(CreateJSFunctionProxy, 4, 1) \ | 291 F(CreateJSFunctionProxy, 4, 1) \ |
292 F(IsJSProxy, 1, 1) \ | 292 F(IsJSProxy, 1, 1) \ |
293 F(IsJSFunctionProxy, 1, 1) \ | 293 F(IsJSFunctionProxy, 1, 1) \ |
294 F(GetHandler, 1, 1) \ | 294 F(GetHandler, 1, 1) \ |
295 F(GetCallTrap, 1, 1) \ | 295 F(GetCallTrap, 1, 1) \ |
296 F(GetConstructTrap, 1, 1) \ | 296 F(GetConstructTrap, 1, 1) \ |
297 F(Fix, 1, 1) \ | 297 F(Fix, 1, 1) \ |
298 \ | 298 \ |
| 299 /* Harmony sets */ \ |
| 300 F(SetInitialize, 1, 1) \ |
| 301 F(SetAccess, 3, 1) \ |
| 302 \ |
| 303 /* Harmony maps */ \ |
| 304 F(MapInitialize, 1, 1) \ |
| 305 F(MapGet, 2, 1) \ |
| 306 F(MapSet, 3, 1) \ |
| 307 \ |
299 /* Harmony weakmaps */ \ | 308 /* Harmony weakmaps */ \ |
300 F(WeakMapInitialize, 1, 1) \ | 309 F(WeakMapInitialize, 1, 1) \ |
301 F(WeakMapGet, 2, 1) \ | 310 F(WeakMapGet, 2, 1) \ |
302 F(WeakMapSet, 3, 1) \ | 311 F(WeakMapSet, 3, 1) \ |
303 \ | 312 \ |
304 /* Statements */ \ | 313 /* Statements */ \ |
305 F(NewClosure, 3, 1) \ | 314 F(NewClosure, 3, 1) \ |
306 F(NewObject, 1, 1) \ | 315 F(NewObject, 1, 1) \ |
307 F(NewObjectFromBound, 1, 1) \ | 316 F(NewObjectFromBound, 1, 1) \ |
308 F(FinalizeInstanceSize, 1, 1) \ | 317 F(FinalizeInstanceSize, 1, 1) \ |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 | 686 |
678 enum kDeclareGlobalsFlags { | 687 enum kDeclareGlobalsFlags { |
679 kDeclareGlobalsEvalFlag = 1 << 0, | 688 kDeclareGlobalsEvalFlag = 1 << 0, |
680 kDeclareGlobalsStrictModeFlag = 1 << 1, | 689 kDeclareGlobalsStrictModeFlag = 1 << 1, |
681 kDeclareGlobalsNativeFlag = 1 << 2 | 690 kDeclareGlobalsNativeFlag = 1 << 2 |
682 }; | 691 }; |
683 | 692 |
684 } } // namespace v8::internal | 693 } } // namespace v8::internal |
685 | 694 |
686 #endif // V8_RUNTIME_H_ | 695 #endif // V8_RUNTIME_H_ |
OLD | NEW |