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

Unified Diff: src/objects.h

Issue 2404253002: [wasm] Provide better stack traces for asm.js code (Closed)
Patch Set: Pass encoded bytes directly instead of embedding them in the module Created 4 years, 2 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index f77ac4bc8ea3664643a20395b970e03ab8a6ece3..94e6a227c9391502cac38233e83865e15c176217 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -2979,8 +2979,9 @@ class FrameArray : public FixedArray {
// Flags.
static const int kIsWasmFrame = 1 << 0;
- static const int kIsStrict = 1 << 1;
- static const int kForceConstructor = 1 << 2;
+ static const int kIsAsmWasmFrame = 1 << 1;
+ static const int kIsStrict = 1 << 2;
+ static const int kForceConstructor = 1 << 3;
static Handle<FrameArray> AppendJSFrame(Handle<FrameArray> in,
Handle<Object> receiver,

Powered by Google App Engine
This is Rietveld 408576698