Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index f6066e7123b404d367e3ebcb38068931861faca3..0812472d0ecc3042e9f05b0848ff6dcd802f90f0 100644 |
--- a/src/ast.h |
+++ b/src/ast.h |
@@ -1826,8 +1826,6 @@ class UnaryOperation: public Expression { |
public: |
DECLARE_NODE_TYPE(UnaryOperation) |
- virtual bool ResultOverwriteAllowed(); |
- |
Token::Value op() const { return op_; } |
Expression* expression() const { return expression_; } |
virtual int position() const { return pos_; } |
@@ -1835,8 +1833,6 @@ class UnaryOperation: public Expression { |
BailoutId MaterializeTrueId() { return materialize_true_id_; } |
BailoutId MaterializeFalseId() { return materialize_false_id_; } |
- TypeFeedbackId UnaryOperationFeedbackId() const { return reuse(id()); } |
- |
virtual void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle); |
protected: |