Index: src/compiler.h |
diff --git a/src/compiler.h b/src/compiler.h |
index 9d907686ba5ab5e15eab3a77d3986c5f57f81719..109940056376f97559dc2e9ec4e6932633b0efce 100644 |
--- a/src/compiler.h |
+++ b/src/compiler.h |
@@ -207,11 +207,6 @@ class CompilationInfo { |
bool has_bytecode_array() const { return !bytecode_array_.is_null(); } |
Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } |
- Handle<AbstractCode> abstract_code() const { |
- return has_bytecode_array() ? Handle<AbstractCode>::cast(bytecode_array()) |
- : Handle<AbstractCode>::cast(code()); |
- } |
- |
bool is_tracking_positions() const { return track_positions_; } |
bool is_calling() const { |