Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/objects/frame-array.h')
-rw-r--r--deps/v8/src/objects/frame-array.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/deps/v8/src/objects/frame-array.h b/deps/v8/src/objects/frame-array.h
index b82a7a60be6..9ad4fb96a9f 100644
--- a/deps/v8/src/objects/frame-array.h
+++ b/deps/v8/src/objects/frame-array.h
@@ -38,8 +38,6 @@ class FrameArray : public FixedArray {
#undef DECL_FRAME_ARRAY_ACCESSORS
inline bool IsWasmFrame(int frame_ix) const;
- inline bool IsWasmCompiledFrame(int frame_ix) const;
- inline bool IsWasmInterpretedFrame(int frame_ix) const;
inline bool IsAsmJsWasmFrame(int frame_ix) const;
inline bool IsAnyWasmFrame(int frame_ix) const;
inline int FrameCount() const;
@@ -48,14 +46,13 @@ class FrameArray : public FixedArray {
// Flags.
enum Flag {
- kIsWasmCompiledFrame = 1 << 0,
- kIsWasmInterpretedFrame = 1 << 1,
- kIsAsmJsWasmFrame = 1 << 2,
- kIsStrict = 1 << 3,
- kIsConstructor = 1 << 4,
- kAsmJsAtNumberConversion = 1 << 5,
- kIsAsync = 1 << 6,
- kIsPromiseAll = 1 << 7
+ kIsWasmFrame = 1 << 0,
+ kIsAsmJsWasmFrame = 1 << 1,
+ kIsStrict = 1 << 2,
+ kIsConstructor = 1 << 3,
+ kAsmJsAtNumberConversion = 1 << 4,
+ kIsAsync = 1 << 5,
+ kIsPromiseAll = 1 << 6
};
static Handle<FrameArray> AppendJSFrame(Handle<FrameArray> in,