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