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

Unified Diff: runtime/vm/stack_frame.h

Issue 227433004: Add runtime and native entry tags (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: runtime/vm/stack_frame.h
diff --git a/runtime/vm/stack_frame.h b/runtime/vm/stack_frame.h
index 2727eeef4a7cfc9389a87b0e327b9cdc83595e9b..c1e5f231cbf051412e494a47627dd0cf248de4e8 100644
--- a/runtime/vm/stack_frame.h
+++ b/runtime/vm/stack_frame.h
@@ -241,7 +241,9 @@ class DartFrameIterator : public ValueObject {
public:
DartFrameIterator() : frames_(StackFrameIterator::kDontValidateFrames) { }
explicit DartFrameIterator(uword last_fp)
- : frames_(last_fp, StackFrameIterator::kDontValidateFrames) {}
+ : frames_(last_fp, StackFrameIterator::kDontValidateFrames) { }
+ explicit DartFrameIterator(uword fp, uword sp, uword pc)
siva 2014/04/10 17:58:22 explicit not needed as it has more than one parame
Cutch 2014/04/10 20:17:32 Done.
+ : frames_(fp, sp, pc, StackFrameIterator::kDontValidateFrames) { }
// Get next dart frame.
StackFrame* NextFrame() {
StackFrame* frame = frames_.NextFrame();
« no previous file with comments | « runtime/vm/runtime_entry.h ('k') | runtime/vm/stub_code_ia32.cc » ('j') | runtime/vm/tags.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698