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

Side by Side Diff: src/runtime.h

Issue 10073032: Issue 2081: Expose function's (closure's) inner context in debugger. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: spelling Created 8 years, 8 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
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