Index: src/messages.h |
diff --git a/src/messages.h b/src/messages.h |
index 54e1d7d324219e8e151fadf88d2e461adb01dc94..6c6210529bca1c602fad9dbe3ef3ec0640649158 100644 |
--- a/src/messages.h |
+++ b/src/messages.h |
@@ -163,6 +163,7 @@ class WasmStackFrame : public StackFrameBase { |
void FromFrameArray(Isolate* isolate, Handle<FrameArray> array, int frame_ix); |
friend class FrameArrayIterator; |
+ friend class AsmJsWasmStackFrame; |
}; |
class AsmJsWasmStackFrame : public WasmStackFrame { |
@@ -180,6 +181,12 @@ class AsmJsWasmStackFrame : public WasmStackFrame { |
int GetColumnNumber() override; |
MaybeHandle<String> ToString() override; |
+ |
+ private: |
+ friend class FrameArrayIterator; |
+ void FromFrameArray(Isolate* isolate, Handle<FrameArray> array, int frame_ix); |
+ |
+ bool is_at_number_conversion_; |
}; |
class FrameArrayIterator { |