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

Unified Diff: src/objects.h

Issue 2806373005: [v8] v8::StackTrace::AsArray returns correct array (Closed)
Patch Set: removed redundant semicolon Created 3 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 side-by-side diff with in-line comments
Download patch
« src/api.cc ('K') | « src/isolate.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 5f2a1446bc1a3b68c3744877f9ed0e0097740df2..2bf79baf6928f1dfc3e7acea4b9b8ec184b2aa6b 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -10111,6 +10111,7 @@ class StackFrameInfo : public Struct {
DECL_BOOLEAN_ACCESSORS(is_constructor)
DECL_BOOLEAN_ACCESSORS(is_wasm)
DECL_INT_ACCESSORS(flag)
+ DECL_INT_ACCESSORS(options)
DECLARE_CAST(StackFrameInfo)
@@ -10127,7 +10128,8 @@ class StackFrameInfo : public Struct {
static const int kFunctionNameIndex =
kScriptNameOrSourceUrlIndex + kPointerSize;
static const int kFlagIndex = kFunctionNameIndex + kPointerSize;
- static const int kSize = kFlagIndex + kPointerSize;
+ static const int kOptionsIndex = kFlagIndex + kPointerSize;
+ static const int kSize = kOptionsIndex + kPointerSize;
private:
// Bit position in the flag, from least significant bit position.
« src/api.cc ('K') | « src/isolate.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698