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

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: space 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
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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 F(DebugGetProperty, 2, 1) \ 460 F(DebugGetProperty, 2, 1) \
461 F(DebugPropertyTypeFromDetails, 1, 1) \ 461 F(DebugPropertyTypeFromDetails, 1, 1) \
462 F(DebugPropertyAttributesFromDetails, 1, 1) \ 462 F(DebugPropertyAttributesFromDetails, 1, 1) \
463 F(DebugPropertyIndexFromDetails, 1, 1) \ 463 F(DebugPropertyIndexFromDetails, 1, 1) \
464 F(DebugNamedInterceptorPropertyValue, 2, 1) \ 464 F(DebugNamedInterceptorPropertyValue, 2, 1) \
465 F(DebugIndexedInterceptorElementValue, 2, 1) \ 465 F(DebugIndexedInterceptorElementValue, 2, 1) \
466 F(CheckExecutionState, 1, 1) \ 466 F(CheckExecutionState, 1, 1) \
467 F(GetFrameCount, 1, 1) \ 467 F(GetFrameCount, 1, 1) \
468 F(GetFrameDetails, 2, 1) \ 468 F(GetFrameDetails, 2, 1) \
469 F(GetScopeCount, 2, 1) \ 469 F(GetScopeCount, 2, 1) \
470 F(GetStepInPositions, 2, 1) \
470 F(GetScopeDetails, 4, 1) \ 471 F(GetScopeDetails, 4, 1) \
471 F(GetFunctionScopeCount, 1, 1) \ 472 F(GetFunctionScopeCount, 1, 1) \
472 F(GetFunctionScopeDetails, 2, 1) \ 473 F(GetFunctionScopeDetails, 2, 1) \
473 F(SetScopeVariableValue, 6, 1) \ 474 F(SetScopeVariableValue, 6, 1) \
474 F(DebugPrintScopes, 0, 1) \ 475 F(DebugPrintScopes, 0, 1) \
475 F(GetThreadCount, 1, 1) \ 476 F(GetThreadCount, 1, 1) \
476 F(GetThreadDetails, 2, 1) \ 477 F(GetThreadDetails, 2, 1) \
477 F(SetDisableBreak, 1, 1) \ 478 F(SetDisableBreak, 1, 1) \
478 F(GetBreakLocations, 1, 1) \ 479 F(GetBreakLocations, 1, 1) \
479 F(SetFunctionBreakPoint, 3, 1) \ 480 F(SetFunctionBreakPoint, 3, 1) \
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 //--------------------------------------------------------------------------- 783 //---------------------------------------------------------------------------
783 // Constants used by interface to runtime functions. 784 // Constants used by interface to runtime functions.
784 785
785 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 786 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
786 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 787 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
787 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 788 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
788 789
789 } } // namespace v8::internal 790 } } // namespace v8::internal
790 791
791 #endif // V8_RUNTIME_H_ 792 #endif // V8_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698