Index: src/deoptimizer.h |
diff --git a/src/deoptimizer.h b/src/deoptimizer.h |
index b6e4667a20da9a6075e0cba5af6b0f42a47afaaa..e5afd1ae67f5695f94b4601bf2c5c4135fe4be1b 100644 |
--- a/src/deoptimizer.h |
+++ b/src/deoptimizer.h |
@@ -166,7 +166,9 @@ class Deoptimizer : public Malloced { |
int output_count() const { return output_count_; } |
- Code::Kind compiled_code_kind() const { return compiled_code_->kind(); } |
+ Handle<JSFunction> function() const { return Handle<JSFunction>(function_); } |
+ Handle<Code> compiled_code() const { return Handle<Code>(compiled_code_); } |
+ BailoutType bailout_type() const { return bailout_type_; } |
// Number of created JS frames. Not all created frames are necessarily JS. |
int jsframe_count() const { return jsframe_count_; } |