Index: src/compiler/ast-graph-builder.cc |
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc |
index b648495fdfd5d13cabefadec159ff16e442e07d2..ac2ba9dc3b8cdd573259c1c461443d60d48df7b2 100644 |
--- a/src/compiler/ast-graph-builder.cc |
+++ b/src/compiler/ast-graph-builder.cc |
@@ -2590,7 +2590,15 @@ void AstGraphBuilder::VisitThisFunction(ThisFunction* expr) { |
} |
-void AstGraphBuilder::VisitSuperReference(SuperReference* expr) { |
+void AstGraphBuilder::VisitSuperPropertyReference( |
+ SuperPropertyReference* expr) { |
+ // TODO(turbofan): Implement super here. |
+ SetStackOverflow(); |
+ ast_context()->ProduceValue(jsgraph()->UndefinedConstant()); |
+} |
+ |
+ |
+void AstGraphBuilder::VisitSuperCallReference(SuperCallReference* expr) { |
// TODO(turbofan): Implement super here. |
SetStackOverflow(); |
ast_context()->ProduceValue(jsgraph()->UndefinedConstant()); |