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

Side by Side Diff: src/runtime/runtime.h

Issue 919653002: [V8] Use Function.name in Error.stack (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 F(DebugGetLoadedScripts, 0, 1) \ 560 F(DebugGetLoadedScripts, 0, 1) \
561 F(DebugReferencedBy, 3, 1) \ 561 F(DebugReferencedBy, 3, 1) \
562 F(DebugConstructedBy, 2, 1) \ 562 F(DebugConstructedBy, 2, 1) \
563 F(DebugGetPrototype, 1, 1) \ 563 F(DebugGetPrototype, 1, 1) \
564 F(DebugSetScriptSource, 2, 1) \ 564 F(DebugSetScriptSource, 2, 1) \
565 F(DebugCallbackSupportsStepping, 1, 1) \ 565 F(DebugCallbackSupportsStepping, 1, 1) \
566 F(SystemBreak, 0, 1) \ 566 F(SystemBreak, 0, 1) \
567 F(DebugDisassembleFunction, 1, 1) \ 567 F(DebugDisassembleFunction, 1, 1) \
568 F(DebugDisassembleConstructor, 1, 1) \ 568 F(DebugDisassembleConstructor, 1, 1) \
569 F(FunctionGetInferredName, 1, 1) \ 569 F(FunctionGetInferredName, 1, 1) \
570 F(FunctionGetDebugName, 1, 1) \
570 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ 571 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \
571 F(LiveEditGatherCompileInfo, 2, 1) \ 572 F(LiveEditGatherCompileInfo, 2, 1) \
572 F(LiveEditReplaceScript, 3, 1) \ 573 F(LiveEditReplaceScript, 3, 1) \
573 F(LiveEditReplaceFunctionCode, 2, 1) \ 574 F(LiveEditReplaceFunctionCode, 2, 1) \
574 F(LiveEditFunctionSourceUpdated, 1, 1) \ 575 F(LiveEditFunctionSourceUpdated, 1, 1) \
575 F(LiveEditFunctionSetScript, 2, 1) \ 576 F(LiveEditFunctionSetScript, 2, 1) \
576 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ 577 F(LiveEditReplaceRefToNestedFunction, 3, 1) \
577 F(LiveEditPatchFunctionPositions, 2, 1) \ 578 F(LiveEditPatchFunctionPositions, 2, 1) \
578 F(LiveEditCheckAndDropActivations, 2, 1) \ 579 F(LiveEditCheckAndDropActivations, 2, 1) \
579 F(LiveEditCompareStrings, 2, 1) \ 580 F(LiveEditCompareStrings, 2, 1) \
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 903
903 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 904 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
904 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 905 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
905 STATIC_ASSERT(LANGUAGE_END == 3); 906 STATIC_ASSERT(LANGUAGE_END == 3);
906 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 907 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
907 908
908 } // namespace internal 909 } // namespace internal
909 } // namespace v8 910 } // namespace v8
910 911
911 #endif // V8_RUNTIME_RUNTIME_H_ 912 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698