Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Side by Side Diff: src/runtime.h

Issue 15960016: Provide list of step-in source positions in JS Debug API (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/mirror-debugger.js ('k') | src/runtime.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 F(DebugGetProperty, 2, 1) \ 461 F(DebugGetProperty, 2, 1) \
462 F(DebugPropertyTypeFromDetails, 1, 1) \ 462 F(DebugPropertyTypeFromDetails, 1, 1) \
463 F(DebugPropertyAttributesFromDetails, 1, 1) \ 463 F(DebugPropertyAttributesFromDetails, 1, 1) \
464 F(DebugPropertyIndexFromDetails, 1, 1) \ 464 F(DebugPropertyIndexFromDetails, 1, 1) \
465 F(DebugNamedInterceptorPropertyValue, 2, 1) \ 465 F(DebugNamedInterceptorPropertyValue, 2, 1) \
466 F(DebugIndexedInterceptorElementValue, 2, 1) \ 466 F(DebugIndexedInterceptorElementValue, 2, 1) \
467 F(CheckExecutionState, 1, 1) \ 467 F(CheckExecutionState, 1, 1) \
468 F(GetFrameCount, 1, 1) \ 468 F(GetFrameCount, 1, 1) \
469 F(GetFrameDetails, 2, 1) \ 469 F(GetFrameDetails, 2, 1) \
470 F(GetScopeCount, 2, 1) \ 470 F(GetScopeCount, 2, 1) \
471 F(GetStepInPositions, 2, 1) \
471 F(GetScopeDetails, 4, 1) \ 472 F(GetScopeDetails, 4, 1) \
472 F(GetFunctionScopeCount, 1, 1) \ 473 F(GetFunctionScopeCount, 1, 1) \
473 F(GetFunctionScopeDetails, 2, 1) \ 474 F(GetFunctionScopeDetails, 2, 1) \
474 F(SetScopeVariableValue, 6, 1) \ 475 F(SetScopeVariableValue, 6, 1) \
475 F(DebugPrintScopes, 0, 1) \ 476 F(DebugPrintScopes, 0, 1) \
476 F(GetThreadCount, 1, 1) \ 477 F(GetThreadCount, 1, 1) \
477 F(GetThreadDetails, 2, 1) \ 478 F(GetThreadDetails, 2, 1) \
478 F(SetDisableBreak, 1, 1) \ 479 F(SetDisableBreak, 1, 1) \
479 F(GetBreakLocations, 1, 1) \ 480 F(GetBreakLocations, 1, 1) \
480 F(SetFunctionBreakPoint, 3, 1) \ 481 F(SetFunctionBreakPoint, 3, 1) \
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 //--------------------------------------------------------------------------- 788 //---------------------------------------------------------------------------
788 // Constants used by interface to runtime functions. 789 // Constants used by interface to runtime functions.
789 790
790 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 791 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
791 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 792 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
792 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 793 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
793 794
794 } } // namespace v8::internal 795 } } // namespace v8::internal
795 796
796 #endif // V8_RUNTIME_H_ 797 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/mirror-debugger.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698