| Index: src/compiler/ast-graph-builder.cc
|
| diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
|
| index 96809fc2dff053b92817c2ffd0bdf7ad66a819d5..92c3ab6517041288daf2f9b80a0e3e30b8304eff 100644
|
| --- a/src/compiler/ast-graph-builder.cc
|
| +++ b/src/compiler/ast-graph-builder.cc
|
| @@ -2295,6 +2295,11 @@ void AstGraphBuilder::VisitCompareOperation(CompareOperation* expr) {
|
| }
|
|
|
|
|
| +void AstGraphBuilder::VisitSpreadOperation(SpreadOperation* expr) {
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| void AstGraphBuilder::VisitThisFunction(ThisFunction* expr) {
|
| Node* value = GetFunctionClosure();
|
| ast_context()->ProduceValue(value);
|
|
|