| Index: src/compiler/ast-graph-builder.cc
|
| diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
|
| index e7725799233cbb63136c4bc73473c440d7463f95..bab7eeda7e96337605adce8cac6f546d47f93d8e 100644
|
| --- a/src/compiler/ast-graph-builder.cc
|
| +++ b/src/compiler/ast-graph-builder.cc
|
| @@ -2867,6 +2867,12 @@ void AstGraphBuilder::VisitSpread(Spread* expr) {
|
| }
|
|
|
|
|
| +void AstGraphBuilder::VisitEmptyParentheses(EmptyParentheses* expr) {
|
| + // Handled entirely by the parser itself.
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| void AstGraphBuilder::VisitThisFunction(ThisFunction* expr) {
|
| Node* value = GetFunctionClosure();
|
| ast_context()->ProduceValue(value);
|
|
|