Index: src/ast/ast.h |
diff --git a/src/ast/ast.h b/src/ast/ast.h |
index e25bd0767cd48abc3b9c66baa95a3ab071ffe324..b4218c59882f158f6ba4b7aeca84d16d433ce3b2 100644 |
--- a/src/ast/ast.h |
+++ b/src/ast/ast.h |
@@ -1176,10 +1176,6 @@ class SloppyBlockFunctionStatement final : public Statement { |
public: |
Statement* statement() const { return statement_; } |
void set_statement(Statement* statement) { statement_ = statement; } |
- VariableProxy* from() const { return from_; } |
- void set_from(VariableProxy* from) { from_ = from; } |
- VariableProxy* to() const { return to_; } |
- void set_to(VariableProxy* to) { to_ = to; } |
Scope* scope() const { return scope_; } |
SloppyBlockFunctionStatement* next() { return next_; } |
void set_next(SloppyBlockFunctionStatement* next) { next_ = next; } |
@@ -1190,14 +1186,10 @@ class SloppyBlockFunctionStatement final : public Statement { |
SloppyBlockFunctionStatement(Statement* statement, Scope* scope) |
: Statement(kNoSourcePosition, kSloppyBlockFunctionStatement), |
statement_(statement), |
- from_(nullptr), |
- to_(nullptr), |
scope_(scope), |
next_(nullptr) {} |
Statement* statement_; |
- VariableProxy* from_; |
- VariableProxy* to_; |
Scope* const scope_; |
SloppyBlockFunctionStatement* next_; |
}; |