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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 F(ThrowGeneratorStateError, 1, 1) \ | 309 F(ThrowGeneratorStateError, 1, 1) \ |
310 \ | 310 \ |
311 /* ES5 */ \ | 311 /* ES5 */ \ |
312 F(ObjectFreeze, 1, 1) \ | 312 F(ObjectFreeze, 1, 1) \ |
313 \ | 313 \ |
314 /* Harmony modules */ \ | 314 /* Harmony modules */ \ |
315 F(IsJSModule, 1, 1) \ | 315 F(IsJSModule, 1, 1) \ |
316 \ | 316 \ |
317 /* Harmony symbols */ \ | 317 /* Harmony symbols */ \ |
318 F(CreateSymbol, 1, 1) \ | 318 F(CreateSymbol, 1, 1) \ |
| 319 F(CreatePrivate, 1, 1) \ |
319 F(SymbolName, 1, 1) \ | 320 F(SymbolName, 1, 1) \ |
| 321 F(IsPrivate, 1, 1) \ |
320 \ | 322 \ |
321 /* Harmony proxies */ \ | 323 /* Harmony proxies */ \ |
322 F(CreateJSProxy, 2, 1) \ | 324 F(CreateJSProxy, 2, 1) \ |
323 F(CreateJSFunctionProxy, 4, 1) \ | 325 F(CreateJSFunctionProxy, 4, 1) \ |
324 F(IsJSProxy, 1, 1) \ | 326 F(IsJSProxy, 1, 1) \ |
325 F(IsJSFunctionProxy, 1, 1) \ | 327 F(IsJSFunctionProxy, 1, 1) \ |
326 F(GetHandler, 1, 1) \ | 328 F(GetHandler, 1, 1) \ |
327 F(GetCallTrap, 1, 1) \ | 329 F(GetCallTrap, 1, 1) \ |
328 F(GetConstructTrap, 1, 1) \ | 330 F(GetConstructTrap, 1, 1) \ |
329 F(Fix, 1, 1) \ | 331 F(Fix, 1, 1) \ |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
851 //--------------------------------------------------------------------------- | 853 //--------------------------------------------------------------------------- |
852 // Constants used by interface to runtime functions. | 854 // Constants used by interface to runtime functions. |
853 | 855 |
854 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 856 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
855 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 857 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
856 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 858 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
857 | 859 |
858 } } // namespace v8::internal | 860 } } // namespace v8::internal |
859 | 861 |
860 #endif // V8_RUNTIME_H_ | 862 #endif // V8_RUNTIME_H_ |
OLD | NEW |