| 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 F(GetScopeDetails, 4, 1) \ | 470 F(GetScopeDetails, 4, 1) \ |
| 471 F(GetFunctionScopeCount, 1, 1) \ | 471 F(GetFunctionScopeCount, 1, 1) \ |
| 472 F(GetFunctionScopeDetails, 2, 1) \ | 472 F(GetFunctionScopeDetails, 2, 1) \ |
| 473 F(SetScopeVariableValue, 6, 1) \ | 473 F(SetScopeVariableValue, 6, 1) \ |
| 474 F(DebugPrintScopes, 0, 1) \ | 474 F(DebugPrintScopes, 0, 1) \ |
| 475 F(GetThreadCount, 1, 1) \ | 475 F(GetThreadCount, 1, 1) \ |
| 476 F(GetThreadDetails, 2, 1) \ | 476 F(GetThreadDetails, 2, 1) \ |
| 477 F(SetDisableBreak, 1, 1) \ | 477 F(SetDisableBreak, 1, 1) \ |
| 478 F(GetBreakLocations, 1, 1) \ | 478 F(GetBreakLocations, 1, 1) \ |
| 479 F(SetFunctionBreakPoint, 3, 1) \ | 479 F(SetFunctionBreakPoint, 3, 1) \ |
| 480 F(SetScriptBreakPoint, 3, 1) \ | 480 F(SetScriptBreakPoint, 4, 1) \ |
| 481 F(ClearBreakPoint, 1, 1) \ | 481 F(ClearBreakPoint, 1, 1) \ |
| 482 F(ChangeBreakOnException, 2, 1) \ | 482 F(ChangeBreakOnException, 2, 1) \ |
| 483 F(IsBreakOnException, 1, 1) \ | 483 F(IsBreakOnException, 1, 1) \ |
| 484 F(PrepareStep, 3, 1) \ | 484 F(PrepareStep, 3, 1) \ |
| 485 F(ClearStepping, 0, 1) \ | 485 F(ClearStepping, 0, 1) \ |
| 486 F(DebugEvaluate, 6, 1) \ | 486 F(DebugEvaluate, 6, 1) \ |
| 487 F(DebugEvaluateGlobal, 4, 1) \ | 487 F(DebugEvaluateGlobal, 4, 1) \ |
| 488 F(DebugGetLoadedScripts, 0, 1) \ | 488 F(DebugGetLoadedScripts, 0, 1) \ |
| 489 F(DebugReferencedBy, 3, 1) \ | 489 F(DebugReferencedBy, 3, 1) \ |
| 490 F(DebugConstructedBy, 2, 1) \ | 490 F(DebugConstructedBy, 2, 1) \ |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 //--------------------------------------------------------------------------- | 782 //--------------------------------------------------------------------------- |
| 783 // Constants used by interface to runtime functions. | 783 // Constants used by interface to runtime functions. |
| 784 | 784 |
| 785 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 785 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 786 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 786 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 787 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 787 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 788 | 788 |
| 789 } } // namespace v8::internal | 789 } } // namespace v8::internal |
| 790 | 790 |
| 791 #endif // V8_RUNTIME_H_ | 791 #endif // V8_RUNTIME_H_ |
| OLD | NEW |