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

Side by Side Diff: src/runtime.h

Issue 181063008: Introduce Runtime_GetAllScopesDetails to get all scopes at once for a frame. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: addressed Created 6 years, 9 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
« 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 F(DebugPropertyAttributesFromDetails, 1, 1) \ 498 F(DebugPropertyAttributesFromDetails, 1, 1) \
499 F(DebugPropertyIndexFromDetails, 1, 1) \ 499 F(DebugPropertyIndexFromDetails, 1, 1) \
500 F(DebugNamedInterceptorPropertyValue, 2, 1) \ 500 F(DebugNamedInterceptorPropertyValue, 2, 1) \
501 F(DebugIndexedInterceptorElementValue, 2, 1) \ 501 F(DebugIndexedInterceptorElementValue, 2, 1) \
502 F(CheckExecutionState, 1, 1) \ 502 F(CheckExecutionState, 1, 1) \
503 F(GetFrameCount, 1, 1) \ 503 F(GetFrameCount, 1, 1) \
504 F(GetFrameDetails, 2, 1) \ 504 F(GetFrameDetails, 2, 1) \
505 F(GetScopeCount, 2, 1) \ 505 F(GetScopeCount, 2, 1) \
506 F(GetStepInPositions, 2, 1) \ 506 F(GetStepInPositions, 2, 1) \
507 F(GetScopeDetails, 4, 1) \ 507 F(GetScopeDetails, 4, 1) \
508 F(GetAllScopesDetails, 3, 1) \
508 F(GetFunctionScopeCount, 1, 1) \ 509 F(GetFunctionScopeCount, 1, 1) \
509 F(GetFunctionScopeDetails, 2, 1) \ 510 F(GetFunctionScopeDetails, 2, 1) \
510 F(SetScopeVariableValue, 6, 1) \ 511 F(SetScopeVariableValue, 6, 1) \
511 F(DebugPrintScopes, 0, 1) \ 512 F(DebugPrintScopes, 0, 1) \
512 F(GetThreadCount, 1, 1) \ 513 F(GetThreadCount, 1, 1) \
513 F(GetThreadDetails, 2, 1) \ 514 F(GetThreadDetails, 2, 1) \
514 F(SetDisableBreak, 1, 1) \ 515 F(SetDisableBreak, 1, 1) \
515 F(GetBreakLocations, 2, 1) \ 516 F(GetBreakLocations, 2, 1) \
516 F(SetFunctionBreakPoint, 3, 1) \ 517 F(SetFunctionBreakPoint, 3, 1) \
517 F(SetScriptBreakPoint, 4, 1) \ 518 F(SetScriptBreakPoint, 4, 1) \
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; 874 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {};
874 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; 875 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {};
875 876
876 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 877 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
877 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 878 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
878 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 879 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
879 880
880 } } // namespace v8::internal 881 } } // namespace v8::internal
881 882
882 #endif // V8_RUNTIME_H_ 883 #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