Index: src/frames-inl.h |
diff --git a/src/frames-inl.h b/src/frames-inl.h |
index 4b8a4beb8247651056d2dce3a5b4014734eda89f..94c745cfc28aa4ef6719db4e4c69120b540ff51e 100644 |
--- a/src/frames-inl.h |
+++ b/src/frames-inl.h |
@@ -262,6 +262,15 @@ inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp( |
if (!done()) Advance(); |
} |
+ |
+template<typename Iterator> |
+inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp( |
+ Isolate* isolate, ThreadLocalTop* top) |
+ : iterator_(isolate, top) { |
+ if (!done()) Advance(); |
+} |
+ |
+ |
template<typename Iterator> |
inline JavaScriptFrame* JavaScriptFrameIteratorTemp<Iterator>::frame() const { |
// TODO(1233797): The frame hierarchy needs to change. It's |