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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 F(DebugPropertyIndexFromDetails, 1, 1) \ | 423 F(DebugPropertyIndexFromDetails, 1, 1) \ |
424 F(DebugNamedInterceptorPropertyValue, 2, 1) \ | 424 F(DebugNamedInterceptorPropertyValue, 2, 1) \ |
425 F(DebugIndexedInterceptorElementValue, 2, 1) \ | 425 F(DebugIndexedInterceptorElementValue, 2, 1) \ |
426 F(CheckExecutionState, 1, 1) \ | 426 F(CheckExecutionState, 1, 1) \ |
427 F(GetFrameCount, 1, 1) \ | 427 F(GetFrameCount, 1, 1) \ |
428 F(GetFrameDetails, 2, 1) \ | 428 F(GetFrameDetails, 2, 1) \ |
429 F(GetScopeCount, 2, 1) \ | 429 F(GetScopeCount, 2, 1) \ |
430 F(GetScopeDetails, 4, 1) \ | 430 F(GetScopeDetails, 4, 1) \ |
431 F(GetFunctionScopeCount, 1, 1) \ | 431 F(GetFunctionScopeCount, 1, 1) \ |
432 F(GetFunctionScopeDetails, 2, 1) \ | 432 F(GetFunctionScopeDetails, 2, 1) \ |
| 433 F(SetScopeVariableValue, 6, 1) \ |
433 F(DebugPrintScopes, 0, 1) \ | 434 F(DebugPrintScopes, 0, 1) \ |
434 F(GetThreadCount, 1, 1) \ | 435 F(GetThreadCount, 1, 1) \ |
435 F(GetThreadDetails, 2, 1) \ | 436 F(GetThreadDetails, 2, 1) \ |
436 F(SetDisableBreak, 1, 1) \ | 437 F(SetDisableBreak, 1, 1) \ |
437 F(GetBreakLocations, 1, 1) \ | 438 F(GetBreakLocations, 1, 1) \ |
438 F(SetFunctionBreakPoint, 3, 1) \ | 439 F(SetFunctionBreakPoint, 3, 1) \ |
439 F(SetScriptBreakPoint, 3, 1) \ | 440 F(SetScriptBreakPoint, 3, 1) \ |
440 F(ClearBreakPoint, 1, 1) \ | 441 F(ClearBreakPoint, 1, 1) \ |
441 F(ChangeBreakOnException, 2, 1) \ | 442 F(ChangeBreakOnException, 2, 1) \ |
442 F(IsBreakOnException, 1, 1) \ | 443 F(IsBreakOnException, 1, 1) \ |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 //--------------------------------------------------------------------------- | 716 //--------------------------------------------------------------------------- |
716 // Constants used by interface to runtime functions. | 717 // Constants used by interface to runtime functions. |
717 | 718 |
718 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 719 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
719 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 720 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
720 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 721 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
721 | 722 |
722 } } // namespace v8::internal | 723 } } // namespace v8::internal |
723 | 724 |
724 #endif // V8_RUNTIME_H_ | 725 #endif // V8_RUNTIME_H_ |
OLD | NEW |