| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 F(DebugPropertyTypeFromDetails, 1, 1) \ | 397 F(DebugPropertyTypeFromDetails, 1, 1) \ |
| 398 F(DebugPropertyAttributesFromDetails, 1, 1) \ | 398 F(DebugPropertyAttributesFromDetails, 1, 1) \ |
| 399 F(DebugPropertyIndexFromDetails, 1, 1) \ | 399 F(DebugPropertyIndexFromDetails, 1, 1) \ |
| 400 F(DebugNamedInterceptorPropertyValue, 2, 1) \ | 400 F(DebugNamedInterceptorPropertyValue, 2, 1) \ |
| 401 F(DebugIndexedInterceptorElementValue, 2, 1) \ | 401 F(DebugIndexedInterceptorElementValue, 2, 1) \ |
| 402 F(CheckExecutionState, 1, 1) \ | 402 F(CheckExecutionState, 1, 1) \ |
| 403 F(GetFrameCount, 1, 1) \ | 403 F(GetFrameCount, 1, 1) \ |
| 404 F(GetFrameDetails, 2, 1) \ | 404 F(GetFrameDetails, 2, 1) \ |
| 405 F(GetScopeCount, 2, 1) \ | 405 F(GetScopeCount, 2, 1) \ |
| 406 F(GetScopeDetails, 4, 1) \ | 406 F(GetScopeDetails, 4, 1) \ |
| 407 F(GetFunctionScopeCount, 1, 1) \ |
| 408 F(GetFunctionScopeDetails, 2, 1) \ |
| 407 F(DebugPrintScopes, 0, 1) \ | 409 F(DebugPrintScopes, 0, 1) \ |
| 408 F(GetThreadCount, 1, 1) \ | 410 F(GetThreadCount, 1, 1) \ |
| 409 F(GetThreadDetails, 2, 1) \ | 411 F(GetThreadDetails, 2, 1) \ |
| 410 F(SetDisableBreak, 1, 1) \ | 412 F(SetDisableBreak, 1, 1) \ |
| 411 F(GetBreakLocations, 1, 1) \ | 413 F(GetBreakLocations, 1, 1) \ |
| 412 F(SetFunctionBreakPoint, 3, 1) \ | 414 F(SetFunctionBreakPoint, 3, 1) \ |
| 413 F(SetScriptBreakPoint, 3, 1) \ | 415 F(SetScriptBreakPoint, 3, 1) \ |
| 414 F(ClearBreakPoint, 1, 1) \ | 416 F(ClearBreakPoint, 1, 1) \ |
| 415 F(ChangeBreakOnException, 2, 1) \ | 417 F(ChangeBreakOnException, 2, 1) \ |
| 416 F(IsBreakOnException, 1, 1) \ | 418 F(IsBreakOnException, 1, 1) \ |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 //--------------------------------------------------------------------------- | 703 //--------------------------------------------------------------------------- |
| 702 // Constants used by interface to runtime functions. | 704 // Constants used by interface to runtime functions. |
| 703 | 705 |
| 704 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 706 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 705 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 707 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 706 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 708 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 707 | 709 |
| 708 } } // namespace v8::internal | 710 } } // namespace v8::internal |
| 709 | 711 |
| 710 #endif // V8_RUNTIME_H_ | 712 #endif // V8_RUNTIME_H_ |
| OLD | NEW |